Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Version Packages (#1871)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

authored by

urql-ci
github-actions[bot]
and committed by
GitHub
66d7fb78 7f49b6b0

+33 -27
-5
.changeset/mean-pugs-laugh.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix previous results' `null` values spilling into the next result that Graphcache issues, which may prevent updates from being issued until the query is reexecuted. This was affecting any `null` links on data, and any queries that were issued before non-optimistic mutations.
-5
.changeset/rude-pumpkins-yawn.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix mark `query.__key` as non-enumerable so `formatDocument` does not restore previous invocations when cloning the gql-ast.
-5
.changeset/stale-candles-enjoy.md
··· 1 - --- 2 - '@urql/exchange-retry': minor 3 - --- 4 - 5 - Add a new `retryWith` option which allows operations to be updated when a request is being retried.
-7
.changeset/thick-seals-wait.md
··· 1 - --- 2 - "@urql/core": patch 3 - --- 4 - 5 - Fix: update toPromise to exclude `hasNext` results. This change ensures that 6 - when we call toPromise() on a query we wont serve an incomplete result, the 7 - user will expect to receive a non-stale full-result when using toPromise()
+8
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 4.3.1 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix previous results' `null` values spilling into the next result that Graphcache issues, which may prevent updates from being issued until the query is reexecuted. This was affecting any `null` links on data, and any queries that were issued before non-optimistic mutations, by [@kitten](https://github.com/kitten) (See [#1885](https://github.com/FormidableLabs/urql/pull/1885)) 8 + - Updated dependencies (See [#1870](https://github.com/FormidableLabs/urql/pull/1870) and [#1880](https://github.com/FormidableLabs/urql/pull/1880)) 9 + - @urql/core@2.3.1 10 + 3 11 ## 4.3.0 4 12 5 13 ### Minor Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "4.3.0", 3 + "version": "4.3.1", 4 4 "description": "A normalized and configurable cache exchange for urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/graphcache", ··· 65 65 "preset": "../../scripts/jest/preset" 66 66 }, 67 67 "dependencies": { 68 - "@urql/core": ">=2.3.0", 68 + "@urql/core": ">=2.3.1", 69 69 "wonka": "^4.0.14" 70 70 }, 71 71 "peerDependencies": {
+11
exchanges/retry/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 0.3.0 4 + 5 + ### Minor Changes 6 + 7 + - Add a new `retryWith` option which allows operations to be updated when a request is being retried, by [@kitten](https://github.com/kitten) (See [#1881](https://github.com/FormidableLabs/urql/pull/1881)) 8 + 9 + ### Patch Changes 10 + 11 + - Updated dependencies (See [#1870](https://github.com/FormidableLabs/urql/pull/1870) and [#1880](https://github.com/FormidableLabs/urql/pull/1880)) 12 + - @urql/core@2.3.1 13 + 3 14 ## 0.2.1 4 15 5 16 ### Patch Changes
+2 -2
exchanges/retry/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-retry", 3 - "version": "0.2.1", 3 + "version": "0.3.0", 4 4 "description": "An exchange for operation retry support in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 56 56 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" 57 57 }, 58 58 "dependencies": { 59 - "@urql/core": ">=2.1.0", 59 + "@urql/core": ">=2.3.1", 60 60 "wonka": "^4.0.14" 61 61 }, 62 62 "publishConfig": {
+9
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 2.3.1 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix mark `query.__key` as non-enumerable so `formatDocument` does not restore previous invocations when cloning the gql-ast, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1870](https://github.com/FormidableLabs/urql/pull/1870)) 8 + - ⚠️ Fix: update toPromise to exclude `hasNext` results. This change ensures that 9 + when we call toPromise() on a query we wont serve an incomplete result, the 10 + user will expect to receive a non-stale full-result when using toPromise(), by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1880](https://github.com/FormidableLabs/urql/pull/1880)) 11 + 3 12 ## 2.3.0 4 13 5 14 ### Minor Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "2.3.0", 3 + "version": "2.3.1", 4 4 "description": "The shared core for the highly customizable and versatile GraphQL client", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",