···11----
22-'@urql/preact': patch
33----
44-55-Switch over to using @urql/core package
66-See: [`75323c0`](https://github.com/FormidableLabs/urql/commit/75323c0)
-5
.changeset/famous-ducks-smash.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Update the `updater` function type of `cache.updateQuery` to have a return type of `DataFields` so that `__typename` does not need to be defined.
-6
.changeset/famous-starfishes-confess.md
···11----
22-'@urql/exchange-suspense': patch
33----
44-55-Move @urql/exchange-suspense to the monorepo and switch it over to @urql/core
66-See: [`83325a9`](https://github.com/FormidableLabs/urql/commit/83325a9)
-6
.changeset/fresh-owls-hide.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Fix updates not being triggered when optimistic updates diverge from the actual result.
66-See: [#160](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/160)
···11----
22-'urql': patch
33----
44-55-Fix more concurrent-mode and strict-mode edge cases and bugs by switching to useSubscription.
66-See: [#514](https://github.com/FormidableLabs/urql/pull/514)
-7
.changeset/large-baboons-train.md
···11----
22-'urql': patch
33----
44-55-Fix client-side suspense support (as minimally as possible) by altering
66-the useBehaviourSubject behaviour.
77-See: [#512](https://github.com/FormidableLabs/urql/pull/521)
-7
.changeset/modern-queens-run.md
···11----
22-'@urql/core': minor
33----
44-55-Adds the `maskTypename` export to urql-core, this deeply masks typenames from the given payload.
66-Masking `__typename` properties is also available as a `maskTypename` option on the `Client`. Setting this to true will
77-strip typenames from results.
-6
.changeset/sour-actors-sniff.md
···11----
22-'@urql/core': minor
33----
44-55-Add support for sending queries using GET instead of POST method
66-See: [#519](https://github.com/FormidableLabs/urql/pull/519)
-6
.changeset/tame-pumas-peel.md
···11----
22-'@urql/core': patch
33----
44-55-Fix ssrExchange not serialising networkError on CombinedErrors correctly.
66-See: [#515](https://github.com/FormidableLabs/urql/pull/515)
-6
.changeset/thin-lies-brush.md
···11----
22-'@urql/core': patch
33----
44-55-Add explicit error when creating Client without a URL in development.
66-See: [#512](https://github.com/FormidableLabs/urql/pull/512)
-7
.changeset/weak-beds-heal.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Ensure that pagination helpers don't confuse pages that have less params with a
66-query that has more params.
77-See: [#156](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/156)
-6
.changeset/wicked-badgers-fetch.md
···11----
22-'@urql/core': minor
33----
44-55-Add client.readQuery method
66-See: [#518](https://github.com/FormidableLabs/urql/pull/518)
+12
exchanges/graphcache/CHANGELOG.md
···11# @urql/exchange-graphcache
2233+## 2.1.1
44+55+### Patch Changes
66+77+- Update the `updater` function type of `cache.updateQuery` to have a return type of `DataFields` so that `__typename` does not need to be defined, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#538](https://github.com/FormidableLabs/urql/pull/538))
88+- ⚠️ Fix updates not being triggered when optimistic updates diverge from the actual result. (See [#160](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/160))
99+- Refactor away SchemaPredicates helper to reduce bundlesize. (See [#161](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/161))
1010+- Ensure that pagination helpers don't confuse pages that have less params with a
1111+ query that has more params. (See [#156](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/156))
1212+- Updated dependencies (See [#533](https://github.com/FormidableLabs/urql/pull/533), [#519](https://github.com/FormidableLabs/urql/pull/519), [#515](https://github.com/FormidableLabs/urql/pull/515), [#512](https://github.com/FormidableLabs/urql/pull/512), and [#518](https://github.com/FormidableLabs/urql/pull/518))
1313+ - @urql/core@1.9.0
1414+315## 2.1.0
416517This release adds support for cache persistence which is bringing us one step closer to
···11# Changelog
2233+## 1.8.3
44+55+### Patch Changes
66+77+- Move @urql/exchange-suspense to the monorepo and switch it over to @urql/core (See [`83325a9`](https://github.com/FormidableLabs/urql/commit/83325a9))
88+- Updated dependencies (See [#533](https://github.com/FormidableLabs/urql/pull/533), [#519](https://github.com/FormidableLabs/urql/pull/519), [#515](https://github.com/FormidableLabs/urql/pull/515), [#512](https://github.com/FormidableLabs/urql/pull/512), and [#518](https://github.com/FormidableLabs/urql/pull/518))
99+ - @urql/core@1.9.0
1010+311## v0.1.0
412513**Initial Release**
···11# @urql/core
22+33+## 1.9.0
44+55+### Minor Changes
66+77+- Adds the `maskTypename` export to urql-core, this deeply masks typenames from the given payload.
88+ Masking `__typename` properties is also available as a `maskTypename` option on the `Client`. Setting this to true will
99+ strip typenames from results, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#533](https://github.com/FormidableLabs/urql/pull/533))
1010+- Add support for sending queries using GET instead of POST method (See [#519](https://github.com/FormidableLabs/urql/pull/519))
1111+- Add client.readQuery method (See [#518](https://github.com/FormidableLabs/urql/pull/518))
1212+1313+### Patch Changes
1414+1515+- ⚠️ Fix ssrExchange not serialising networkError on CombinedErrors correctly. (See [#515](https://github.com/FormidableLabs/urql/pull/515))
1616+- Add explicit error when creating Client without a URL in development. (See [#512](https://github.com/FormidableLabs/urql/pull/512))
+1-1
packages/core/package.json
···11{
22 "name": "@urql/core",
33- "version": "1.8.2",
33+ "version": "1.9.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/",
+8
packages/preact-urql/CHANGELOG.md
···11# @urql/preact
2233+## 1.1.1
44+55+### Patch Changes
66+77+- Switch over to using @urql/core package (See [`75323c0`](https://github.com/FormidableLabs/urql/commit/75323c0))
88+- Updated dependencies (See [#533](https://github.com/FormidableLabs/urql/pull/533), [#519](https://github.com/FormidableLabs/urql/pull/519), [#515](https://github.com/FormidableLabs/urql/pull/515), [#512](https://github.com/FormidableLabs/urql/pull/512), and [#518](https://github.com/FormidableLabs/urql/pull/518))
99+ - @urql/core@1.9.0
1010+311## 1.1.0
412513- Update urql to 1.8.0
···11# urql
2233+## 1.9.0
44+55+### Patch Changes
66+77+- ⚠️ Fix more concurrent-mode and strict-mode edge cases and bugs by switching to useSubscription. (See [#514](https://github.com/FormidableLabs/urql/pull/514))
88+- ⚠️ Fix client-side suspense support (as minimally as possible) by altering
99+ the useBehaviourSubject behaviour. (See [#512](https://github.com/FormidableLabs/urql/pull/521))
1010+- Updated dependencies (See [#533](https://github.com/FormidableLabs/urql/pull/533), [#519](https://github.com/FormidableLabs/urql/pull/519), [#515](https://github.com/FormidableLabs/urql/pull/515), [#512](https://github.com/FormidableLabs/urql/pull/512), and [#518](https://github.com/FormidableLabs/urql/pull/518))
1111+ - @urql/core@1.9.0
1212+313## 1.8.2
414515This patch fixes client-side suspense. While we wouldn't recommend its use