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

+30 -18
-7
.changeset/eighty-plants-pump.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - '@urql/exchange-populate': patch 4 - '@urql/core': patch 5 - --- 6 - 7 - Pick modules from graphql package, instead of importing from graphql/index.mjs
-5
.changeset/thirty-boxes-divide.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Change invalidation to check for undefined links since null is a valid value in graphql
+10
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 2.3.2 4 + 5 + ### Patch Changes 6 + 7 + - Pick modules from graphql package, instead of importing from graphql/index.mjs, by [@kitten](https://github.com/kitten) (See [#700](https://github.com/FormidableLabs/urql/pull/700)) 8 + - Change invalidation to check for undefined links since null is a valid value in graphql, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#694](https://github.com/FormidableLabs/urql/pull/694)) 9 + - Updated dependencies (See [#700](https://github.com/FormidableLabs/urql/pull/700)) 10 + - @urql/exchange-populate@0.1.5 11 + - @urql/core@1.10.9 12 + 3 13 ## 2.3.1 4 14 5 15 ### Patch Changes
+3 -3
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "2.3.1", 3 + "version": "2.3.2", 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", ··· 57 57 "preset": "../../scripts/jest/preset" 58 58 }, 59 59 "dependencies": { 60 - "@urql/core": ">=1.10.8", 61 - "@urql/exchange-populate": ">=0.1.4", 60 + "@urql/core": ">=1.10.9", 61 + "@urql/exchange-populate": ">=0.1.5", 62 62 "wonka": "^4.0.9" 63 63 }, 64 64 "peerDependencies": {
+8
exchanges/populate/CHANGELOG.md
··· 1 1 # @urql/exchange-populate 2 2 3 + ## 0.1.5 4 + 5 + ### Patch Changes 6 + 7 + - Pick modules from graphql package, instead of importing from graphql/index.mjs, by [@kitten](https://github.com/kitten) (See [#700](https://github.com/FormidableLabs/urql/pull/700)) 8 + - Updated dependencies (See [#700](https://github.com/FormidableLabs/urql/pull/700)) 9 + - @urql/core@1.10.9 10 + 3 11 ## 0.1.4 4 12 5 13 ### Patch Changes
+2 -2
exchanges/populate/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-populate", 3 - "version": "0.1.4", 3 + "version": "0.1.5", 4 4 "description": "An exchange that automaticcally populates the mutation selection body", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/advanced/auto-populate-mutations", ··· 48 48 "preset": "../../scripts/jest/preset" 49 49 }, 50 50 "dependencies": { 51 - "@urql/core": ">=1.10.8", 51 + "@urql/core": ">=1.10.9", 52 52 "wonka": "^4.0.9" 53 53 }, 54 54 "peerDependencies": {
+6
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 1.10.9 4 + 5 + ### Patch Changes 6 + 7 + - Pick modules from graphql package, instead of importing from graphql/index.mjs, by [@kitten](https://github.com/kitten) (See [#700](https://github.com/FormidableLabs/urql/pull/700)) 8 + 3 9 ## 1.10.8 4 10 5 11 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "1.10.8", 3 + "version": "1.10.9", 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/",