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

Version Packages (#3831)

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

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
86f0100e 4e9f27da

+31 -25
-5
.changeset/old-cups-shake.md
··· 1 - --- 2 - '@urql/exchange-refocus': minor 3 - --- 4 - 5 - Add `minimumTime` to `refocusExchange` to throttle query reexecution.
-5
.changeset/orange-rabbits-poke.md
··· 1 - --- 2 - '@urql/exchange-graphcache': major 3 - --- 4 - 5 - Don't serialize data to IDB. This invalidates all existing data, but greatly improves performance of read/write operations.
-5
.changeset/sweet-buses-invite.md
··· 1 - --- 2 - '@urql/storage-rn': patch 3 - --- 4 - 5 - Add support for `@react-native-async-storage/async-storage` v2.0.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": "^6.0.1", 21 - "@urql/exchange-graphcache": "^8.1.0", 21 + "@urql/exchange-graphcache": "^9.0.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": "^6.0.1", 10 - "@urql/exchange-graphcache": "^8.1.0", 10 + "@urql/exchange-graphcache": "^9.0.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": "^6.0.1", 10 10 "@urql/exchange-auth": "^3.0.0", 11 - "@urql/exchange-graphcache": "^8.1.0", 11 + "@urql/exchange-graphcache": "^9.0.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": "^6.0.1", 12 - "@urql/exchange-graphcache": "^8.1.0", 12 + "@urql/exchange-graphcache": "^9.0.0", 13 13 "graphql": "^16.6.0", 14 14 "react": "^18.2.0", 15 15 "react-dom": "^18.2.0",
+7
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 9.0.0 4 + 5 + ### Major Changes 6 + 7 + - Don't serialize data to IDB. This invalidates all existing data, but greatly improves performance of read/write operations 8 + Submitted by [@ThaUnknown](https://github.com/ThaUnknown) (See [#3824](https://github.com/urql-graphql/urql/pull/3824)) 9 + 3 10 ## 8.1.0 4 11 5 12 ### Minor Changes
+1 -1
exchanges/graphcache/jsr.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "8.1.0", 3 + "version": "9.0.0", 4 4 "exports": { 5 5 ".": "./src/index.ts", 6 6 "./extras": "./src/extras/index.ts",
+1 -1
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "8.1.0", 3 + "version": "9.0.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/refocus/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 2.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Add `minimumTime` to `refocusExchange` to throttle query reexecution 8 + Submitted by [@ThaUnknown](https://github.com/ThaUnknown) (See [#3825](https://github.com/urql-graphql/urql/pull/3825)) 9 + 3 10 ## 2.0.0 4 11 5 12 ### Patch Changes
+1 -1
exchanges/refocus/jsr.json
··· 1 1 { 2 2 "name": "@urql/exchange-refocus", 3 - "version": "2.0.0", 3 + "version": "2.1.0", 4 4 "exports": { 5 5 ".": "./src/index.ts" 6 6 },
+1 -1
exchanges/refocus/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-refocus", 3 - "version": "2.0.0", 3 + "version": "2.1.0", 4 4 "description": "An exchange that dispatches active operations when the window regains focus", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+7
packages/storage-rn/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.1.2 4 + 5 + ### Patch Changes 6 + 7 + - Add support for `@react-native-async-storage/async-storage` v2.0.0 8 + Submitted by [@nhangeland](https://github.com/nhangeland) (See [#3836](https://github.com/urql-graphql/urql/pull/3836)) 9 + 3 10 ## 1.1.1 4 11 5 12 ### Patch Changes
+1 -1
packages/storage-rn/jsr.json
··· 1 1 { 2 2 "name": "@urql/storage-rn", 3 - "version": "1.1.1", 3 + "version": "1.1.2", 4 4 "exports": { 5 5 ".": "./src/index.ts" 6 6 },
+1 -1
packages/storage-rn/package.json
··· 1 1 { 2 2 "name": "@urql/storage-rn", 3 - "version": "1.1.1", 3 + "version": "1.1.2", 4 4 "sideEffects": false, 5 5 "description": "Graphcache offline storage for React Native", 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",