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

Version Packages (#2012)

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

authored by

urql-ci
github-actions[bot]
and committed by
GitHub
942dd1ac 9beb07e6

+33 -27
-6
.changeset/gold-geese-fly.md
··· 1 - --- 2 - '@urql/vue': minor 3 - --- 4 - 5 - Provide the client as a ref so it can observe changes. This change is potentially breaking for 6 - anyone using the `useClient` import as it will now return a `Ref<Client>` rather than a `Client`
-5
.changeset/lucky-pens-end.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Prevent `Buffer` from being polyfilled by an automatic detection in Webpack. Instead of referencing the `Buffer` global we now simply check the constructor name.
-5
.changeset/seven-scissors-rescue.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix error-type of an `ExecutionResult` to line up with subscription-libs
-6
.changeset/slow-pets-beg.md
··· 1 - --- 2 - '@urql/svelte': patch 3 - --- 4 - 5 - Fix initialize `operationStore` with `fetching: false`, the invocation of `query` or any other operation will mark it as `true` 6 - when deemed appropriate
+7
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 2.3.4 4 + 5 + ### Patch Changes 6 + 7 + - Prevent `Buffer` from being polyfilled by an automatic detection in Webpack. Instead of referencing the `Buffer` global we now simply check the constructor name, by [@kitten](https://github.com/kitten) (See [#2027](https://github.com/FormidableLabs/urql/pull/2027)) 8 + - ⚠️ Fix error-type of an `ExecutionResult` to line up with subscription-libs, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1998](https://github.com/FormidableLabs/urql/pull/1998)) 9 + 3 10 ## 2.3.3 4 11 5 12 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "2.3.3", 3 + "version": "2.3.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/",
+9
packages/svelte-urql/CHANGELOG.md
··· 1 1 # @urql/svelte 2 2 3 + ## 1.3.2 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix initialize `operationStore` with `fetching: false`, the invocation of `query` or any other operation will mark it as `true` 8 + when deemed appropriate, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2048](https://github.com/FormidableLabs/urql/pull/2048)) 9 + - Updated dependencies (See [#2027](https://github.com/FormidableLabs/urql/pull/2027) and [#1998](https://github.com/FormidableLabs/urql/pull/1998)) 10 + - @urql/core@2.3.4 11 + 3 12 ## 1.3.1 4 13 5 14 ### Patch Changes
+2 -2
packages/svelte-urql/package.json
··· 1 1 { 2 2 "name": "@urql/svelte", 3 - "version": "1.3.1", 3 + "version": "1.3.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/", ··· 55 55 "svelte": "^3.0.0" 56 56 }, 57 57 "dependencies": { 58 - "@urql/core": "^2.3.2", 58 + "@urql/core": "^2.3.4", 59 59 "wonka": "^4.0.14" 60 60 }, 61 61 "devDependencies": {
+12
packages/vue-urql/CHANGELOG.md
··· 1 1 # @urql/vue 2 2 3 + ## 0.6.0 4 + 5 + ### Minor Changes 6 + 7 + - Provide the client as a ref so it can observe changes. This change is potentially breaking for 8 + anyone using the `useClient` import as it will now return a `Ref<Client>` rather than a `Client`, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2047](https://github.com/FormidableLabs/urql/pull/2047)) 9 + 10 + ### Patch Changes 11 + 12 + - Updated dependencies (See [#2027](https://github.com/FormidableLabs/urql/pull/2027) and [#1998](https://github.com/FormidableLabs/urql/pull/1998)) 13 + - @urql/core@2.3.4 14 + 3 15 ## 0.5.0 4 16 5 17 ### Minor Changes
+2 -2
packages/vue-urql/package.json
··· 1 1 { 2 2 "name": "@urql/vue", 3 - "version": "0.5.0", 3 + "version": "0.6.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.3.2", 62 + "@urql/core": "^2.3.4", 63 63 "wonka": "^4.0.14" 64 64 }, 65 65 "publishConfig": {