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

Version Packages (#3682)

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 04387403 ca0adea8

Changed files
+24 -19
.changeset
examples
with-defer-stream-directives
with-graphcache-pagination
with-graphcache-updates
with-subscriptions-via-fetch
exchanges
-5
.changeset/breezy-tomatoes-sing.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Allow @_required directive to be used in combination with configured schemas
-5
.changeset/neat-pandas-punch.md
··· 1 - --- 2 - "@urql/exchange-throw-on-error": minor 3 - --- 4 - 5 - Initial release
+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": "^5.0.6", 21 - "@urql/exchange-graphcache": "^7.1.3", 21 + "@urql/exchange-graphcache": "^7.2.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": "^5.0.6", 10 - "@urql/exchange-graphcache": "^7.1.3", 10 + "@urql/exchange-graphcache": "^7.2.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": "^5.0.6", 10 10 "@urql/exchange-auth": "^2.2.0", 11 - "@urql/exchange-graphcache": "^7.1.3", 11 + "@urql/exchange-graphcache": "^7.2.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": "^5.0.6", 12 - "@urql/exchange-graphcache": "^7.1.3", 12 + "@urql/exchange-graphcache": "^7.2.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 + ## 7.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Allow @\_required directive to be used in combination with configured schemas 8 + Submitted by [@AndrewIngram](https://github.com/AndrewIngram) (See [#3685](https://github.com/urql-graphql/urql/pull/3685)) 9 + 3 10 ## 7.1.3 4 11 5 12 ### Patch Changes
+1 -1
exchanges/graphcache/jsr.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "7.1.3", 3 + "version": "7.2.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": "7.1.3", 3 + "version": "7.2.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",
+8
exchanges/throw-on-error/CHANGELOG.md
··· 1 + # @urql/exchange-throw-on-error 2 + 3 + ## 0.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Initial release 8 + Submitted by [@XiNiHa](https://github.com/XiNiHa) (See [#3677](https://github.com/urql-graphql/urql/pull/3677))
+2 -2
exchanges/throw-on-error/jsr.json
··· 1 1 { 2 2 "name": "@urql/exchange-throw-on-error", 3 - "version": "0.0.0", 3 + "version": "0.1.0", 4 4 "exports": { 5 5 ".": "./src/index.ts" 6 6 }, ··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
exchanges/throw-on-error/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-throw-on-error", 3 - "version": "0.0.0", 3 + "version": "0.1.0", 4 4 "description": "An exchange for throw-on-error support in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",