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

+28 -24
-5
.changeset/green-lies-help.md
··· 1 - --- 2 - '@urql/exchange-persisted-fetch': minor 3 - --- 4 - 5 - Adds support for custom hash functions by adding a `generateHash` option to the exchange.
-5
.changeset/kind-goats-carry.md
··· 1 - --- 2 - 'next-urql': patch 3 - --- 4 - 5 - Disable suspense on the `Client` when we aren't using `react-ssr-prepass`.
-5
.changeset/six-hornets-smile.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix `formatDocument` mutating parts of the `DocumentNode` which may be shared by other documents and queries. Also ensure that a formatted document will always generate the same key in `createRequest` as the original document.
-5
.changeset/six-pumas-taste.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix `ssrExchange` invalidating results on the client-side too eagerly, by delaying invalidation by a tick
+11
exchanges/persisted-fetch/CHANGELOG.md
··· 1 1 # @urql/exchange-persisted-fetch 2 2 3 + ## 1.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Adds support for custom hash functions by adding a `generateHash` option to the exchange, by [@lorenries](https://github.com/lorenries) (See [#870](https://github.com/FormidableLabs/urql/pull/870)) 8 + 9 + ### Patch Changes 10 + 11 + - Updated dependencies (See [#880](https://github.com/FormidableLabs/urql/pull/880) and [#885](https://github.com/FormidableLabs/urql/pull/885)) 12 + - @urql/core@1.12.2 13 + 3 14 ## 1.0.1 4 15 5 16 ### Patch Changes
+2 -2
exchanges/persisted-fetch/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-persisted-fetch", 3 - "version": "1.0.1", 3 + "version": "1.1.0", 4 4 "description": "An exchange that allows for persisted queries support when fetching queries", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 49 49 "preset": "../../scripts/jest/preset" 50 50 }, 51 51 "dependencies": { 52 - "@urql/core": ">=1.12.0", 52 + "@urql/core": ">=1.12.2", 53 53 "wonka": "^4.0.14" 54 54 }, 55 55 "peerDependencies": {
+7
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 1.12.2 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix `formatDocument` mutating parts of the `DocumentNode` which may be shared by other documents and queries. Also ensure that a formatted document will always generate the same key in `createRequest` as the original document, by [@kitten](https://github.com/kitten) (See [#880](https://github.com/FormidableLabs/urql/pull/880)) 8 + - ⚠️ Fix `ssrExchange` invalidating results on the client-side too eagerly, by delaying invalidation by a tick, by [@kitten](https://github.com/kitten) (See [#885](https://github.com/FormidableLabs/urql/pull/885)) 9 + 3 10 ## 1.12.1 4 11 5 12 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "1.12.1", 3 + "version": "1.12.2", 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/",
+6
packages/next-urql/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.0.2 4 + 5 + ### Patch Changes 6 + 7 + - Disable suspense on the `Client` when we aren't using `react-ssr-prepass`, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#884](https://github.com/FormidableLabs/urql/pull/884)) 8 + 3 9 ## 1.0.1 4 10 5 11 ### Patch Changes
+1 -1
packages/next-urql/package.json
··· 1 1 { 2 2 "name": "next-urql", 3 - "version": "1.0.1", 3 + "version": "1.0.2", 4 4 "description": "Convenience wrappers for using urql with NextJS.", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",