Skip to content

Commit 1088d15

Browse files
committed
Merge remote-tracking branch 'upstream/main' into feature/angular-query-devtools-sub-path-imports
# Conflicts: # examples/angular/devtools-panel/package.json # packages/angular-query-devtools-experimental/package.json
2 parents fbc3eb0 + 33d008b commit 1088d15

File tree

81 files changed

+180
-181
lines changed

Some content is hidden

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

81 files changed

+180
-181
lines changed

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- name: Fix formatting
2525
run: pnpm prettier:write
2626
- name: Apply fixes
27-
uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef
27+
uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
2828
with:
2929
commit-message: 'ci: apply automated fixes'

docs/framework/react/guides/mutations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ queryClient.resumePausedMutations()
343343

344344
### Persisting Offline mutations
345345

346-
If you persist offline mutations with the [persistQueryClient plugin](../plugins/persistQueryClient.md), mutations cannot be resumed when the page is reloaded unless you provide a default mutation function.
346+
If you persist offline mutations with the [persistQueryClient plugin](../../plugins/persistQueryClient.md), mutations cannot be resumed when the page is reloaded unless you provide a default mutation function.
347347

348348
This is a technical limitation. When persisting to an external storage, only the state of mutations is persisted, as functions cannot be serialized. After hydration, the component that triggers the mutation might not be mounted, so calling `resumePausedMutations` might yield an error: `No mutationFn found`.
349349

@@ -386,7 +386,7 @@ export default function App() {
386386

387387
[//]: # 'Example11'
388388

389-
We also have an extensive [offline example](../examples/offline) that covers both queries and mutations.
389+
We also have an extensive [offline example](../../examples/offline) that covers both queries and mutations.
390390

391391
## Mutation Scopes
392392

@@ -408,7 +408,7 @@ const mutation = useMutation({
408408

409409
## Further reading
410410

411-
For more information about mutations, have a look at [#12: Mastering Mutations in React Query](../community/tkdodos-blog.md#12-mastering-mutations-in-react-query) from
411+
For more information about mutations, have a look at [#12: Mastering Mutations in React Query](../../community/tkdodos-blog.md#12-mastering-mutations-in-react-query) from
412412
the Community Resources.
413413

414414
[//]: # 'Materials'

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": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
1616
"@angular/platform-browser-dynamic": "^20.0.0",
17-
"@tanstack/angular-query-experimental": "^5.80.6",
17+
"@tanstack/angular-query-experimental": "^5.80.7",
1818
"rxjs": "^7.8.2",
1919
"tslib": "^2.8.1",
2020
"zone.js": "0.15.0"

examples/angular/basic-persister/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"@angular/core": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
1616
"@angular/platform-browser-dynamic": "^20.0.0",
17-
"@tanstack/angular-query-experimental": "^5.80.6",
17+
"@tanstack/angular-query-experimental": "^5.80.7",
1818
"@tanstack/angular-query-persist-client": "^5.62.7",
19-
"@tanstack/query-sync-storage-persister": "^5.80.6",
19+
"@tanstack/query-sync-storage-persister": "^5.80.7",
2020
"rxjs": "^7.8.2",
2121
"tslib": "^2.8.1",
2222
"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": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
1616
"@angular/platform-browser-dynamic": "^20.0.0",
17-
"@tanstack/angular-query-experimental": "^5.80.6",
17+
"@tanstack/angular-query-experimental": "^5.80.7",
1818
"rxjs": "^7.8.2",
1919
"tslib": "^2.8.1",
2020
"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
@@ -15,7 +15,7 @@
1515
"@angular/platform-browser": "^20.0.0",
1616
"@angular/platform-browser-dynamic": "^20.0.0",
1717
"@angular/router": "^20.0.0",
18-
"@tanstack/angular-query-experimental": "^5.80.6",
18+
"@tanstack/angular-query-experimental": "^5.80.7",
1919
"rxjs": "^7.8.2",
2020
"tslib": "^2.8.1",
2121
"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": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
1616
"@angular/platform-browser-dynamic": "^20.0.0",
17-
"@tanstack/angular-query-experimental": "^5.80.6",
17+
"@tanstack/angular-query-experimental": "^5.80.7",
1818
"rxjs": "^7.8.2",
1919
"tslib": "^2.8.1",
2020
"zone.js": "0.15.0"

examples/angular/optimistic-updates/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@angular/forms": "^20.0.0",
1616
"@angular/platform-browser": "^20.0.0",
1717
"@angular/platform-browser-dynamic": "^20.0.0",
18-
"@tanstack/angular-query-experimental": "^5.80.6",
18+
"@tanstack/angular-query-experimental": "^5.80.7",
1919
"rxjs": "^7.8.2",
2020
"tslib": "^2.8.1",
2121
"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": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
1616
"@angular/platform-browser-dynamic": "^20.0.0",
17-
"@tanstack/angular-query-experimental": "^5.80.6",
17+
"@tanstack/angular-query-experimental": "^5.80.7",
1818
"rxjs": "^7.8.2",
1919
"tslib": "^2.8.1",
2020
"zone.js": "0.15.0"

examples/angular/query-options-from-a-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@angular/platform-browser": "^20.0.0",
1616
"@angular/platform-browser-dynamic": "^20.0.0",
1717
"@angular/router": "^20.0.0",
18-
"@tanstack/angular-query-experimental": "^5.80.6",
18+
"@tanstack/angular-query-experimental": "^5.80.7",
1919
"rxjs": "^7.8.2",
2020
"tslib": "^2.8.1",
2121
"zone.js": "0.15.0"

0 commit comments

Comments
 (0)