From cd286fa6f3bd9bd690fc3171aa3f9947b0e18f6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 2 Dec 2023 10:38:25 +0000 Subject: [PATCH] Version Packages --- .changeset/late-plants-poke.md | 5 ----- .changeset/stale-eagles-hide.md | 5 ----- .changeset/tender-files-tie.md | 5 ----- examples/with-apq/package.json | 2 +- examples/with-defer-stream-directives/package.json | 2 +- examples/with-graphcache-pagination/package.json | 2 +- examples/with-graphcache-updates/package.json | 2 +- examples/with-subscriptions-via-fetch/package.json | 2 +- exchanges/graphcache/CHANGELOG.md | 9 +++++++++ exchanges/graphcache/package.json | 2 +- exchanges/persisted/CHANGELOG.md | 7 +++++++ exchanges/persisted/package.json | 2 +- 12 files changed, 23 insertions(+), 22 deletions(-) delete mode 100644 .changeset/late-plants-poke.md delete mode 100644 .changeset/stale-eagles-hide.md delete mode 100644 .changeset/tender-files-tie.md diff --git a/.changeset/late-plants-poke.md b/.changeset/late-plants-poke.md deleted file mode 100644 index d0c90a67a1..0000000000 --- a/.changeset/late-plants-poke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-persisted': patch ---- - -Warn about cached persisted-miss results in development, when a `persistedExchange()` sees a persisted-miss error for a result that's already seen a persisted-miss error (i.e. two misses). This shouldn't happen unless something is caching persisted errors and we should warn about this appropriately. diff --git a/.changeset/stale-eagles-hide.md b/.changeset/stale-eagles-hide.md deleted file mode 100644 index 5a391ccabd..0000000000 --- a/.changeset/stale-eagles-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-graphcache': minor ---- - -Add `onCacheHydrated` as an option for the `StorageAdapter` diff --git a/.changeset/tender-files-tie.md b/.changeset/tender-files-tie.md deleted file mode 100644 index f2a47eba95..0000000000 --- a/.changeset/tender-files-tie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-graphcache': minor ---- - -Add optional `logger` to the options, this allows you to filter out warnings or disable them all together diff --git a/examples/with-apq/package.json b/examples/with-apq/package.json index 9d0a796ac3..71a1cdbc57 100644 --- a/examples/with-apq/package.json +++ b/examples/with-apq/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@urql/core": "^4.2.0", - "@urql/exchange-persisted": "^4.1.0", + "@urql/exchange-persisted": "^4.1.1", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/with-defer-stream-directives/package.json b/examples/with-defer-stream-directives/package.json index 05ef20c7cb..60d4062d7b 100644 --- a/examples/with-defer-stream-directives/package.json +++ b/examples/with-defer-stream-directives/package.json @@ -18,7 +18,7 @@ "dependencies": { "@graphql-yoga/plugin-defer-stream": "^1.7.1", "@urql/core": "^4.2.0", - "@urql/exchange-graphcache": "^6.3.3", + "@urql/exchange-graphcache": "^6.4.0", "graphql": "17.0.0-alpha.2", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/with-graphcache-pagination/package.json b/examples/with-graphcache-pagination/package.json index cc87111b66..34b880a6f7 100644 --- a/examples/with-graphcache-pagination/package.json +++ b/examples/with-graphcache-pagination/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@urql/core": "^4.2.0", - "@urql/exchange-graphcache": "^6.3.3", + "@urql/exchange-graphcache": "^6.4.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/with-graphcache-updates/package.json b/examples/with-graphcache-updates/package.json index 380d325c64..4df709ae0f 100644 --- a/examples/with-graphcache-updates/package.json +++ b/examples/with-graphcache-updates/package.json @@ -8,7 +8,7 @@ "dependencies": { "@urql/core": "^4.2.0", "@urql/exchange-auth": "^2.1.6", - "@urql/exchange-graphcache": "^6.3.3", + "@urql/exchange-graphcache": "^6.4.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/with-subscriptions-via-fetch/package.json b/examples/with-subscriptions-via-fetch/package.json index 6868e53963..2996ff2d1c 100644 --- a/examples/with-subscriptions-via-fetch/package.json +++ b/examples/with-subscriptions-via-fetch/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@urql/core": "^4.2.0", - "@urql/exchange-graphcache": "^6.3.3", + "@urql/exchange-graphcache": "^6.4.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/exchanges/graphcache/CHANGELOG.md b/exchanges/graphcache/CHANGELOG.md index a7968878bd..07b84e5dcf 100644 --- a/exchanges/graphcache/CHANGELOG.md +++ b/exchanges/graphcache/CHANGELOG.md @@ -1,5 +1,14 @@ # @urql/exchange-graphcache +## 6.4.0 + +### Minor Changes + +- Add `onCacheHydrated` as an option for the `StorageAdapter` + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3428](https://github.com/urql-graphql/urql/pull/3428)) +- Add optional `logger` to the options, this allows you to filter out warnings or disable them all together + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3444](https://github.com/urql-graphql/urql/pull/3444)) + ## 6.3.3 ### Patch Changes diff --git a/exchanges/graphcache/package.json b/exchanges/graphcache/package.json index 837854ea07..d1f79c1985 100644 --- a/exchanges/graphcache/package.json +++ b/exchanges/graphcache/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-graphcache", - "version": "6.3.3", + "version": "6.4.0", "description": "A normalized and configurable cache exchange for urql", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/graphcache", diff --git a/exchanges/persisted/CHANGELOG.md b/exchanges/persisted/CHANGELOG.md index 932d48dfe1..afacc7ae4f 100644 --- a/exchanges/persisted/CHANGELOG.md +++ b/exchanges/persisted/CHANGELOG.md @@ -1,5 +1,12 @@ # @urql/exchange-persisted-fetch +## 4.1.1 + +### Patch Changes + +- Warn about cached persisted-miss results in development, when a `persistedExchange()` sees a persisted-miss error for a result that's already seen a persisted-miss error (i.e. two misses). This shouldn't happen unless something is caching persisted errors and we should warn about this appropriately + Submitted by [@kitten](https://github.com/kitten) (See [#3442](https://github.com/urql-graphql/urql/pull/3442)) + ## 4.1.0 ### Minor Changes diff --git a/exchanges/persisted/package.json b/exchanges/persisted/package.json index 9ccf61a5a2..6dd0915004 100644 --- a/exchanges/persisted/package.json +++ b/exchanges/persisted/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-persisted", - "version": "4.1.0", + "version": "4.1.1", "description": "An exchange that allows for persisted queries support when fetching queries", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/",