Skip to content

Commit fc61768

Browse files
committed
changelog v0.10.0
1 parent 11af28d commit fc61768

File tree

2 files changed

+55
-1
lines changed

2 files changed

+55
-1
lines changed

CHANGELOG.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,103 +2,156 @@
22

33
## [Unreleased]
44

5+
## [0.10.0] - 2025-07-23
6+
7+
### Changed
8+
9+
- feat: atomWithQueries for tanstack/query's useQueries
10+
- feat: add QueryClientProvider utils for react
11+
512
## [0.9.2] - 2025-07-10
13+
614
### Changed
15+
716
- upgrade @tankstack/query-core to 5.81.5
817

918
## [0.9.1] - 2025-07-09
19+
1020
### Changed
21+
1122
- upgrade @tankstack/query-core to 5.81.2
1223

1324
## [0.9.0] - 2024-09-29
25+
1426
### Added
27+
1528
- add: change atom signature to return a setter function to force re-evaluate an atom. This is to help the atom able to reevaluate when it hits an error boundary by throwing a rejected promise.
1629

1730
## [0.8.8] - 2024-09-15
31+
1832
### Changed
33+
1934
- fix: use query.reset on error instead of client.resetQueries.
2035

2136
## [0.8.7] - 2024-08-18
37+
2238
### Changed
39+
2340
- add: batch calls to improve perf
2441
- fix: return appropriate cleanup functions
2542
- fix: cleanup - remove unused code
2643

2744
## [0.8.6] - 2024-08-05
45+
2846
### Changed
47+
2948
- fix: remove wonka as a peer dependency
3049

3150
## [0.8.5] - 2024-02-04
51+
3252
### Changed
53+
3354
- fix: include types.ts in build
3455

3556
## [0.8.4] - 2024-01-31
57+
3658
### Changed
59+
3760
- fix: fix generics
3861

3962
## [0.8.3] - 2024-01-29
63+
4064
### Changed
65+
4166
- fix: update types
4267

4368
## [0.8.2] - 2024-01-15
69+
4470
### Changed
71+
4572
- fix: update jotai peer dependency to v2
4673

4774
## [0.8.1] - 2023-12-23
75+
4876
### Changed
77+
4978
- fix: add default staletime for suspense atoms
5079
- fix: suspense example
5180

5281
## [0.8.0] - 2023-12-09
82+
5383
### Added
84+
5485
- breaking: update atom api to resemble tanstack/query api
5586
- add: atomWithSuspenseQuery, atomWithSuspenseInfiniteQuery, atomWithMutationState
5687

5788
## [0.7.2] - 2023-09-08
89+
5890
### Changed
91+
5992
- fix: loading mutation does not call refresh on unmount #38
6093

6194
## [0.7.1] - 2023-05-25
95+
6296
### Changed
97+
6398
- Fix result of statusAtom sometimes not updated #35
6499

65100
## [0.7.0] - 2023-04-03
101+
66102
### Added
103+
67104
- feat: atomsWithQueryAsync, plus example #30
68105

69106
## [0.6.0] - 2023-03-03
107+
70108
### Added
109+
71110
- feat: mark internal atoms as private
72111

73112
## [0.5.0] - 2023-01-31
113+
74114
### Added
115+
75116
- Migrate to Jotai v2 API #18
76117

77118
## [0.4.0] - 2022-10-21
119+
78120
### Changed
121+
79122
- fix: status should change #10
80123
- breaking: simplify api names #11
81124

82125
## [0.3.0] - 2022-10-11
126+
83127
### Changed
128+
84129
- make mutation atom type correct #7
85130
- update jotai and fix types #8
86131

87132
## [0.2.1] - 2022-10-04
133+
88134
### Changed
135+
89136
- fix setOptions not to delay #6
90137

91138
## [0.2.0] - 2022-09-27
139+
92140
### Changed
141+
93142
- for dataAtom, re-create observer when options change #5
94143

95144
## [0.1.0] - 2022-09-24
145+
96146
### Added
147+
97148
- implement refetch #1
98149
- feat: observer cache #2
99150
- feat: infinite query #3
100151
- feat: mutation api #4
101152

102153
## [0.0.1] - 2022-09-20
154+
103155
### Added
156+
104157
- Initial experimental release

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"name": "jotai-tanstack-query",
33
"description": "👻🌺",
4-
"version": "0.9.2",
4+
"version": "0.10.0",
55
"author": "Daishi Kato",
66
"contributors": [
7+
"Thaddeus Jiang",
78
"Mohammad Bagher Abiat",
89
"Kali Charan Reddy Jonna"
910
],

0 commit comments

Comments
 (0)