Skip to content

Commit 8ca276f

Browse files
committed
Merge branch 'main' into production
2 parents 445479a + 37eda0d commit 8ca276f

86 files changed

Lines changed: 168 additions & 140 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.

docs/framework/react/guides/query-keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: query-keys
33
title: Query Keys
44
---
55

6-
At its core, TanStack Query manages query caching for you based on query keys. Query keys have to be an Array at the top level, and can be as simple as an Array with a single string, or as complex as an array of many strings and nested objects. As long as the query key is serializable, and **unique to the query's data**, you can use it!
6+
At its core, TanStack Query manages query caching for you based on query keys. Query keys have to be an Array at the top level, and can be as simple as an Array with a single string, or as complex as an array of many strings and nested objects. As long as the query key is serializable using `JSON.stringify`, and **unique to the query's data**, you can use it!
77

88
## Simple Query Keys
99

docs/framework/react/guides/ssr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ Note that the queries are no longer fetched on the client, instead their data wa
509509

510510
We simply can not know before we have fetched the feed if we also need to fetch graph data, they are dependent queries. Because this happens on the server where latency is generally both lower and more stable, this often isn't such a big deal.
511511

512-
Amazing, we've mostly flattened our waterfalls! There's a catch though. Let's call this page the `/feed` page, and let's pretend we also have another page like `/posts`. If we type in `www.example.com/feed` directly in the url bar and hit enter, we get all these great server rendering benefits, BUT, if we instead type in `www.example.com/posts` and then **click a link** to `/feed`, we're back to to this:
512+
Amazing, we've mostly flattened our waterfalls! There's a catch though. Let's call this page the `/feed` page, and let's pretend we also have another page like `/posts`. If we type in `www.example.com/feed` directly in the url bar and hit enter, we get all these great server rendering benefits, BUT, if we instead type in `www.example.com/posts` and then **click a link** to `/feed`, we're back to this:
513513

514514
```
515515
1. |> JS for <Feed>

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.79.0",
17+
"@tanstack/angular-query-experimental": "^5.80.2",
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.79.0",
17+
"@tanstack/angular-query-experimental": "^5.80.2",
1818
"@tanstack/angular-query-persist-client": "^5.62.7",
19-
"@tanstack/query-sync-storage-persister": "^5.79.0",
19+
"@tanstack/query-sync-storage-persister": "^5.80.2",
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.79.0",
17+
"@tanstack/angular-query-experimental": "^5.80.2",
1818
"rxjs": "^7.8.2",
1919
"tslib": "^2.8.1",
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": "^20.0.0",
1616
"@angular/platform-browser-dynamic": "^20.0.0",
1717
"@angular/router": "^20.0.0",
18-
"@tanstack/angular-query-devtools-experimental": "^5.79.0",
19-
"@tanstack/angular-query-experimental": "^5.79.0",
18+
"@tanstack/angular-query-devtools-experimental": "^5.80.2",
19+
"@tanstack/angular-query-experimental": "^5.80.2",
2020
"rxjs": "^7.8.2",
2121
"tslib": "^2.8.1",
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": "^20.0.0",
1515
"@angular/platform-browser": "^20.0.0",
1616
"@angular/platform-browser-dynamic": "^20.0.0",
17-
"@tanstack/angular-query-experimental": "^5.79.0",
17+
"@tanstack/angular-query-experimental": "^5.80.2",
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.79.0",
18+
"@tanstack/angular-query-experimental": "^5.80.2",
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.79.0",
17+
"@tanstack/angular-query-experimental": "^5.80.2",
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.79.0",
18+
"@tanstack/angular-query-experimental": "^5.80.2",
1919
"rxjs": "^7.8.2",
2020
"tslib": "^2.8.1",
2121
"zone.js": "0.15.0"

0 commit comments

Comments
 (0)