···11----
22-'next-urql': patch
33----
44-55-Change import for `createClient` to `@urql/core`, which helps Next not depend on `urql` and hence not cause `createContext` to be called when the import is treeshaken away.
-5
.changeset/cuddly-needles-work.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Solve issue where partial data could cause loops between related queries
-7
.changeset/fair-turkeys-bow.md
···11----
22-'@urql/svelte': patch
33-'@urql/vue': patch
44-'@urql/core': patch
55----
66-77-Move remaining `Variables` generics over from `object` default to `Variables extends AnyVariables = AnyVariables`. This has been introduced previously in [#2607](https://github.com/urql-graphql/urql/pull/2607) but some missing ports have been missed due to TypeScript not catching them previously. Depending on your TypeScript version the `object` default is incompatible with `AnyVariables`.
-5
.changeset/healthy-hornets-warn.md
···11----
22-'@urql/exchange-execute': patch
33----
44-55-End iterator when teardown functions runs, previously it waited for one extra call to next, then ended the iterator
-5
.changeset/olive-rings-yawn.md
···11----
22-'@urql/exchange-execute': minor
33----
44-55-The `context` option, which may be set to a context value or a function returning a context, can now return a `Promise` and will be correctly resolved and awaited.
-5
.changeset/orange-squids-care.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Add skipping of garbage collection runs when the cache is waiting for optimistic, deferred or other results in layers. This means that we only take an opportunity to run garbage collection after results have settled and are hence decreasing the chance of hogging the event loop when a run isn't needed.
-5
.changeset/poor-items-shake.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Fix a deadlock condition in Graphcache's layers, which is caused by subscriptions (or other deferred layers) starting before one-off mutation layers. This causes the mutation to not be completed, which keeps its data preferred above the deferred layer. That in turn means that layers stop squashing, which causes new results to be missing indefinitely, when they overlap.
-8
.changeset/quiet-mugs-travel.md
···11----
22-'@urql/core': patch
33----
44-55-Reuse output of `stringifyDocument` in place of repeated `print`. This will mean that we now prevent calling `print` repeatedly for identical operations and are instead only reusing the result once.
66-77-This change has a subtle consequence of our internals. Operation keys will change due to this
88-refactor and we will no longer sanitise strip newlines from queries that `@urql/core` has printed.
-5
.changeset/swift-fireants-itch.md
···11----
22-'@urql/core': patch
33----
44-55-Update to `wonka@^6.1.2` to fix memory leak in `fetch` caused in Node.js by a lack of clean up after initiating a request.
-5
.changeset/violet-eyes-fetch.md
···11----
22-'@urql/core': minor
33----
44-55-Implement `mapExchange`, which replaces `errorExchange`, allowing `onOperation` and `onResult` to be called to either react to or replace operations and results. For backwards compatibility, this exchange is also exported as `errorExchange` and supports `onError`.
+12
exchanges/execute/CHANGELOG.md
···11# Changelog
2233+## 2.1.0
44+55+### Minor Changes
66+77+- The `context` option, which may be set to a context value or a function returning a context, can now return a `Promise` and will be correctly resolved and awaited, by [@YutaUra](https://github.com/YutaUra) (See [#2806](https://github.com/urql-graphql/urql/pull/2806))
88+99+### Patch Changes
1010+1111+- End iterator when teardown functions runs, previously it waited for one extra call to next, then ended the iterator, by [@danielkaxis](https://github.com/danielkaxis) (See [#2803](https://github.com/urql-graphql/urql/pull/2803))
1212+- Updated dependencies (See [#2843](https://github.com/urql-graphql/urql/pull/2843), [#2847](https://github.com/urql-graphql/urql/pull/2847), [#2850](https://github.com/urql-graphql/urql/pull/2850), and [#2846](https://github.com/urql-graphql/urql/pull/2846))
1313+ - @urql/core@3.1.0
1414+315## 2.0.0
416517### Major Changes
···11# @urql/exchange-graphcache
2233+## 5.0.6
44+55+### Patch Changes
66+77+- Solve issue where partial data could cause loops between related queries, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2831](https://github.com/urql-graphql/urql/pull/2831))
88+- Add skipping of garbage collection runs when the cache is waiting for optimistic, deferred or other results in layers. This means that we only take an opportunity to run garbage collection after results have settled and are hence decreasing the chance of hogging the event loop when a run isn't needed, by [@kitten](https://github.com/kitten) (See [#2862](https://github.com/urql-graphql/urql/pull/2862))
99+- ⚠️ Fix a deadlock condition in Graphcache's layers, which is caused by subscriptions (or other deferred layers) starting before one-off mutation layers. This causes the mutation to not be completed, which keeps its data preferred above the deferred layer. That in turn means that layers stop squashing, which causes new results to be missing indefinitely, when they overlap, by [@kitten](https://github.com/kitten) (See [#2861](https://github.com/urql-graphql/urql/pull/2861))
1010+- Updated dependencies (See [#2843](https://github.com/urql-graphql/urql/pull/2843), [#2847](https://github.com/urql-graphql/urql/pull/2847), [#2850](https://github.com/urql-graphql/urql/pull/2850), and [#2846](https://github.com/urql-graphql/urql/pull/2846))
1111+ - @urql/core@3.1.0
1212+313## 5.0.5
414515### Patch Changes
···11# @urql/core
2233+## 3.1.0
44+55+### Minor Changes
66+77+- Implement `mapExchange`, which replaces `errorExchange`, allowing `onOperation` and `onResult` to be called to either react to or replace operations and results. For backwards compatibility, this exchange is also exported as `errorExchange` and supports `onError`, by [@kitten](https://github.com/kitten) (See [#2846](https://github.com/urql-graphql/urql/pull/2846))
88+99+### Patch Changes
1010+1111+- Move remaining `Variables` generics over from `object` default to `Variables extends AnyVariables = AnyVariables`. This has been introduced previously in [#2607](https://github.com/urql-graphql/urql/pull/2607) but some missing ports have been missed due to TypeScript not catching them previously. Depending on your TypeScript version the `object` default is incompatible with `AnyVariables`, by [@kitten](https://github.com/kitten) (See [#2843](https://github.com/urql-graphql/urql/pull/2843))
1212+- Reuse output of `stringifyDocument` in place of repeated `print`. This will mean that we now prevent calling `print` repeatedly for identical operations and are instead only reusing the result once.
1313+ This change has a subtle consequence of our internals. Operation keys will change due to this
1414+ refactor and we will no longer sanitise strip newlines from queries that `@urql/core` has printed, by [@kitten](https://github.com/kitten) (See [#2847](https://github.com/urql-graphql/urql/pull/2847))
1515+- Update to `wonka@^6.1.2` to fix memory leak in `fetch` caused in Node.js by a lack of clean up after initiating a request, by [@kitten](https://github.com/kitten) (See [#2850](https://github.com/urql-graphql/urql/pull/2850))
1616+317## 3.0.5
418519### Patch Changes
+1-1
packages/core/package.json
···11{
22 "name": "@urql/core",
33- "version": "3.0.5",
33+ "version": "3.1.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+## 4.0.1
44+55+### Patch Changes
66+77+- Change import for `createClient` to `@urql/core`, which helps Next not depend on `urql` and hence not cause `createContext` to be called when the import is treeshaken away, by [@SleeplessOne1917](https://github.com/SleeplessOne1917) (See [#2833](https://github.com/urql-graphql/urql/pull/2833))
88+39## 4.0.0
410511### Major Changes
+1-1
packages/next-urql/package.json
···11{
22 "name": "next-urql",
33- "version": "4.0.0",
33+ "version": "4.0.1",
44 "description": "Convenience wrappers for using urql with NextJS.",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
+8
packages/svelte-urql/CHANGELOG.md
···11# @urql/svelte
2233+## 3.0.2
44+55+### Patch Changes
66+77+- Move remaining `Variables` generics over from `object` default to `Variables extends AnyVariables = AnyVariables`. This has been introduced previously in [#2607](https://github.com/urql-graphql/urql/pull/2607) but some missing ports have been missed due to TypeScript not catching them previously. Depending on your TypeScript version the `object` default is incompatible with `AnyVariables`, by [@kitten](https://github.com/kitten) (See [#2843](https://github.com/urql-graphql/urql/pull/2843))
88+- Updated dependencies (See [#2843](https://github.com/urql-graphql/urql/pull/2843), [#2847](https://github.com/urql-graphql/urql/pull/2847), [#2850](https://github.com/urql-graphql/urql/pull/2850), and [#2846](https://github.com/urql-graphql/urql/pull/2846))
99+ - @urql/core@3.1.0
1010+311## 3.0.1
412513### Patch Changes
···11# @urql/vue
2233+## 1.0.3
44+55+### Patch Changes
66+77+- Move remaining `Variables` generics over from `object` default to `Variables extends AnyVariables = AnyVariables`. This has been introduced previously in [#2607](https://github.com/urql-graphql/urql/pull/2607) but some missing ports have been missed due to TypeScript not catching them previously. Depending on your TypeScript version the `object` default is incompatible with `AnyVariables`, by [@kitten](https://github.com/kitten) (See [#2843](https://github.com/urql-graphql/urql/pull/2843))
88+- Updated dependencies (See [#2843](https://github.com/urql-graphql/urql/pull/2843), [#2847](https://github.com/urql-graphql/urql/pull/2847), [#2850](https://github.com/urql-graphql/urql/pull/2850), and [#2846](https://github.com/urql-graphql/urql/pull/2846))
99+ - @urql/core@3.1.0
1010+311## 1.0.2
412513### Patch Changes