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 (#3339)

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
743e5b4b 438d75fe

+16 -20
-5
.changeset/few-garlics-judge.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Reset `partial` result marker when reading from selections when a child value sees a cache miss. This only affects resolvers on child values enabling `info.partial` while a parent may abort early instead.
-5
.changeset/heavy-shirts-smash.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix `@_optional` directive not setting `info.partial = true` on cache miss and fix usage of `info.parentKey` and `info.parentFieldKey` usage in default directives.
-5
.changeset/hot-sloths-look.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Replace implementation for `@_optional` and `@_required` with built-in handling inside cache reads to allow `@_optional` to work for nested selection sets.
+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.3.0", 21 + "@urql/exchange-graphcache": "^6.3.1", 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.3.0", 10 + "@urql/exchange-graphcache": "^6.3.1", 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.3.0", 11 + "@urql/exchange-graphcache": "^6.3.1", 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.3.0", 12 + "@urql/exchange-graphcache": "^6.3.1", 13 13 "graphql": "^16.6.0", 14 14 "react": "^18.2.0", 15 15 "react-dom": "^18.2.0",
+11
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 6.3.1 4 + 5 + ### Patch Changes 6 + 7 + - Reset `partial` result marker when reading from selections when a child value sees a cache miss. This only affects resolvers on child values enabling `info.partial` while a parent may abort early instead 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3340](https://github.com/urql-graphql/urql/pull/3340)) 9 + - ⚠️ Fix `@_optional` directive not setting `info.partial = true` on cache miss and fix usage of `info.parentKey` and `info.parentFieldKey` usage in default directives 10 + Submitted by [@kitten](https://github.com/kitten) (See [#3338](https://github.com/urql-graphql/urql/pull/3338)) 11 + - Replace implementation for `@_optional` and `@_required` with built-in handling inside cache reads to allow `@_optional` to work for nested selection sets 12 + Submitted by [@kitten](https://github.com/kitten) (See [#3341](https://github.com/urql-graphql/urql/pull/3341)) 13 + 3 14 ## 6.3.0 4 15 5 16 ### Minor Changes
+1 -1
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "6.3.0", 3 + "version": "6.3.1", 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",