Skip to content

Commit 81cd141

Browse files
chore(changesets): bump package version (#84)
chore: bump package version Co-authored-by: Luke Morales <[email protected]>
1 parent e68ca7d commit 81cd141

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.changeset/nasty-trains-glow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @lukemorales/query-key-factory
22

3+
## 1.3.3
4+
5+
### Patch Changes
6+
7+
- [`9b5401c`](https://github.com/lukemorales/query-key-factory/commit/9b5401cdd8ff6b3a85074285ab7ed68a6ab3a252) Thanks [@lukemorales](https://github.com/lukemorales)! - Improve `mergeQueryKeys` type inference and improve type-safety for dynamic query keys
8+
39
## 1.3.2
410

511
### Patch Changes
@@ -61,7 +67,7 @@
6167
New in `@lukemorales/query-key-factory` is support for nested keys and generation of query options, adopting the query options overload as first class citizen, in preparation for [React Query v5 roadmap](https://github.com/TanStack/query/discussions/4252).
6268

6369
```ts
64-
const people = createQueryKeys('people', {
70+
const people = createQueryKeys("people", {
6571
person: (id: number) => ({
6672
queryKey: [id],
6773
queryFn: () => api.getPerson({ params: { id } }),
@@ -88,7 +94,7 @@
8894
Each entry outputs an object that can be used in the query options overload in React Query:
8995

9096
```tsx
91-
console.log(people.person('person_01'));
97+
console.log(people.person("person_01"));
9298

9399
// => output:
94100
// {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lukemorales/query-key-factory",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"author": "Luke Morales <[email protected]>",
55
"description": "A library for creating standardized query keys, useful for cache management in @tanstack/query",
66
"license": "MIT",

0 commit comments

Comments
 (0)