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>

urql-ci 942dd1ac 9beb07e6

-6
.changeset/gold-geese-fly.md
···
-
---
-
'@urql/vue': minor
-
---
-
-
Provide the client as a ref so it can observe changes. This change is potentially breaking for
-
anyone using the `useClient` import as it will now return a `Ref<Client>` rather than a `Client`
-5
.changeset/lucky-pens-end.md
···
-
---
-
'@urql/core': patch
-
---
-
-
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
···
-
---
-
'@urql/core': patch
-
---
-
-
Fix error-type of an `ExecutionResult` to line up with subscription-libs
-6
.changeset/slow-pets-beg.md
···
-
---
-
'@urql/svelte': patch
-
---
-
-
Fix initialize `operationStore` with `fetching: false`, the invocation of `query` or any other operation will mark it as `true`
-
when deemed appropriate
+7
packages/core/CHANGELOG.md
···
# @urql/core
+
## 2.3.4
+
+
### Patch Changes
+
+
- 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))
+
- ⚠️ 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))
+
## 2.3.3
### Patch Changes
+1 -1
packages/core/package.json
···
{
"name": "@urql/core",
-
"version": "2.3.3",
+
"version": "2.3.4",
"description": "The shared core for the highly customizable and versatile GraphQL client",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
+9
packages/svelte-urql/CHANGELOG.md
···
# @urql/svelte
+
## 1.3.2
+
+
### Patch Changes
+
+
- ⚠️ Fix initialize `operationStore` with `fetching: false`, the invocation of `query` or any other operation will mark it as `true`
+
when deemed appropriate, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2048](https://github.com/FormidableLabs/urql/pull/2048))
+
- Updated dependencies (See [#2027](https://github.com/FormidableLabs/urql/pull/2027) and [#1998](https://github.com/FormidableLabs/urql/pull/1998))
+
- @urql/core@2.3.4
+
## 1.3.1
### Patch Changes
+2 -2
packages/svelte-urql/package.json
···
{
"name": "@urql/svelte",
-
"version": "1.3.1",
+
"version": "1.3.2",
"description": "A highly customizable and versatile GraphQL client for Svelte",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
···
"svelte": "^3.0.0"
},
"dependencies": {
-
"@urql/core": "^2.3.2",
+
"@urql/core": "^2.3.4",
"wonka": "^4.0.14"
},
"devDependencies": {
+12
packages/vue-urql/CHANGELOG.md
···
# @urql/vue
+
## 0.6.0
+
+
### Minor Changes
+
+
- Provide the client as a ref so it can observe changes. This change is potentially breaking for
+
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))
+
+
### Patch Changes
+
+
- Updated dependencies (See [#2027](https://github.com/FormidableLabs/urql/pull/2027) and [#1998](https://github.com/FormidableLabs/urql/pull/1998))
+
- @urql/core@2.3.4
+
## 0.5.0
### Minor Changes
+2 -2
packages/vue-urql/package.json
···
{
"name": "@urql/vue",
-
"version": "0.5.0",
+
"version": "0.6.0",
"description": "A highly customizable and versatile GraphQL client for vue",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
···
"vue": "^3.0.0"
},
"dependencies": {
-
"@urql/core": "^2.3.2",
+
"@urql/core": "^2.3.4",
"wonka": "^4.0.14"
},
"publishConfig": {