Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Version Packages (#3332)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
abf77f47 9fad2dc6

+30 -32
-5
.changeset/cyan-melons-drive.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - 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
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - 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
··· 1 - --- 2 - '@urql/svelte': patch 3 - --- 4 - 5 - 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
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - 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
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - 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.
+1 -1
examples/with-defer-stream-directives/package.json
··· 18 18 "dependencies": { 19 19 "@graphql-yoga/plugin-defer-stream": "^1.7.1", 20 20 "@urql/core": "^4.1.0", 21 - "@urql/exchange-graphcache": "^6.2.0", 21 + "@urql/exchange-graphcache": "^6.3.0", 22 22 "graphql": "17.0.0-alpha.2", 23 23 "react": "^18.2.0", 24 24 "react-dom": "^18.2.0",
+1 -1
examples/with-graphcache-pagination/package.json
··· 7 7 }, 8 8 "dependencies": { 9 9 "@urql/core": "^4.1.0", 10 - "@urql/exchange-graphcache": "^6.2.0", 10 + "@urql/exchange-graphcache": "^6.3.0", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0",
+1 -1
examples/with-graphcache-updates/package.json
··· 8 8 "dependencies": { 9 9 "@urql/core": "^4.1.0", 10 10 "@urql/exchange-auth": "^2.1.5", 11 - "@urql/exchange-graphcache": "^6.2.0", 11 + "@urql/exchange-graphcache": "^6.3.0", 12 12 "graphql": "^16.6.0", 13 13 "react": "^18.2.0", 14 14 "react-dom": "^18.2.0",
+1 -1
examples/with-subscriptions-via-fetch/package.json
··· 9 9 }, 10 10 "dependencies": { 11 11 "@urql/core": "^4.1.0", 12 - "@urql/exchange-graphcache": "^6.2.0", 12 + "@urql/exchange-graphcache": "^6.3.0", 13 13 "graphql": "^16.6.0", 14 14 "react": "^18.2.0", 15 15 "react-dom": "^18.2.0",
+1 -1
examples/with-svelte/package.json
··· 9 9 }, 10 10 "dependencies": { 11 11 "@urql/core": "^4.1.0", 12 - "@urql/svelte": "^4.0.3", 12 + "@urql/svelte": "^4.0.4", 13 13 "graphql": "^16.6.0", 14 14 "svelte": "^4.0.5" 15 15 },
+16
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 6.3.0 4 + 5 + ### Minor Changes 6 + 7 + - 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 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3336](https://github.com/urql-graphql/urql/pull/3336)) 9 + - 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 10 + Submitted by [@kitten](https://github.com/kitten) (See [#3333](https://github.com/urql-graphql/urql/pull/3333)) 11 + 12 + ### Patch Changes 13 + 14 + - 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 15 + Submitted by [@kitten](https://github.com/kitten) (See [#3335](https://github.com/urql-graphql/urql/pull/3335)) 16 + - ⚠️ 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 17 + Submitted by [@kitten](https://github.com/kitten) (See [#3336](https://github.com/urql-graphql/urql/pull/3336)) 18 + 3 19 ## 6.2.0 4 20 5 21 ### Minor Changes
+1 -1
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "6.2.0", 3 + "version": "6.3.0", 4 4 "description": "A normalized and configurable cache exchange for urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/graphcache",
+7
packages/svelte-urql/CHANGELOG.md
··· 1 1 # @urql/svelte 2 2 3 + ## 4.0.4 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ 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` 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3331](https://github.com/urql-graphql/urql/pull/3331)) 9 + 3 10 ## 4.0.3 4 11 5 12 ### Patch Changes
+1 -1
packages/svelte-urql/package.json
··· 1 1 { 2 2 "name": "@urql/svelte", 3 - "version": "4.0.3", 3 + "version": "4.0.4", 4 4 "description": "A highly customizable and versatile GraphQL client for Svelte", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",