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 (#1686)

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

authored by

urql-ci
github-actions[bot]
and committed by
GitHub
64312999 1e12b23c

+17 -13
-5
.changeset/strange-elephants-add.md
··· 1 - --- 2 - "@urql/exchange-graphcache": patch 3 - --- 4 - 5 - Fix: add the `ENTRIES_STORE_NAME` to the clear transaction
-5
.changeset/two-beers-exist.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Treat empty variables the same as no variables in `@urql/core`'s `createRequest`.
+8
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 4.1.3 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix: add the `ENTRIES_STORE_NAME` to the clear transaction, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1685](https://github.com/FormidableLabs/urql/pull/1685)) 8 + - Updated dependencies (See [#1695](https://github.com/FormidableLabs/urql/pull/1695)) 9 + - @urql/core@2.1.3 10 + 3 11 ## 4.1.2 4 12 5 13 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "4.1.2", 3 + "version": "4.1.3", 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.1.0", 68 + "@urql/core": ">=2.1.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.1.3 4 + 5 + ### Patch Changes 6 + 7 + - Treat empty variables the same as no variables in `@urql/core`'s `createRequest`, by [@kitten](https://github.com/kitten) (See [#1695](https://github.com/FormidableLabs/urql/pull/1695)) 8 + 3 9 ## 2.1.2 4 10 5 11 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "2.1.2", 3 + "version": "2.1.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/",