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

+55 -38
-9
.changeset/early-camels-live.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - '@urql/exchange-multipart-fetch': patch 4 - '@urql/exchange-retry': patch 5 - '@urql/core': minor 6 - --- 7 - 8 - Add debugging events to exchanges that add more detailed information on what is happening 9 - internally, which will be displayed by devtools like the urql [Chrome / Firefox extension](https://github.com/FormidableLabs/urql-devtools)
-5
.changeset/eighty-turkeys-jam.md
··· 1 - --- 2 - 'next-urql': patch 3 - --- 4 - 5 - Ensure that the Next.js context is available during all stages of SSR. Previously a missing check in `useMemo` on the server-side caused `clientConfig` from being called repeatedly, and another issue may have caused the client from being serialized to initial props.
-5
.changeset/honest-mangos-rule.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix persistence using special tab character in serialized keys and add sanitization to persistence key serializer.
-5
.changeset/stale-onions-check.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix stringifyVariables breaking on x.toJSON scalars.
-6
.changeset/wet-rabbits-tie.md
··· 1 - --- 2 - '@urql/core': minor 3 - '@urql/exchange-multipart-fetch': patch 4 - --- 5 - 6 - Add @urql/core/internal entrypoint for internally shared utilities and start sharing fetchExchange-related code.
+10
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 2.3.4 4 + 5 + ### Patch Changes 6 + 7 + - Add debugging events to exchanges that add more detailed information on what is happening 8 + internally, which will be displayed by devtools like the urql [Chrome / Firefox extension](https://github.com/FormidableLabs/urql-devtools), by [@andyrichardson](https://github.com/andyrichardson) (See [#608](https://github.com/FormidableLabs/urql/pull/608)) 9 + - ⚠️ Fix persistence using special tab character in serialized keys and add sanitization to persistence key serializer, by [@kitten](https://github.com/kitten) (See [#715](https://github.com/FormidableLabs/urql/pull/715)) 10 + - Updated dependencies (See [#608](https://github.com/FormidableLabs/urql/pull/608), [#718](https://github.com/FormidableLabs/urql/pull/718), and [#722](https://github.com/FormidableLabs/urql/pull/722)) 11 + - @urql/core@1.11.0 12 + 3 13 ## 2.3.3 4 14 5 15 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "2.3.3", 3 + "version": "2.3.4", 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.9", 60 + "@urql/core": ">=1.11.0", 61 61 "@urql/exchange-populate": ">=0.1.6", 62 62 "wonka": "^4.0.9" 63 63 },
+10
exchanges/multipart-fetch/CHANGELOG.md
··· 1 1 # @urql/exchange-multipart-fetch 2 2 3 + ## 0.1.5 4 + 5 + ### Patch Changes 6 + 7 + - Add debugging events to exchanges that add more detailed information on what is happening 8 + internally, which will be displayed by devtools like the urql [Chrome / Firefox extension](https://github.com/FormidableLabs/urql-devtools), by [@andyrichardson](https://github.com/andyrichardson) (See [#608](https://github.com/FormidableLabs/urql/pull/608)) 9 + - Add @urql/core/internal entrypoint for internally shared utilities and start sharing fetchExchange-related code, by [@kitten](https://github.com/kitten) (See [#722](https://github.com/FormidableLabs/urql/pull/722)) 10 + - Updated dependencies (See [#608](https://github.com/FormidableLabs/urql/pull/608), [#718](https://github.com/FormidableLabs/urql/pull/718), and [#722](https://github.com/FormidableLabs/urql/pull/722)) 11 + - @urql/core@1.11.0 12 + 3 13 ## 0.1.4 4 14 5 15 ### Patch Changes
+2 -2
exchanges/multipart-fetch/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-multipart-fetch", 3 - "version": "0.1.4", 3 + "version": "0.1.5", 4 4 "description": "An exchange that allows regular fetch and will transition to multipart when files are included", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 48 48 "preset": "../../scripts/jest/preset" 49 49 }, 50 50 "dependencies": { 51 - "@urql/core": ">=1.10.8", 51 + "@urql/core": ">=1.11.0", 52 52 "extract-files": "^8.1.0", 53 53 "wonka": "^4.0.9" 54 54 },
+9
exchanges/retry/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 0.1.5 4 + 5 + ### Patch Changes 6 + 7 + - Add debugging events to exchanges that add more detailed information on what is happening 8 + internally, which will be displayed by devtools like the urql [Chrome / Firefox extension](https://github.com/FormidableLabs/urql-devtools), by [@andyrichardson](https://github.com/andyrichardson) (See [#608](https://github.com/FormidableLabs/urql/pull/608)) 9 + - Updated dependencies (See [#608](https://github.com/FormidableLabs/urql/pull/608), [#718](https://github.com/FormidableLabs/urql/pull/718), and [#722](https://github.com/FormidableLabs/urql/pull/722)) 10 + - @urql/core@1.11.0 11 + 3 12 ## 0.1.4 4 13 5 14 ### Patch Changes
+2 -2
exchanges/retry/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-retry", 3 - "version": "0.1.4", 3 + "version": "0.1.5", 4 4 "description": "An exchange for operation retry support in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 59 59 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" 60 60 }, 61 61 "dependencies": { 62 - "@urql/core": ">=1.10.8", 62 + "@urql/core": ">=1.11.0", 63 63 "wonka": "^4.0.9" 64 64 }, 65 65 "publishConfig": {
+12
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 1.11.0 4 + 5 + ### Minor Changes 6 + 7 + - Add debugging events to exchanges that add more detailed information on what is happening 8 + internally, which will be displayed by devtools like the urql [Chrome / Firefox extension](https://github.com/FormidableLabs/urql-devtools), by [@andyrichardson](https://github.com/andyrichardson) (See [#608](https://github.com/FormidableLabs/urql/pull/608)) 9 + - Add @urql/core/internal entrypoint for internally shared utilities and start sharing fetchExchange-related code, by [@kitten](https://github.com/kitten) (See [#722](https://github.com/FormidableLabs/urql/pull/722)) 10 + 11 + ### Patch Changes 12 + 13 + - ⚠️ Fix stringifyVariables breaking on x.toJSON scalars, by [@kitten](https://github.com/kitten) (See [#718](https://github.com/FormidableLabs/urql/pull/718)) 14 + 3 15 ## 1.10.9 4 16 5 17 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "1.10.9", 3 + "version": "1.11.0", 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 + ## 0.3.7 4 + 5 + ### Patch Changes 6 + 7 + - Ensure that the Next.js context is available during all stages of SSR. Previously a missing check in `useMemo` on the server-side caused `clientConfig` from being called repeatedly, and another issue may have caused the client from being serialized to initial props, by [@parkerziegler](https://github.com/parkerziegler) (See [#719](https://github.com/FormidableLabs/urql/pull/719)) 8 + 3 9 ## 0.3.6 4 10 5 11 ### Patch Changes
+1 -1
packages/next-urql/package.json
··· 1 1 { 2 2 "name": "next-urql", 3 - "version": "0.3.6", 3 + "version": "0.3.7", 4 4 "description": "Convenience wrappers for using urql with NextJS.", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",