Skip to content

Commit 9797e93

Browse files
authored
Merge branch 'main' into issues/8384
2 parents 9096707 + 8f72f59 commit 9797e93

File tree

91 files changed

+1191
-1339
lines changed

Some content is hidden

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

91 files changed

+1191
-1339
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
5151
TAG: ${{ inputs.tag }}
5252
- name: Upload coverage to Codecov
53-
uses: codecov/codecov-action@v4.5.0
53+
uses: codecov/codecov-action@v4.6.0
5454
with:
5555
directory: packages
5656
env:

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
if: ${{ always() }}
3939
run: npx nx-cloud stop-all-agents
4040
- name: Upload coverage to Codecov
41-
uses: codecov/codecov-action@v4.5.0
41+
uses: codecov/codecov-action@v4.6.0
4242
with:
4343
directory: packages
4444
env:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.4.0
1+
22.12.0

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you have been assigned to fix an issue or develop a new feature, please follo
2323
pnpm install
2424
```
2525

26-
- We use [pnpm](https://pnpm.io/) v8 for package management (run in case of pnpm-related issues).
26+
- We use [pnpm](https://pnpm.io/) v9 for package management (run in case of pnpm-related issues).
2727

2828
```bash
2929
corepack enable && corepack prepare

docs/framework/react/reference/infiniteQueryOptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ infiniteQueryOptions({
1212

1313
**Options**
1414

15-
You can generally pass everything to `queryOptions` that you can also pass to [`useInfiniteQuery`](../useInfiniteQuery). Some options will have no effect when then forwarded to a function like `queryClient.prefetchInfiniteQuery`, but TypeScript will still be fine with those excess properties.
15+
You can generally pass everything to `infiniteQueryOptions` that you can also pass to [`useInfiniteQuery`](../useInfiniteQuery). Some options will have no effect when then forwarded to a function like `queryClient.prefetchInfiniteQuery`, but TypeScript will still be fine with those excess properties.
1616

1717
- `queryKey: QueryKey`
1818
- **Required**

examples/angular/auto-refetching/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@angular/core": "^19.1.0-next.0",
1515
"@angular/platform-browser": "^19.1.0-next.0",
1616
"@angular/platform-browser-dynamic": "^19.1.0-next.0",
17-
"@tanstack/angular-query-experimental": "^5.62.8",
17+
"@tanstack/angular-query-experimental": "^5.62.9",
1818
"rxjs": "^7.8.1",
1919
"tslib": "^2.6.3",
2020
"zone.js": "^0.15.0"

examples/angular/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@angular/core": "^19.1.0-next.0",
1515
"@angular/platform-browser": "^19.1.0-next.0",
1616
"@angular/platform-browser-dynamic": "^19.1.0-next.0",
17-
"@tanstack/angular-query-experimental": "^5.62.8",
17+
"@tanstack/angular-query-experimental": "^5.62.9",
1818
"rxjs": "^7.8.1",
1919
"tslib": "^2.6.3",
2020
"zone.js": "^0.15.0"

examples/angular/devtools-panel/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"@angular/platform-browser": "^19.1.0-next.0",
1616
"@angular/platform-browser-dynamic": "^19.1.0-next.0",
1717
"@angular/router": "^19.1.0-next.0",
18-
"@tanstack/angular-query-devtools-experimental": "^5.62.8",
19-
"@tanstack/angular-query-experimental": "^5.62.8",
18+
"@tanstack/angular-query-devtools-experimental": "^5.62.9",
19+
"@tanstack/angular-query-experimental": "^5.62.9",
2020
"rxjs": "^7.8.1",
2121
"tslib": "^2.6.3",
2222
"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
@@ -14,7 +14,7 @@
1414
"@angular/core": "^19.1.0-next.0",
1515
"@angular/platform-browser": "^19.1.0-next.0",
1616
"@angular/platform-browser-dynamic": "^19.1.0-next.0",
17-
"@tanstack/angular-query-experimental": "^5.62.8",
17+
"@tanstack/angular-query-experimental": "^5.62.9",
1818
"rxjs": "^7.8.1",
1919
"tslib": "^2.6.3",
2020
"zone.js": "^0.15.0"

examples/angular/pagination/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@angular/core": "^19.1.0-next.0",
1515
"@angular/platform-browser": "^19.1.0-next.0",
1616
"@angular/platform-browser-dynamic": "^19.1.0-next.0",
17-
"@tanstack/angular-query-experimental": "^5.62.8",
17+
"@tanstack/angular-query-experimental": "^5.62.9",
1818
"rxjs": "^7.8.1",
1919
"tslib": "^2.6.3",
2020
"zone.js": "^0.15.0"

0 commit comments

Comments
 (0)