From cd5d57fb76efa7331de12b87edb20c6608116c4f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 15 Aug 2023 10:22:31 +0000 Subject: [PATCH] Version Packages --- .changeset/odd-parrots-fix.md | 5 ----- 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 | 7 +++++++ exchanges/graphcache/package.json | 2 +- 7 files changed, 12 insertions(+), 10 deletions(-) delete mode 100644 .changeset/odd-parrots-fix.md diff --git a/.changeset/odd-parrots-fix.md b/.changeset/odd-parrots-fix.md deleted file mode 100644 index a50dc48eb3..0000000000 --- a/.changeset/odd-parrots-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-graphcache': patch ---- - -Fix extra variables in mutation results regressing by a change made in [#3317](https://github.com/urql-graphql/urql/pull/3317). The original operation wasn't being preserved anymore. diff --git a/examples/with-defer-stream-directives/package.json b/examples/with-defer-stream-directives/package.json index c8844ae9f2..395d1dbda1 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.1.1", - "@urql/exchange-graphcache": "^6.3.1", + "@urql/exchange-graphcache": "^6.3.2", "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 828f4b2c07..11454b2531 100644 --- a/examples/with-graphcache-pagination/package.json +++ b/examples/with-graphcache-pagination/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@urql/core": "^4.1.1", - "@urql/exchange-graphcache": "^6.3.1", + "@urql/exchange-graphcache": "^6.3.2", "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 e2f4abc770..e84b19c0a9 100644 --- a/examples/with-graphcache-updates/package.json +++ b/examples/with-graphcache-updates/package.json @@ -8,7 +8,7 @@ "dependencies": { "@urql/core": "^4.1.1", "@urql/exchange-auth": "^2.1.6", - "@urql/exchange-graphcache": "^6.3.1", + "@urql/exchange-graphcache": "^6.3.2", "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 30cd18aa64..011aed89a4 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.1.1", - "@urql/exchange-graphcache": "^6.3.1", + "@urql/exchange-graphcache": "^6.3.2", "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 1eb39f0383..2b4cd0376e 100644 --- a/exchanges/graphcache/CHANGELOG.md +++ b/exchanges/graphcache/CHANGELOG.md @@ -1,5 +1,12 @@ # @urql/exchange-graphcache +## 6.3.2 + +### Patch Changes + +- ⚠️ Fix extra variables in mutation results regressing by a change made in [#3317](https://github.com/urql-graphql/urql/pull/3317). The original operation wasn't being preserved anymore + Submitted by [@kitten](https://github.com/kitten) (See [#3356](https://github.com/urql-graphql/urql/pull/3356)) + ## 6.3.1 ### Patch Changes diff --git a/exchanges/graphcache/package.json b/exchanges/graphcache/package.json index 3cdf8b9bf7..8f7240bdd3 100644 --- a/exchanges/graphcache/package.json +++ b/exchanges/graphcache/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-graphcache", - "version": "6.3.1", + "version": "6.3.2", "description": "A normalized and configurable cache exchange for urql", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/graphcache",