···11----
22-'@urql/exchange-graphcache': patch
33-'@urql/exchange-multipart-fetch': patch
44-'@urql/exchange-retry': patch
55-'@urql/core': minor
66----
77-88-Add debugging events to exchanges that add more detailed information on what is happening
99-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
···11----
22-'next-urql': patch
33----
44-55-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
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Fix persistence using special tab character in serialized keys and add sanitization to persistence key serializer.
-5
.changeset/stale-onions-check.md
···11----
22-'@urql/core': patch
33----
44-55-Fix stringifyVariables breaking on x.toJSON scalars.
-6
.changeset/wet-rabbits-tie.md
···11----
22-'@urql/core': minor
33-'@urql/exchange-multipart-fetch': patch
44----
55-66-Add @urql/core/internal entrypoint for internally shared utilities and start sharing fetchExchange-related code.
+10
exchanges/graphcache/CHANGELOG.md
···11# @urql/exchange-graphcache
2233+## 2.3.4
44+55+### Patch Changes
66+77+- Add debugging events to exchanges that add more detailed information on what is happening
88+ 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))
99+- ⚠️ 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))
1010+- 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))
1111+ - @urql/core@1.11.0
1212+313## 2.3.3
414515### Patch Changes
···11# @urql/exchange-multipart-fetch
2233+## 0.1.5
44+55+### Patch Changes
66+77+- Add debugging events to exchanges that add more detailed information on what is happening
88+ 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))
99+- 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))
1010+- 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))
1111+ - @urql/core@1.11.0
1212+313## 0.1.4
414515### Patch Changes
+2-2
exchanges/multipart-fetch/package.json
···11{
22 "name": "@urql/exchange-multipart-fetch",
33- "version": "0.1.4",
33+ "version": "0.1.5",
44 "description": "An exchange that allows regular fetch and will transition to multipart when files are included",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
···4848 "preset": "../../scripts/jest/preset"
4949 },
5050 "dependencies": {
5151- "@urql/core": ">=1.10.8",
5151+ "@urql/core": ">=1.11.0",
5252 "extract-files": "^8.1.0",
5353 "wonka": "^4.0.9"
5454 },
+9
exchanges/retry/CHANGELOG.md
···11# Changelog
2233+## 0.1.5
44+55+### Patch Changes
66+77+- Add debugging events to exchanges that add more detailed information on what is happening
88+ 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))
99+- 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))
1010+ - @urql/core@1.11.0
1111+312## 0.1.4
413514### Patch Changes
···11# @urql/core
2233+## 1.11.0
44+55+### Minor Changes
66+77+- Add debugging events to exchanges that add more detailed information on what is happening
88+ 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))
99+- 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))
1010+1111+### Patch Changes
1212+1313+- ⚠️ Fix stringifyVariables breaking on x.toJSON scalars, by [@kitten](https://github.com/kitten) (See [#718](https://github.com/FormidableLabs/urql/pull/718))
1414+315## 1.10.9
416517### Patch Changes
+1-1
packages/core/package.json
···11{
22 "name": "@urql/core",
33- "version": "1.10.9",
33+ "version": "1.11.0",
44 "description": "The shared core for the highly customizable and versatile GraphQL client",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
+6
packages/next-urql/CHANGELOG.md
···11# Changelog
2233+## 0.3.7
44+55+### Patch Changes
66+77+- 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))
88+39## 0.3.6
410511### Patch Changes
+1-1
packages/next-urql/package.json
···11{
22 "name": "next-urql",
33- "version": "0.3.6",
33+ "version": "0.3.7",
44 "description": "Convenience wrappers for using urql with NextJS.",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",