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

Version Packages (#1984)

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

authored by

urql-ci
github-actions[bot]
and committed by
GitHub
d0c13768 0dfa972d

+17 -13
-5
.changeset/polite-jobs-call.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix regression from [#1869](https://github.com/FormidableLabs/urql/pull/1869) that caused nullable lists to always cause a cache miss, if schema awareness is enabled.
-5
.changeset/tidy-tables-promise.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Adding option to `ssrExchange` to include the `extensions` field of operation results in the cache.
+8
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 4.3.5 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix regression from [#1869](https://github.com/FormidableLabs/urql/pull/1869) that caused nullable lists to always cause a cache miss, if schema awareness is enabled, by [@kitten](https://github.com/kitten) (See [#1983](https://github.com/FormidableLabs/urql/pull/1983)) 8 + - Updated dependencies (See [#1985](https://github.com/FormidableLabs/urql/pull/1985)) 9 + - @urql/core@2.3.3 10 + 3 11 ## 4.3.4 4 12 5 13 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "4.3.4", 3 + "version": "4.3.5", 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.2", 68 + "@urql/core": ">=2.3.3", 69 69 "wonka": "^4.0.14" 70 70 }, 71 71 "peerDependencies": {
+6
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 2.3.3 4 + 5 + ### Patch Changes 6 + 7 + - Adding option to `ssrExchange` to include the `extensions` field of operation results in the cache, by [@dios-david](https://github.com/dios-david) (See [#1985](https://github.com/FormidableLabs/urql/pull/1985)) 8 + 3 9 ## 2.3.2 4 10 5 11 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "2.3.2", 3 + "version": "2.3.3", 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/",