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

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

authored by

urql-ci
github-actions[bot]
and committed by
GitHub
cfd8f4dd 83cc0172

+50 -34
-5
.changeset/afraid-kiwis-end.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Improve perf by using String.indexOf in getField
-5
.changeset/cool-zoos-whisper.md
··· 1 - --- 2 - "@urql/svelte": patch 3 - --- 4 - 5 - Add missing `pause` on the `operationStore` return value
-5
.changeset/flat-queens-refuse.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix issue where the ssr-exchange would loop due to checking network-only revalidations
-5
.changeset/smart-bags-confess.md
··· 1 - --- 2 - 'urql': patch 3 - --- 4 - 5 - Fix issue where a paused query would not behave correctly when calling `executeQuery`, this scenario occured when the query has variables, there would be cases where on the first call it would think that the dependencies had changed (previous request vs current request) which made the source reset to null
-5
.changeset/tasty-dragons-check.md
··· 1 - --- 2 - '@urql/vue': minor 3 - --- 4 - 5 - Allow passing in a Ref of client to `provideClient` and `install`
+8
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 4.3.4 4 + 5 + ### Patch Changes 6 + 7 + - Improve perf by using String.indexOf in getField, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1957](https://github.com/FormidableLabs/urql/pull/1957)) 8 + - Updated dependencies (See [#1944](https://github.com/FormidableLabs/urql/pull/1944)) 9 + - @urql/core@2.3.2 10 + 3 11 ## 4.3.3 4 12 5 13 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "4.3.3", 3 + "version": "4.3.4", 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", ··· 65 65 "preset": "../../scripts/jest/preset" 66 66 }, 67 67 "dependencies": { 68 - "@urql/core": ">=2.3.1", 68 + "@urql/core": ">=2.3.2", 69 69 "wonka": "^4.0.14" 70 70 }, 71 71 "peerDependencies": {
+6
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 2.3.2 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix issue where the ssr-exchange would loop due to checking network-only revalidations, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1944](https://github.com/FormidableLabs/urql/pull/1944)) 8 + 3 9 ## 2.3.1 4 10 5 11 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "2.3.1", 3 + "version": "2.3.2", 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/",
+8
packages/react-urql/CHANGELOG.md
··· 1 1 # urql 2 2 3 + ## 2.0.5 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix issue where a paused query would not behave correctly when calling `executeQuery`, this scenario occured when the query has variables, there would be cases where on the first call it would think that the dependencies had changed (previous request vs current request) which made the source reset to null, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1982](https://github.com/FormidableLabs/urql/pull/1982)) 8 + - Updated dependencies (See [#1944](https://github.com/FormidableLabs/urql/pull/1944)) 9 + - @urql/core@2.3.2 10 + 3 11 ## 2.0.4 4 12 5 13 ### Patch Changes
+2 -2
packages/react-urql/package.json
··· 1 1 { 2 2 "name": "urql", 3 - "version": "2.0.4", 3 + "version": "2.0.5", 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/", ··· 59 59 "react": ">= 16.8.0" 60 60 }, 61 61 "dependencies": { 62 - "@urql/core": "^2.1.4", 62 + "@urql/core": "^2.3.2", 63 63 "wonka": "^4.0.14" 64 64 } 65 65 }
+8
packages/svelte-urql/CHANGELOG.md
··· 1 1 # @urql/svelte 2 2 3 + ## 1.3.1 4 + 5 + ### Patch Changes 6 + 7 + - Add missing `pause` on the `operationStore` return value, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1925](https://github.com/FormidableLabs/urql/pull/1925)) 8 + - Updated dependencies (See [#1944](https://github.com/FormidableLabs/urql/pull/1944)) 9 + - @urql/core@2.3.2 10 + 3 11 ## 1.3.0 4 12 5 13 ### Minor Changes
+2 -2
packages/svelte-urql/package.json
··· 1 1 { 2 2 "name": "@urql/svelte", 3 - "version": "1.3.0", 3 + "version": "1.3.1", 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/", ··· 55 55 "svelte": "^3.0.0" 56 56 }, 57 57 "dependencies": { 58 - "@urql/core": "^2.1.5", 58 + "@urql/core": "^2.3.2", 59 59 "wonka": "^4.0.14" 60 60 }, 61 61 "devDependencies": {
+11
packages/vue-urql/CHANGELOG.md
··· 1 1 # @urql/vue 2 2 3 + ## 0.5.0 4 + 5 + ### Minor Changes 6 + 7 + - Allow passing in a Ref of client to `provideClient` and `install`, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1962](https://github.com/FormidableLabs/urql/pull/1962)) 8 + 9 + ### Patch Changes 10 + 11 + - Updated dependencies (See [#1944](https://github.com/FormidableLabs/urql/pull/1944)) 12 + - @urql/core@2.3.2 13 + 3 14 ## 0.4.3 4 15 5 16 ### Patch Changes
+2 -2
packages/vue-urql/package.json
··· 1 1 { 2 2 "name": "@urql/vue", 3 - "version": "0.4.3", 3 + "version": "0.5.0", 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/", ··· 59 59 "vue": "^3.0.0" 60 60 }, 61 61 "dependencies": { 62 - "@urql/core": "^2.1.5", 62 + "@urql/core": "^2.3.2", 63 63 "wonka": "^4.0.14" 64 64 }, 65 65 "publishConfig": {