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

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
f39165d8 0964a014

+25 -27
-5
.changeset/late-plants-poke.md
··· 1 - --- 2 - '@urql/exchange-persisted': patch 3 - --- 4 - 5 - Warn about cached persisted-miss results in development, when a `persistedExchange()` sees a persisted-miss error for a result that's already seen a persisted-miss error (i.e. two misses). This shouldn't happen unless something is caching persisted errors and we should warn about this appropriately.
-5
.changeset/mean-onions-share.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Allow the user to debug cache-misses by means of the new `logger` interface on the `cacheExchange`. A field miss will dispatch a `debug` log when it's not marked with `@_optional` or when it's non-nullable in the `schema`.
-5
.changeset/stale-eagles-hide.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Add `onCacheHydrated` as an option for the `StorageAdapter`
-5
.changeset/tender-files-tie.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Add optional `logger` to the options, this allows you to filter out warnings or disable them all together
+1 -1
examples/with-apq/package.json
··· 7 7 }, 8 8 "dependencies": { 9 9 "@urql/core": "^4.2.0", 10 - "@urql/exchange-persisted": "^4.1.0", 10 + "@urql/exchange-persisted": "^4.1.1", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0",
+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.2.0", 21 - "@urql/exchange-graphcache": "^6.3.3", 21 + "@urql/exchange-graphcache": "^6.4.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.2.0", 10 - "@urql/exchange-graphcache": "^6.3.3", 10 + "@urql/exchange-graphcache": "^6.4.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.2.0", 10 10 "@urql/exchange-auth": "^2.1.6", 11 - "@urql/exchange-graphcache": "^6.3.3", 11 + "@urql/exchange-graphcache": "^6.4.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.2.0", 12 - "@urql/exchange-graphcache": "^6.3.3", 12 + "@urql/exchange-graphcache": "^6.4.0", 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.4.0 4 + 5 + ### Minor Changes 6 + 7 + - Allow the user to debug cache-misses by means of the new `logger` interface on the `cacheExchange`. A field miss will dispatch a `debug` log when it's not marked with `@_optional` or when it's non-nullable in the `schema` 8 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3446](https://github.com/urql-graphql/urql/pull/3446)) 9 + - Add `onCacheHydrated` as an option for the `StorageAdapter` 10 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3428](https://github.com/urql-graphql/urql/pull/3428)) 11 + - Add optional `logger` to the options, this allows you to filter out warnings or disable them all together 12 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3444](https://github.com/urql-graphql/urql/pull/3444)) 13 + 3 14 ## 6.3.3 4 15 5 16 ### Patch Changes
+1 -1
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "6.3.3", 3 + "version": "6.4.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
exchanges/persisted/CHANGELOG.md
··· 1 1 # @urql/exchange-persisted-fetch 2 2 3 + ## 4.1.1 4 + 5 + ### Patch Changes 6 + 7 + - Warn about cached persisted-miss results in development, when a `persistedExchange()` sees a persisted-miss error for a result that's already seen a persisted-miss error (i.e. two misses). This shouldn't happen unless something is caching persisted errors and we should warn about this appropriately 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3442](https://github.com/urql-graphql/urql/pull/3442)) 9 + 3 10 ## 4.1.0 4 11 5 12 ### Minor Changes
+1 -1
exchanges/persisted/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-persisted", 3 - "version": "4.1.0", 3 + "version": "4.1.1", 4 4 "description": "An exchange that allows for persisted queries support when fetching queries", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",