···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Record a dependency when `__typename` field is read. This removes a prior, outdated exception to avoid confusion when using `cache.resolve(entity, '__typename')` which doesn't cause the cache to record a dependency.
-5
.changeset/hungry-experts-admire.md
···11----
22-'@urql/exchange-graphcache': minor
33----
44-55-Allow scalar values on the parent to be accessed from `parent[info.fieldName]` consistently. Prior to this change `parent[fieldAlias]` would get populated, which wouldn’t always result in a field that’s consistently accessible.
-5
.changeset/many-rabbits-wave.md
···11----
22-'@urql/svelte': patch
33----
44-55-Fix `queryStore` and `subscriptionStore` not subscribing when `writable` calls its `StartStopNotifier`. This caused both stores to be inactive and become unresponsive when they’ve been unsubscribed from once, as they wouldn’t be able to restart their subscriptions to the `Client`.
-5
.changeset/tame-ways-obey.md
···11----
22-'@urql/exchange-graphcache': patch
33----
44-55-Fix cases where `ResolveInfo`’s `parentFieldKey` was incorrectly populated with a key that isn’t a field key (allowing for `cache.resolve(info.parentKey, info.parentFieldKey)` to be possible) but was instead set to `info.parentKey` combined with the field key.
-5
.changeset/thin-badgers-return.md
···11----
22-'@urql/exchange-graphcache': minor
33----
44-55-Allow `cache.resolve` to return `undefined` when a value is not cached to make it easier to cause a cache miss in resolvers. **Reminder:** Returning `undefined` from a resolver means a field is uncached, while returning `null` means that a field’s value is `null` without causing a cache miss.
···11# @urql/exchange-graphcache
2233+## 6.3.0
44+55+### Minor Changes
66+77+- Allow scalar values on the parent to be accessed from `parent[info.fieldName]` consistently. Prior to this change `parent[fieldAlias]` would get populated, which wouldn’t always result in a field that’s consistently accessible
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3336](https://github.com/urql-graphql/urql/pull/3336))
99+- Allow `cache.resolve` to return `undefined` when a value is not cached to make it easier to cause a cache miss in resolvers. **Reminder:** Returning `undefined` from a resolver means a field is uncached, while returning `null` means that a field’s value is `null` without causing a cache miss
1010+ Submitted by [@kitten](https://github.com/kitten) (See [#3333](https://github.com/urql-graphql/urql/pull/3333))
1111+1212+### Patch Changes
1313+1414+- Record a dependency when `__typename` field is read. This removes a prior, outdated exception to avoid confusion when using `cache.resolve(entity, '__typename')` which doesn't cause the cache to record a dependency
1515+ Submitted by [@kitten](https://github.com/kitten) (See [#3335](https://github.com/urql-graphql/urql/pull/3335))
1616+- ⚠️ Fix cases where `ResolveInfo`’s `parentFieldKey` was incorrectly populated with a key that isn’t a field key (allowing for `cache.resolve(info.parentKey, info.parentFieldKey)` to be possible) but was instead set to `info.parentKey` combined with the field key
1717+ Submitted by [@kitten](https://github.com/kitten) (See [#3336](https://github.com/urql-graphql/urql/pull/3336))
1818+319## 6.2.0
420521### Minor Changes
+1-1
exchanges/graphcache/package.json
···11{
22 "name": "@urql/exchange-graphcache",
33- "version": "6.2.0",
33+ "version": "6.3.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
packages/svelte-urql/CHANGELOG.md
···11# @urql/svelte
2233+## 4.0.4
44+55+### Patch Changes
66+77+- ⚠️ Fix `queryStore` and `subscriptionStore` not subscribing when `writable` calls its `StartStopNotifier`. This caused both stores to be inactive and become unresponsive when they’ve been unsubscribed from once, as they wouldn’t be able to restart their subscriptions to the `Client`
88+ Submitted by [@kitten](https://github.com/kitten) (See [#3331](https://github.com/urql-graphql/urql/pull/3331))
99+310## 4.0.3
411512### Patch Changes
+1-1
packages/svelte-urql/package.json
···11{
22 "name": "@urql/svelte",
33- "version": "4.0.3",
33+ "version": "4.0.4",
44 "description": "A highly customizable and versatile GraphQL client for Svelte",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",