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

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
c356285e 38f83f32

+126 -94
-5
.changeset/breezy-melons-deny.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Respect `additionalTypenames` on subscriptions and re-execute queries for them as well, as one would intuitively expect.
-12
.changeset/chatty-dancers-lick.md
··· 1 - --- 2 - '@urql/exchange-auth': patch 3 - '@urql/exchange-execute': patch 4 - '@urql/exchange-graphcache': patch 5 - '@urql/core': patch 6 - '@urql/preact': patch 7 - 'urql': patch 8 - '@urql/svelte': patch 9 - '@urql/vue': patch 10 - --- 11 - 12 - Update build process to generate correct source maps.
-5
.changeset/curvy-poems-compare.md
··· 1 - --- 2 - '@urql/exchange-retry': minor 3 - --- 4 - 5 - Reset `retryExchange`’s previous attempts and delay if an operation succeeds. This prevents the exchange from keeping its old retry count and delay if the operation delivered a result in the meantime. This is important for it to help recover from failing subscriptions.
-5
.changeset/dull-fishes-push.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Add `globalIDs` configuration option to omit typenames in cache keys.
-5
.changeset/green-geese-switch.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Don't allow `isSubscriptionOperation` option in `subscriptionExchange` to include `teardown` operations, to avoid confusion.
-5
.changeset/hungry-cars-hide.md
··· 1 - --- 2 - '@urql/vue': patch 3 - --- 4 - 5 - Prevent multiple operations being executed in a row when multiple inputs change simultaneously (e.g. `isPaused` and query inputs)
-5
.changeset/hungry-zebras-count.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Prevent `offlineExchange` from issuing duplicate operations.
-5
.changeset/spicy-comics-shave.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix reference equality not being preserved. This is a fix on top of [#3165](https://github.com/urql-graphql/urql/pull/3165), and was previously not addressed to avoid having to test for corner cases that are hard to cover. If you experience issues with this fix, please let us know.
-5
.changeset/wet-crabs-dream.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Retry operations against offline cache and stabilize timing of flushing failed operations queue after rehydrating the storage data.
+2 -2
examples/with-apq/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.7", 9 + "@urql/core": "^4.0.8", 10 10 "@urql/exchange-persisted-fetch": "^1.3.0", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0", 14 - "urql": "^4.0.2" 14 + "urql": "^4.0.3" 15 15 }, 16 16 "devDependencies": { 17 17 "@vitejs/plugin-react": "^3.1.0",
+3 -3
examples/with-defer-stream-directives/package.json
··· 17 17 }, 18 18 "dependencies": { 19 19 "@graphql-yoga/plugin-defer-stream": "^1.7.1", 20 - "@urql/core": "^4.0.7", 21 - "@urql/exchange-graphcache": "^6.0.4", 20 + "@urql/core": "^4.0.8", 21 + "@urql/exchange-graphcache": "^6.1.0", 22 22 "graphql": "17.0.0-alpha.2", 23 23 "react": "^18.2.0", 24 24 "react-dom": "^18.2.0", 25 - "urql": "^4.0.2" 25 + "urql": "^4.0.3" 26 26 }, 27 27 "devDependencies": { 28 28 "@apollo/server": "^4.4.1",
+3 -3
examples/with-graphcache-pagination/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.7", 10 - "@urql/exchange-graphcache": "^6.0.4", 9 + "@urql/core": "^4.0.8", 10 + "@urql/exchange-graphcache": "^6.1.0", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0", 14 - "urql": "^4.0.2" 14 + "urql": "^4.0.3" 15 15 }, 16 16 "devDependencies": { 17 17 "@vitejs/plugin-react": "^3.1.0",
+4 -4
examples/with-graphcache-updates/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.7", 10 - "@urql/exchange-auth": "^2.1.2", 11 - "@urql/exchange-graphcache": "^6.0.4", 9 + "@urql/core": "^4.0.8", 10 + "@urql/exchange-auth": "^2.1.3", 11 + "@urql/exchange-graphcache": "^6.1.0", 12 12 "graphql": "^16.6.0", 13 13 "react": "^18.2.0", 14 14 "react-dom": "^18.2.0", 15 - "urql": "^4.0.2" 15 + "urql": "^4.0.3" 16 16 }, 17 17 "devDependencies": { 18 18 "@vitejs/plugin-react": "^3.1.0",
+2 -2
examples/with-multipart/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.7", 9 + "@urql/core": "^4.0.8", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0", 13 - "urql": "^4.0.2" 13 + "urql": "^4.0.3" 14 14 }, 15 15 "devDependencies": { 16 16 "@vitejs/plugin-react": "^3.1.0",
+2 -2
examples/with-next/package.json
··· 3 3 "version": "0.0.0", 4 4 "private": true, 5 5 "dependencies": { 6 - "@urql/core": "^4.0.7", 6 + "@urql/core": "^4.0.8", 7 7 "graphql": "^16.6.0", 8 8 "next": "13.2.4", 9 9 "next-urql": "^5.0.1", 10 10 "react": "^18.2.0", 11 11 "react-dom": "^18.2.0", 12 - "urql": "^4.0.2" 12 + "urql": "^4.0.3" 13 13 }, 14 14 "scripts": { 15 15 "dev": "next dev",
+2 -2
examples/with-pagination/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.7", 9 + "@urql/core": "^4.0.8", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0", 13 - "urql": "^4.0.2" 13 + "urql": "^4.0.3" 14 14 }, 15 15 "devDependencies": { 16 16 "@vitejs/plugin-react": "^3.1.0",
+2 -2
examples/with-react-native/package.json
··· 8 8 "start": "react-native start" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.0.7", 11 + "@urql/core": "^4.0.8", 12 12 "graphql": "^16.6.0", 13 13 "react": "18.2.0", 14 14 "react-native": "0.71.4", 15 - "urql": "^4.0.2" 15 + "urql": "^4.0.3" 16 16 }, 17 17 "devDependencies": { 18 18 "@babel/core": "^7.12.9",
+2 -2
examples/with-react/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.7", 9 + "@urql/core": "^4.0.8", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0", 13 - "urql": "^4.0.2" 13 + "urql": "^4.0.3" 14 14 }, 15 15 "devDependencies": { 16 16 "@vitejs/plugin-react": "^3.1.0",
+3 -3
examples/with-refresh-auth/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.7", 10 - "@urql/exchange-auth": "^2.1.2", 9 + "@urql/core": "^4.0.8", 10 + "@urql/exchange-auth": "^2.1.3", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0", 14 - "urql": "^4.0.2" 14 + "urql": "^4.0.3" 15 15 }, 16 16 "devDependencies": { 17 17 "@vitejs/plugin-react": "^3.1.0",
+3 -3
examples/with-retry/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.7", 10 - "@urql/exchange-retry": "^1.1.1", 9 + "@urql/core": "^4.0.8", 10 + "@urql/exchange-retry": "^1.2.0", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0", 14 - "urql": "^4.0.2" 14 + "urql": "^4.0.3" 15 15 }, 16 16 "devDependencies": { 17 17 "@vitejs/plugin-react": "^3.1.0",
+2 -2
examples/with-svelte/package.json
··· 8 8 "serve": "vite preview" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.0.7", 12 - "@urql/svelte": "^4.0.1", 11 + "@urql/core": "^4.0.8", 12 + "@urql/svelte": "^4.0.2", 13 13 "graphql": "^16.6.0", 14 14 "svelte": "^3.57.0" 15 15 },
+2 -2
examples/with-vue3/package.json
··· 8 8 "serve": "vite preview" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.0.7", 12 - "@urql/vue": "^1.1.1", 11 + "@urql/core": "^4.0.8", 12 + "@urql/vue": "^1.1.2", 13 13 "graphql": "^16.6.0", 14 14 "vue": "^3.2.47" 15 15 },
+7
exchanges/auth/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 2.1.3 4 + 5 + ### Patch Changes 6 + 7 + - Update build process to generate correct source maps 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201)) 9 + 3 10 ## 2.1.2 4 11 5 12 ### Patch Changes
+1 -1
exchanges/auth/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-auth", 3 - "version": "2.1.2", 3 + "version": "2.1.3", 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/execute/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 2.2.2 4 + 5 + ### Patch Changes 6 + 7 + - Update build process to generate correct source maps 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201)) 9 + 3 10 ## 2.2.1 4 11 5 12 ### Patch Changes
+1 -1
exchanges/execute/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-execute", 3 - "version": "2.2.1", 3 + "version": "2.2.2", 4 4 "description": "An exchange for executing queries against a local schema in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+18
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 6.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Add `globalIDs` configuration option to omit typenames in cache keys 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3224](https://github.com/urql-graphql/urql/pull/3224)) 9 + 10 + ### Patch Changes 11 + 12 + - Update build process to generate correct source maps 13 + Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201)) 14 + - Prevent `offlineExchange` from issuing duplicate operations 15 + Submitted by [@kitten](https://github.com/kitten) (See [#3200](https://github.com/urql-graphql/urql/pull/3200)) 16 + - ⚠️ Fix reference equality not being preserved. This is a fix on top of [#3165](https://github.com/urql-graphql/urql/pull/3165), and was previously not addressed to avoid having to test for corner cases that are hard to cover. If you experience issues with this fix, please let us know 17 + Submitted by [@kitten](https://github.com/kitten) (See [#3228](https://github.com/urql-graphql/urql/pull/3228)) 18 + - Retry operations against offline cache and stabilize timing of flushing failed operations queue after rehydrating the storage data 19 + Submitted by [@kitten](https://github.com/kitten) (See [#3196](https://github.com/urql-graphql/urql/pull/3196)) 20 + 3 21 ## 6.0.4 4 22 5 23 ### Patch Changes
+1 -1
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "6.0.4", 3 + "version": "6.1.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/retry/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Reset `retryExchange`’s previous attempts and delay if an operation succeeds. This prevents the exchange from keeping its old retry count and delay if the operation delivered a result in the meantime. This is important for it to help recover from failing subscriptions 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3229](https://github.com/urql-graphql/urql/pull/3229)) 9 + 3 10 ## 1.1.1 4 11 5 12 ### Patch Changes
+1 -1
exchanges/retry/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-retry", 3 - "version": "1.1.1", 3 + "version": "1.2.0", 4 4 "description": "An exchange for operation retry support in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+11
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 4.0.8 4 + 5 + ### Patch Changes 6 + 7 + - Respect `additionalTypenames` on subscriptions and re-execute queries for them as well, as one would intuitively expect 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3230](https://github.com/urql-graphql/urql/pull/3230)) 9 + - Update build process to generate correct source maps 10 + Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201)) 11 + - Don't allow `isSubscriptionOperation` option in `subscriptionExchange` to include `teardown` operations, to avoid confusion 12 + Submitted by [@kitten](https://github.com/kitten) (See [#3206](https://github.com/urql-graphql/urql/pull/3206)) 13 + 3 14 ## 4.0.7 4 15 5 16 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "4.0.7", 3 + "version": "4.0.8", 4 4 "description": "The shared core for the highly customizable and versatile GraphQL client", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+7
packages/preact-urql/CHANGELOG.md
··· 1 1 # @urql/preact 2 2 3 + ## 4.0.2 4 + 5 + ### Patch Changes 6 + 7 + - Update build process to generate correct source maps 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201)) 9 + 3 10 ## 4.0.1 4 11 5 12 ### Patch Changes
+1 -1
packages/preact-urql/package.json
··· 1 1 { 2 2 "name": "@urql/preact", 3 - "version": "4.0.1", 3 + "version": "4.0.2", 4 4 "description": "A highly customizable and versatile GraphQL client for Preact", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+7
packages/react-urql/CHANGELOG.md
··· 1 1 # urql 2 2 3 + ## 4.0.3 4 + 5 + ### Patch Changes 6 + 7 + - Update build process to generate correct source maps 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201)) 9 + 3 10 ## 4.0.2 4 11 5 12 ### Patch Changes
+1 -1
packages/react-urql/package.json
··· 1 1 { 2 2 "name": "urql", 3 - "version": "4.0.2", 3 + "version": "4.0.3", 4 4 "description": "A highly customizable and versatile GraphQL client for React", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+7
packages/svelte-urql/CHANGELOG.md
··· 1 1 # @urql/svelte 2 2 3 + ## 4.0.2 4 + 5 + ### Patch Changes 6 + 7 + - Update build process to generate correct source maps 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201)) 9 + 3 10 ## 4.0.1 4 11 5 12 ### Patch Changes
+1 -1
packages/svelte-urql/package.json
··· 1 1 { 2 2 "name": "@urql/svelte", 3 - "version": "4.0.1", 3 + "version": "4.0.2", 4 4 "description": "A highly customizable and versatile GraphQL client for Svelte", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+9
packages/vue-urql/CHANGELOG.md
··· 1 1 # @urql/vue 2 2 3 + ## 1.1.2 4 + 5 + ### Patch Changes 6 + 7 + - Update build process to generate correct source maps 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3201](https://github.com/urql-graphql/urql/pull/3201)) 9 + - Prevent multiple operations being executed in a row when multiple inputs change simultaneously (e.g. `isPaused` and query inputs) 10 + Submitted by [@kitten](https://github.com/kitten) (See [#3231](https://github.com/urql-graphql/urql/pull/3231)) 11 + 3 12 ## 1.1.1 4 13 5 14 ### Patch Changes
+1 -1
packages/vue-urql/package.json
··· 1 1 { 2 2 "name": "@urql/vue", 3 - "version": "1.1.1", 3 + "version": "1.1.2", 4 4 "description": "A highly customizable and versatile GraphQL client for vue", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+5 -1
pnpm-lock.yaml
··· 1 - lockfileVersion: '6.0' 1 + lockfileVersion: '6.1' 2 + 3 + settings: 4 + autoInstallPeers: true 5 + excludeLinksFromLockfile: false 2 6 3 7 overrides: 4 8 '@types/react': ^17.0.39