From f4c9320ac7e011b7a1b3aeba43c7d16e7b7691f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 22 Apr 2021 09:01:57 +0000 Subject: [PATCH] Version Packages --- .changeset/fair-beds-happen.md | 5 ----- .changeset/slow-doors-sparkle.md | 5 ----- exchanges/graphcache/CHANGELOG.md | 8 ++++++++ exchanges/graphcache/package.json | 4 ++-- packages/core/CHANGELOG.md | 6 ++++++ packages/core/package.json | 2 +- 6 files changed, 17 insertions(+), 13 deletions(-) delete mode 100644 .changeset/fair-beds-happen.md delete mode 100644 .changeset/slow-doors-sparkle.md diff --git a/.changeset/fair-beds-happen.md b/.changeset/fair-beds-happen.md deleted file mode 100644 index b0381fbb6b..0000000000 --- a/.changeset/fair-beds-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/core': patch ---- - -Fix inconsistency in generating keys for `DocumentNode`s, especially when using GraphQL Code Generator, which could cause SSR serialization to fail. diff --git a/.changeset/slow-doors-sparkle.md b/.changeset/slow-doors-sparkle.md deleted file mode 100644 index 25b9dc7bcc..0000000000 --- a/.changeset/slow-doors-sparkle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-graphcache': patch ---- - -Allow for the schema subscription and mutationType to be null diff --git a/exchanges/graphcache/CHANGELOG.md b/exchanges/graphcache/CHANGELOG.md index 23f5a9c596..43b300768b 100644 --- a/exchanges/graphcache/CHANGELOG.md +++ b/exchanges/graphcache/CHANGELOG.md @@ -1,5 +1,13 @@ # @urql/exchange-graphcache +## 4.0.1 + +### Patch Changes + +- Allow for the schema subscription and mutationType to be null, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1530](https://github.com/FormidableLabs/urql/pull/1530)) +- Updated dependencies (See [#1509](https://github.com/FormidableLabs/urql/pull/1509)) + - @urql/core@2.0.1 + ## 4.0.0 ### Major Changes diff --git a/exchanges/graphcache/package.json b/exchanges/graphcache/package.json index e81aa3ded5..ebb1846578 100644 --- a/exchanges/graphcache/package.json +++ b/exchanges/graphcache/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-graphcache", - "version": "4.0.0", + "version": "4.0.1", "description": "A normalized and configurable cache exchange for urql", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/graphcache", @@ -65,7 +65,7 @@ "preset": "../../scripts/jest/preset" }, "dependencies": { - "@urql/core": ">=2.0.0", + "@urql/core": ">=2.0.1", "wonka": "^4.0.14" }, "peerDependencies": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index f7b000115c..54f651029d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @urql/core +## 2.0.1 + +### Patch Changes + +- ⚠️ Fix inconsistency in generating keys for `DocumentNode`s, especially when using GraphQL Code Generator, which could cause SSR serialization to fail, by [@zenflow](https://github.com/zenflow) (See [#1509](https://github.com/FormidableLabs/urql/pull/1509)) + ## 2.0.0 ### Major Changes diff --git a/packages/core/package.json b/packages/core/package.json index 7c1d04ee87..66596eeb3f 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@urql/core", - "version": "2.0.0", + "version": "2.0.1", "description": "The shared core for the highly customizable and versatile GraphQL client", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/",