From 7a754e9ffa3a3f7873302605a643f00f7e8b7168 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 1 Jul 2021 17:50:27 +0000 Subject: [PATCH] Version Packages --- .changeset/fresh-moose-exist.md | 5 ----- .changeset/silent-carpets-judge.md | 5 ----- .changeset/sweet-beers-brush.md | 5 ----- exchanges/persisted-fetch/CHANGELOG.md | 8 ++++++++ exchanges/persisted-fetch/package.json | 4 ++-- exchanges/request-policy/CHANGELOG.md | 8 ++++++++ exchanges/request-policy/package.json | 4 ++-- packages/core/CHANGELOG.md | 6 ++++++ packages/core/package.json | 2 +- 9 files changed, 27 insertions(+), 20 deletions(-) delete mode 100644 .changeset/fresh-moose-exist.md delete mode 100644 .changeset/silent-carpets-judge.md delete mode 100644 .changeset/sweet-beers-brush.md diff --git a/.changeset/fresh-moose-exist.md b/.changeset/fresh-moose-exist.md deleted file mode 100644 index f6e46408fd..0000000000 --- a/.changeset/fresh-moose-exist.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/core': patch ---- - -Fix accidental change in passive `stale: true`, where a `cache-first` operation issued by Graphcache wouldn't yield an affected query and update its result to reflect the loading state with `stale: true`. This is a regression from `v2.1.0` and mostly becomes unexpected when `cache.invalidate(...)` is used. diff --git a/.changeset/silent-carpets-judge.md b/.changeset/silent-carpets-judge.md deleted file mode 100644 index 70f332da0a..0000000000 --- a/.changeset/silent-carpets-judge.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-persisted-fetch': patch ---- - -Optimize for minification by avoiding direct eval call. diff --git a/.changeset/sweet-beers-brush.md b/.changeset/sweet-beers-brush.md deleted file mode 100644 index bc0a337422..0000000000 --- a/.changeset/sweet-beers-brush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-request-policy': patch ---- - -Do not set the TTL unless cache outcome is "miss". Previously we set the TTL on cache "miss" if it was the first time an operation returned a result, now the TTL is only set on cache miss results. This allows the request policy exchange to work when using persisted caching. diff --git a/exchanges/persisted-fetch/CHANGELOG.md b/exchanges/persisted-fetch/CHANGELOG.md index ffaa13520b..8cf96a0721 100644 --- a/exchanges/persisted-fetch/CHANGELOG.md +++ b/exchanges/persisted-fetch/CHANGELOG.md @@ -1,5 +1,13 @@ # @urql/exchange-persisted-fetch +## 1.3.2 + +### Patch Changes + +- Optimize for minification by avoiding direct eval call, by [@nderscore](https://github.com/nderscore) (See [#1744](https://github.com/FormidableLabs/urql/pull/1744)) +- Updated dependencies (See [#1755](https://github.com/FormidableLabs/urql/pull/1755)) + - @urql/core@2.1.5 + ## 1.3.1 ### Patch Changes diff --git a/exchanges/persisted-fetch/package.json b/exchanges/persisted-fetch/package.json index 255d06373e..74f8383389 100644 --- a/exchanges/persisted-fetch/package.json +++ b/exchanges/persisted-fetch/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-persisted-fetch", - "version": "1.3.1", + "version": "1.3.2", "description": "An exchange that allows for persisted queries support when fetching queries", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -49,7 +49,7 @@ "preset": "../../scripts/jest/preset" }, "dependencies": { - "@urql/core": ">=2.1.0", + "@urql/core": ">=2.1.5", "wonka": "^4.0.14" }, "peerDependencies": { diff --git a/exchanges/request-policy/CHANGELOG.md b/exchanges/request-policy/CHANGELOG.md index d3af4998aa..324acf98bc 100644 --- a/exchanges/request-policy/CHANGELOG.md +++ b/exchanges/request-policy/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.4 + +### Patch Changes + +- Do not set the TTL unless cache outcome is "miss". Previously we set the TTL on cache "miss" if it was the first time an operation returned a result, now the TTL is only set on cache miss results. This allows the request policy exchange to work when using persisted caching, by [@Mookiies](https://github.com/Mookiies) (See [#1742](https://github.com/FormidableLabs/urql/pull/1742)) +- Updated dependencies (See [#1755](https://github.com/FormidableLabs/urql/pull/1755)) + - @urql/core@2.1.5 + ## 0.1.3 ### Patch Changes diff --git a/exchanges/request-policy/package.json b/exchanges/request-policy/package.json index a844794222..27b9b603ad 100644 --- a/exchanges/request-policy/package.json +++ b/exchanges/request-policy/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-request-policy", - "version": "0.1.3", + "version": "0.1.4", "description": "An exchange for operation request-policy upgrading in urql", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -56,7 +56,7 @@ "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" }, "dependencies": { - "@urql/core": ">=2.1.2", + "@urql/core": ">=2.1.5", "wonka": "^4.0.14" }, "publishConfig": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 546814cba7..54add8a36b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @urql/core +## 2.1.5 + +### Patch Changes + +- ⚠️ Fix accidental change in passive `stale: true`, where a `cache-first` operation issued by Graphcache wouldn't yield an affected query and update its result to reflect the loading state with `stale: true`. This is a regression from `v2.1.0` and mostly becomes unexpected when `cache.invalidate(...)` is used, by [@kitten](https://github.com/kitten) (See [#1755](https://github.com/FormidableLabs/urql/pull/1755)) + ## 2.1.4 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 61bb82e437..dad3a8a16d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@urql/core", - "version": "2.1.4", + "version": "2.1.5", "description": "The shared core for the highly customizable and versatile GraphQL client", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/",