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

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

authored by

urql-ci
github-actions[bot]
and committed by
GitHub
351ca815 f4266f29

+48 -39
-5
.changeset/gorgeous-experts-live.md
··· 1 - --- 2 - "@urql/exchange-graphcache": patch 3 - --- 4 - 5 - Apply [`bivarianceHack`](https://stackoverflow.com/questions/52667959/what-is-the-purpose-of-bivariancehack-in-typescript-types) in the `graphcache` types to better support code-generated configs.
-5
.changeset/grumpy-dogs-allow.md
··· 1 - --- 2 - 'urql': patch 3 - --- 4 - 5 - Fix issue with `useQuery`'s `executeQuery` state updates, where some calls wouldn't trigger a source change and start a request when the hook was paused.
-5
.changeset/khaki-guests-hope.md
··· 1 - --- 2 - '@urql/vue': patch 3 - --- 4 - 5 - Use client.executeMutation rather than client.mutation in useMutation
-5
.changeset/loud-ghosts-sparkle.md
··· 1 - --- 2 - '@urql/svelte': patch 3 - --- 4 - 5 - Improve `OperationStore` and `subscription` types to allow for result types of `data` that differ from the original `Data` type, which may be picked up from `TypedDocumentNode`.
-5
.changeset/popular-sheep-itch.md
··· 1 - --- 2 - '@urql/svelte': patch 3 - --- 4 - 5 - Use client.executeMutation rather than client.mutation
-5
.changeset/smooth-hounds-battle.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Prevent stale results from being emitted by promisified query sources, e.g. `client.query(...).toPromise()` yielding a partial result with `stale: true` set. Instead, `.toPromise()` will now filter out stale results.
+8
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 4.1.4 4 + 5 + ### Patch Changes 6 + 7 + - Apply [`bivarianceHack`](https://stackoverflow.com/questions/52667959/what-is-the-purpose-of-bivariancehack-in-typescript-types) in the `graphcache` types to better support code-generated configs, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1687](https://github.com/FormidableLabs/urql/pull/1687)) 8 + - Updated dependencies (See [#1709](https://github.com/FormidableLabs/urql/pull/1709)) 9 + - @urql/core@2.1.4 10 + 3 11 ## 4.1.3 4 12 5 13 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "4.1.3", 3 + "version": "4.1.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.1.3", 68 + "@urql/core": ">=2.1.4", 69 69 "wonka": "^4.0.14" 70 70 }, 71 71 "peerDependencies": {
+6
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 2.1.4 4 + 5 + ### Patch Changes 6 + 7 + - Prevent stale results from being emitted by promisified query sources, e.g. `client.query(...).toPromise()` yielding a partial result with `stale: true` set. Instead, `.toPromise()` will now filter out stale results, by [@kitten](https://github.com/kitten) (See [#1709](https://github.com/FormidableLabs/urql/pull/1709)) 8 + 3 9 ## 2.1.3 4 10 5 11 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "2.1.3", 3 + "version": "2.1.4", 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.4 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix issue with `useQuery`'s `executeQuery` state updates, where some calls wouldn't trigger a source change and start a request when the hook was paused, by [@kitten](https://github.com/kitten) (See [#1722](https://github.com/FormidableLabs/urql/pull/1722)) 8 + - Updated dependencies (See [#1709](https://github.com/FormidableLabs/urql/pull/1709)) 9 + - @urql/core@2.1.4 10 + 3 11 ## 2.0.3 4 12 5 13 ### Patch Changes
+2 -2
packages/react-urql/package.json
··· 1 1 { 2 2 "name": "urql", 3 - "version": "2.0.3", 3 + "version": "2.0.4", 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.0", 62 + "@urql/core": "^2.1.4", 63 63 "wonka": "^4.0.14" 64 64 } 65 65 }
+9
packages/svelte-urql/CHANGELOG.md
··· 1 1 # @urql/svelte 2 2 3 + ## 1.2.3 4 + 5 + ### Patch Changes 6 + 7 + - Improve `OperationStore` and `subscription` types to allow for result types of `data` that differ from the original `Data` type, which may be picked up from `TypedDocumentNode`, by [@kitten](https://github.com/kitten) (See [#1731](https://github.com/FormidableLabs/urql/pull/1731)) 8 + - Use client.executeMutation rather than client.mutation, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1732](https://github.com/FormidableLabs/urql/pull/1732)) 9 + - Updated dependencies (See [#1709](https://github.com/FormidableLabs/urql/pull/1709)) 10 + - @urql/core@2.1.4 11 + 3 12 ## 1.2.2 4 13 5 14 ### Patch Changes
+2 -2
packages/svelte-urql/package.json
··· 1 1 { 2 2 "name": "@urql/svelte", 3 - "version": "1.2.2", 3 + "version": "1.2.3", 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.0", 58 + "@urql/core": "^2.1.4", 59 59 "wonka": "^4.0.14" 60 60 }, 61 61 "devDependencies": {
+8
packages/vue-urql/CHANGELOG.md
··· 1 1 # @urql/vue 2 2 3 + ## 0.4.1 4 + 5 + ### Patch Changes 6 + 7 + - Use client.executeMutation rather than client.mutation in useMutation, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1680](https://github.com/FormidableLabs/urql/pull/1680)) 8 + - Updated dependencies (See [#1709](https://github.com/FormidableLabs/urql/pull/1709)) 9 + - @urql/core@2.1.4 10 + 3 11 ## 0.4.0 4 12 5 13 ### Minor Changes
+2 -2
packages/vue-urql/package.json
··· 1 1 { 2 2 "name": "@urql/vue", 3 - "version": "0.4.0", 3 + "version": "0.4.1", 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.0", 62 + "@urql/core": "^2.1.4", 63 63 "wonka": "^4.0.14" 64 64 }, 65 65 "publishConfig": {