···11----
22-'@urql/core': patch
33----
44-55-Allow `url` to be a plain, non-URL pathname (i.e. `/api/graphql`) to be used with `preferGetMethod`
-5
.changeset/fluffy-poets-protect.md
···11----
22-'@urql/core': patch
33----
44-55-Correctly support the `Headers` class being used in `fetchOptions`
-5
.changeset/happy-peas-sin.md
···11----
22-'@urql/exchange-graphcache': minor
33----
44-55-Allow `@_optional` and `@_required` to be placed on fragment definitions and inline fragments
-5
.changeset/seven-toys-applaud.md
···11----
22-'@urql/svelte': minor
33----
44-55-Add back the `reexecute` function
-5
.changeset/sixty-needles-exercise.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Prevent `@defer` from being applied in child field selections. Previously, a child field (i.e. a nested field) under a `@defer`-ed fragment would also become optional, which was based on a prior version of the DeferStream spec which didn't require deferred fields to be delivered as a group.
-5
.changeset/small-cheetahs-jam.md
···11----
22-'@urql/core': minor
33----
44-55-Support [Apollo Federation's format](https://www.apollographql.com/docs/router/executing-operations/subscription-multipart-protocol/) for subscription results in `multipart/mixed` responses (result properties essentially are namespaced on a `payload` key)
-5
.changeset/tall-buttons-fetch.md
···11----
22-'@urql/exchange-graphcache': minor
33----
44-55-Track list of entity keys for a given type name. This enables enumerating and invalidating all entities of a given type within the normalized cache.
-5
.changeset/two-bananas-grow.md
···11----
22-'@urql/core': minor
33----
44-55-Add support for sending persisted documents. Any `DocumentNode` with no/empty definitions and a `documentId` property is considered a persisted document. When this is detected a `documentId` parameter rather than a `query` string is sent to the GraphQL API, similar to Automatic Persisted Queries (APQs). However, APQs are only supported via `@urql/exchange-persisted`, while support for `documentId` is now built-in.
-5
.changeset/wicked-kids-joke.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Fix `store.resolve()` returning the exact link array that’s used by the cache. This can lead to subtle bugs when a user mutates the result returned by `cache.resolve()`, since this directly mutates what’s in the cache at that layer.
···11# @urql/exchange-graphcache
2233+## 6.5.0
44+55+### Minor Changes
66+77+- Allow `@_optional` and `@_required` to be placed on fragment definitions and inline fragments
88+ Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3502](https://github.com/urql-graphql/urql/pull/3502))
99+- Track list of entity keys for a given type name. This enables enumerating and invalidating all entities of a given type within the normalized cache
1010+ Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3501](https://github.com/urql-graphql/urql/pull/3501))
1111+1212+### Patch Changes
1313+1414+- Prevent `@defer` from being applied in child field selections. Previously, a child field (i.e. a nested field) under a `@defer`-ed fragment would also become optional, which was based on a prior version of the DeferStream spec which didn't require deferred fields to be delivered as a group
1515+ Submitted by [@kitten](https://github.com/kitten) (See [#3517](https://github.com/urql-graphql/urql/pull/3517))
1616+- ⚠️ Fix `store.resolve()` returning the exact link array that’s used by the cache. This can lead to subtle bugs when a user mutates the result returned by `cache.resolve()`, since this directly mutates what’s in the cache at that layer
1717+ Submitted by [@kitten](https://github.com/kitten) (See [#3516](https://github.com/urql-graphql/urql/pull/3516))
1818+- Updated dependencies (See [#3514](https://github.com/urql-graphql/urql/pull/3514), [#3505](https://github.com/urql-graphql/urql/pull/3505), [#3499](https://github.com/urql-graphql/urql/pull/3499), and [#3515](https://github.com/urql-graphql/urql/pull/3515))
1919+ - @urql/core@4.3.0
2020+321## 6.4.1
422523### Patch Changes
···11# @urql/core
2233+## 4.3.0
44+55+### Minor Changes
66+77+- Support [Apollo Federation's format](https://www.apollographql.com/docs/router/executing-operations/subscription-multipart-protocol/) for subscription results in `multipart/mixed` responses (result properties essentially are namespaced on a `payload` key)
88+ Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3499](https://github.com/urql-graphql/urql/pull/3499))
99+- Add support for sending persisted documents. Any `DocumentNode` with no/empty definitions and a `documentId` property is considered a persisted document. When this is detected a `documentId` parameter rather than a `query` string is sent to the GraphQL API, similar to Automatic Persisted Queries (APQs). However, APQs are only supported via `@urql/exchange-persisted`, while support for `documentId` is now built-in
1010+ Submitted by [@kitten](https://github.com/kitten) (See [#3515](https://github.com/urql-graphql/urql/pull/3515))
1111+1212+### Patch Changes
1313+1414+- Allow `url` to be a plain, non-URL pathname (i.e. `/api/graphql`) to be used with `preferGetMethod`
1515+ Submitted by [@akrantz01](https://github.com/akrantz01) (See [#3514](https://github.com/urql-graphql/urql/pull/3514))
1616+- Correctly support the `Headers` class being used in `fetchOptions`
1717+ Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3505](https://github.com/urql-graphql/urql/pull/3505))
1818+319## 4.2.3
420521### Patch Changes
+1-1
packages/core/package.json
···11{
22 "name": "@urql/core",
33- "version": "4.2.3",
33+ "version": "4.3.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/",
···11# @urql/svelte
2233+## 4.1.0
44+55+### Minor Changes
66+77+- Add back the `reexecute` function
88+ Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3472](https://github.com/urql-graphql/urql/pull/3472))
99+1010+### Patch Changes
1111+1212+- Updated dependencies (See [#3514](https://github.com/urql-graphql/urql/pull/3514), [#3505](https://github.com/urql-graphql/urql/pull/3505), [#3499](https://github.com/urql-graphql/urql/pull/3499), and [#3515](https://github.com/urql-graphql/urql/pull/3515))
1313+ - @urql/core@4.3.0
1414+315## 4.0.4
416517### Patch Changes