Skip to content

Commit 291afec

Browse files
authored
Merge branch 'main' into fix/combine-bug
2 parents b0b1028 + f616474 commit 291afec

114 files changed

Lines changed: 1508 additions & 311 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/fair-peaches-deny.md

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

.changeset/silver-peas-end.md

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

.changeset/warm-drinks-itch.md

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

.size-limit.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
{
33
"name": "react full",
44
"path": "packages/react-query/build/modern/index.js",
5-
"limit": "12.10 kB",
5+
"limit": "13.00 kB",
66
"ignore": ["react", "react-dom"]
77
},
88
{
99
"name": "react minimal",
1010
"path": "packages/react-query/build/modern/index.js",
11-
"limit": "9.11 kB",
11+
"limit": "9.99 kB",
1212
"import": "{ useQuery, QueryClient, QueryClientProvider }",
1313
"ignore": ["react", "react-dom"]
1414
}

docs/framework/vue/guides/infinite-queries.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ref: docs/framework/react/guides/infinite-queries.md
1010
<script setup>
1111
import { useInfiniteQuery } from '@tanstack/vue-query'
1212
13-
const fetchProjects = async ({ pageParam = 0 }) => {
13+
const fetchProjects = async ({ pageParam }) => {
1414
const res = await fetch('/api/projects?cursor=' + pageParam)
1515
return res.json()
1616
}
@@ -27,6 +27,7 @@ const {
2727
} = useInfiniteQuery({
2828
queryKey: ['projects'],
2929
queryFn: fetchProjects,
30+
initialPageParam: 0,
3031
getNextPageParam: (lastPage, pages) => lastPage.nextCursor,
3132
})
3233
</script>

examples/angular/auto-refetching/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@angular/compiler": "^20.0.0",
1414
"@angular/core": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
16-
"@tanstack/angular-query-experimental": "^5.90.17",
16+
"@tanstack/angular-query-experimental": "^5.90.20",
1717
"rxjs": "^7.8.2",
1818
"tslib": "^2.8.1",
1919
"zone.js": "0.15.0"

examples/angular/basic-persister/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"@angular/compiler": "^20.0.0",
1414
"@angular/core": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
16-
"@tanstack/angular-query-experimental": "^5.90.17",
17-
"@tanstack/angular-query-persist-client": "^5.62.20",
18-
"@tanstack/query-async-storage-persister": "^5.90.15",
16+
"@tanstack/angular-query-experimental": "^5.90.20",
17+
"@tanstack/angular-query-persist-client": "^5.62.23",
18+
"@tanstack/query-async-storage-persister": "^5.90.18",
1919
"rxjs": "^7.8.2",
2020
"tslib": "^2.8.1",
2121
"zone.js": "0.15.0"

examples/angular/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@angular/compiler": "^20.0.0",
1414
"@angular/core": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
16-
"@tanstack/angular-query-experimental": "^5.90.17",
16+
"@tanstack/angular-query-experimental": "^5.90.20",
1717
"rxjs": "^7.8.2",
1818
"tslib": "^2.8.1",
1919
"zone.js": "0.15.0"

examples/angular/devtools-panel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@angular/core": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
1616
"@angular/router": "^20.0.0",
17-
"@tanstack/angular-query-experimental": "^5.90.17",
17+
"@tanstack/angular-query-experimental": "^5.90.20",
1818
"rxjs": "^7.8.2",
1919
"tslib": "^2.8.1",
2020
"zone.js": "0.15.0"

examples/angular/infinite-query-with-max-pages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@angular/compiler": "^20.0.0",
1414
"@angular/core": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
16-
"@tanstack/angular-query-experimental": "^5.90.17",
16+
"@tanstack/angular-query-experimental": "^5.90.20",
1717
"rxjs": "^7.8.2",
1818
"tslib": "^2.8.1",
1919
"zone.js": "0.15.0"

0 commit comments

Comments
 (0)