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

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
236f018f 0f4fadd3

+21 -17
-5
.changeset/pretty-dodos-happen.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix torn down queries not being removed from `offlineExchange`’s failed queue on rehydration.
-5
.changeset/weak-eagles-walk.md
··· 1 - --- 2 - '@urql/exchange-auth': patch 3 - --- 4 - 5 - Fix regression that caused teardowns to be ignored by an `authExchange`’s retry queue.
+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.0.8", 21 - "@urql/exchange-graphcache": "^6.1.0", 21 + "@urql/exchange-graphcache": "^6.1.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.0.8", 10 - "@urql/exchange-graphcache": "^6.1.0", 10 + "@urql/exchange-graphcache": "^6.1.1", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0",
+2 -2
examples/with-graphcache-updates/package.json
··· 7 7 }, 8 8 "dependencies": { 9 9 "@urql/core": "^4.0.8", 10 - "@urql/exchange-auth": "^2.1.3", 11 - "@urql/exchange-graphcache": "^6.1.0", 10 + "@urql/exchange-auth": "^2.1.4", 11 + "@urql/exchange-graphcache": "^6.1.1", 12 12 "graphql": "^16.6.0", 13 13 "react": "^18.2.0", 14 14 "react-dom": "^18.2.0",
+1 -1
examples/with-refresh-auth/package.json
··· 7 7 }, 8 8 "dependencies": { 9 9 "@urql/core": "^4.0.8", 10 - "@urql/exchange-auth": "^2.1.3", 10 + "@urql/exchange-auth": "^2.1.4", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0",
+7
exchanges/auth/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 2.1.4 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix regression that caused teardowns to be ignored by an `authExchange`’s retry queue 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3235](https://github.com/urql-graphql/urql/pull/3235)) 9 + 3 10 ## 2.1.3 4 11 5 12 ### Patch Changes
+1 -1
exchanges/auth/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-auth", 3 - "version": "2.1.3", 3 + "version": "2.1.4", 4 4 "description": "An exchange for managing authentication and token refresh in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+7
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 6.1.1 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix torn down queries not being removed from `offlineExchange`’s failed queue on rehydration 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3236](https://github.com/urql-graphql/urql/pull/3236)) 9 + 3 10 ## 6.1.0 4 11 5 12 ### Minor Changes
+1 -1
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "6.1.0", 3 + "version": "6.1.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",