···11----
22-'@urql/core': patch
33----
44-55-Respect `additionalTypenames` on subscriptions and re-execute queries for them as well, as one would intuitively expect.
···11----
22-'@urql/exchange-retry': minor
33----
44-55-Reset `retryExchange`’s previous attempts and delay if an operation succeeds. This prevents the exchange from keeping its old retry count and delay if the operation delivered a result in the meantime. This is important for it to help recover from failing subscriptions.
-5
.changeset/dull-fishes-push.md
···11----
22-'@urql/exchange-graphcache': minor
33----
44-55-Add `globalIDs` configuration option to omit typenames in cache keys.
-5
.changeset/green-geese-switch.md
···11----
22-'@urql/core': patch
33----
44-55-Don't allow `isSubscriptionOperation` option in `subscriptionExchange` to include `teardown` operations, to avoid confusion.
-5
.changeset/hungry-cars-hide.md
···11----
22-'@urql/vue': patch
33----
44-55-Prevent multiple operations being executed in a row when multiple inputs change simultaneously (e.g. `isPaused` and query inputs)
-5
.changeset/hungry-zebras-count.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Prevent `offlineExchange` from issuing duplicate operations.
-5
.changeset/spicy-comics-shave.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Fix reference equality not being preserved. This is a fix on top of [#3165](https://github.com/urql-graphql/urql/pull/3165), and was previously not addressed to avoid having to test for corner cases that are hard to cover. If you experience issues with this fix, please let us know.
-5
.changeset/wet-crabs-dream.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Retry operations against offline cache and stabilize timing of flushing failed operations queue after rehydrating the storage data.
···11# Changelog
2233+## 2.1.3
44+55+### Patch Changes
66+77+- Update build process to generate correct source maps
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201))
99+310## 2.1.2
411512### Patch Changes
+1-1
exchanges/auth/package.json
···11{
22 "name": "@urql/exchange-auth",
33- "version": "2.1.2",
33+ "version": "2.1.3",
44 "description": "An exchange for managing authentication and token refresh in urql",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
+7
exchanges/execute/CHANGELOG.md
···11# Changelog
2233+## 2.2.2
44+55+### Patch Changes
66+77+- Update build process to generate correct source maps
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201))
99+310## 2.2.1
411512### Patch Changes
+1-1
exchanges/execute/package.json
···11{
22 "name": "@urql/exchange-execute",
33- "version": "2.2.1",
33+ "version": "2.2.2",
44 "description": "An exchange for executing queries against a local schema in urql",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
+18
exchanges/graphcache/CHANGELOG.md
···11# @urql/exchange-graphcache
2233+## 6.1.0
44+55+### Minor Changes
66+77+- Add `globalIDs` configuration option to omit typenames in cache keys
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3224](https://github.com/urql-graphql/urql/pull/3224))
99+1010+### Patch Changes
1111+1212+- Update build process to generate correct source maps
1313+ Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201))
1414+- Prevent `offlineExchange` from issuing duplicate operations
1515+ Submitted by [@kitten](https://github.com/kitten) (See [#3200](https://github.com/urql-graphql/urql/pull/3200))
1616+- ⚠️ Fix reference equality not being preserved. This is a fix on top of [#3165](https://github.com/urql-graphql/urql/pull/3165), and was previously not addressed to avoid having to test for corner cases that are hard to cover. If you experience issues with this fix, please let us know
1717+ Submitted by [@kitten](https://github.com/kitten) (See [#3228](https://github.com/urql-graphql/urql/pull/3228))
1818+- Retry operations against offline cache and stabilize timing of flushing failed operations queue after rehydrating the storage data
1919+ Submitted by [@kitten](https://github.com/kitten) (See [#3196](https://github.com/urql-graphql/urql/pull/3196))
2020+321## 6.0.4
422523### Patch Changes
+1-1
exchanges/graphcache/package.json
···11{
22 "name": "@urql/exchange-graphcache",
33- "version": "6.0.4",
33+ "version": "6.1.0",
44 "description": "A normalized and configurable cache exchange for urql",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/graphcache",
+7
exchanges/retry/CHANGELOG.md
···11# Changelog
2233+## 1.2.0
44+55+### Minor Changes
66+77+- Reset `retryExchange`’s previous attempts and delay if an operation succeeds. This prevents the exchange from keeping its old retry count and delay if the operation delivered a result in the meantime. This is important for it to help recover from failing subscriptions
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3229](https://github.com/urql-graphql/urql/pull/3229))
99+310## 1.1.1
411512### Patch Changes
+1-1
exchanges/retry/package.json
···11{
22 "name": "@urql/exchange-retry",
33- "version": "1.1.1",
33+ "version": "1.2.0",
44 "description": "An exchange for operation retry support in urql",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
+11
packages/core/CHANGELOG.md
···11# @urql/core
2233+## 4.0.8
44+55+### Patch Changes
66+77+- Respect `additionalTypenames` on subscriptions and re-execute queries for them as well, as one would intuitively expect
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3230](https://github.com/urql-graphql/urql/pull/3230))
99+- Update build process to generate correct source maps
1010+ Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201))
1111+- Don't allow `isSubscriptionOperation` option in `subscriptionExchange` to include `teardown` operations, to avoid confusion
1212+ Submitted by [@kitten](https://github.com/kitten) (See [#3206](https://github.com/urql-graphql/urql/pull/3206))
1313+314## 4.0.7
415516### Patch Changes
+1-1
packages/core/package.json
···11{
22 "name": "@urql/core",
33- "version": "4.0.7",
33+ "version": "4.0.8",
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/",
+7
packages/preact-urql/CHANGELOG.md
···11# @urql/preact
2233+## 4.0.2
44+55+### Patch Changes
66+77+- Update build process to generate correct source maps
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201))
99+310## 4.0.1
411512### Patch Changes
+1-1
packages/preact-urql/package.json
···11{
22 "name": "@urql/preact",
33- "version": "4.0.1",
33+ "version": "4.0.2",
44 "description": "A highly customizable and versatile GraphQL client for Preact",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
+7
packages/react-urql/CHANGELOG.md
···11# urql
2233+## 4.0.3
44+55+### Patch Changes
66+77+- Update build process to generate correct source maps
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201))
99+310## 4.0.2
411512### Patch Changes
+1-1
packages/react-urql/package.json
···11{
22 "name": "urql",
33- "version": "4.0.2",
33+ "version": "4.0.3",
44 "description": "A highly customizable and versatile GraphQL client for React",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
+7
packages/svelte-urql/CHANGELOG.md
···11# @urql/svelte
2233+## 4.0.2
44+55+### Patch Changes
66+77+- Update build process to generate correct source maps
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201))
99+310## 4.0.1
411512### Patch Changes
+1-1
packages/svelte-urql/package.json
···11{
22 "name": "@urql/svelte",
33- "version": "4.0.1",
33+ "version": "4.0.2",
44 "description": "A highly customizable and versatile GraphQL client for Svelte",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
+9
packages/vue-urql/CHANGELOG.md
···11# @urql/vue
2233+## 1.1.2
44+55+### Patch Changes
66+77+- Update build process to generate correct source maps
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201))
99+- Prevent multiple operations being executed in a row when multiple inputs change simultaneously (e.g. `isPaused` and query inputs)
1010+ Submitted by [@kitten](https://github.com/kitten) (See [#3231](https://github.com/urql-graphql/urql/pull/3231))
1111+312## 1.1.1
413514### Patch Changes
+1-1
packages/vue-urql/package.json
···11{
22 "name": "@urql/vue",
33- "version": "1.1.1",
33+ "version": "1.1.2",
44 "description": "A highly customizable and versatile GraphQL client for vue",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",