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

authored by

urql-ci and committed by
GitHub
33054672 15482d89

+18 -18
-5
.changeset/curvy-monkeys-collect.md
··· 1 - --- 2 - "@urql/core": patch 3 - --- 4 - 5 - Update typings of the client to encompass the changes of https://github.com/FormidableLabs/urql/pull/2692
-5
.changeset/flat-feet-look.md
··· 1 - --- 2 - "@urql/exchange-graphcache": patch 3 - --- 4 - 5 - Fix case where a mutation would also be counted in the loop-protection, this prevented partial queries from initiating refetches
-5
.changeset/quiet-turkeys-brake.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix case where our transform-debug-target babel plugin would override the root dispatchDebug in `compose.ts` with the latest found exchange, in this case `fetchExchange`
+8
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 5.0.3 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix case where a mutation would also be counted in the loop-protection, this prevented partial queries from initiating refetches, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2761](https://github.com/FormidableLabs/urql/pull/2761)) 8 + - Updated dependencies (See [#2758](https://github.com/FormidableLabs/urql/pull/2758) and [#2762](https://github.com/FormidableLabs/urql/pull/2762)) 9 + - @urql/core@3.0.5 10 + 3 11 ## 5.0.2 4 12 5 13 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "5.0.2", 3 + "version": "5.0.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": ">=3.0.4", 68 + "@urql/core": ">=3.0.5", 69 69 "wonka": "^6.0.0" 70 70 }, 71 71 "peerDependencies": {
+7
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 3.0.5 4 + 5 + ### Patch Changes 6 + 7 + - Update typings of the client to encompass the changes of https://github.com/FormidableLabs/urql/pull/2692, by [@c-schwan](https://github.com/c-schwan) (See [#2758](https://github.com/FormidableLabs/urql/pull/2758)) 8 + - ⚠️ Fix case where our transform-debug-target babel plugin would override the root dispatchDebug in `compose.ts` with the latest found exchange, in this case `fetchExchange`, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2762](https://github.com/FormidableLabs/urql/pull/2762)) 9 + 3 10 ## 3.0.4 4 11 5 12 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "3.0.4", 3 + "version": "3.0.5", 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/",