From 367dfffde4d1588cdddd09fbc443d72b33841545 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 10 Feb 2021 16:12:13 +0000 Subject: [PATCH] Version Packages --- .changeset/blue-bees-join.md | 5 ----- .changeset/cuddly-squids-cheat.md | 5 ----- .changeset/gorgeous-squids-exercise.md | 5 ----- .changeset/great-rice-lick.md | 5 ----- .changeset/metal-oranges-tease.md | 5 ----- .changeset/orange-maps-raise.md | 5 ----- .changeset/plenty-carrots-prove.md | 10 ---------- .changeset/small-apricots-exercise.md | 5 ----- .changeset/smart-emus-jam.md | 5 ----- .changeset/strong-emus-confess.md | 5 ----- .changeset/twelve-camels-sit.md | 6 ------ exchanges/graphcache/CHANGELOG.md | 15 +++++++++++++++ exchanges/graphcache/package.json | 4 ++-- exchanges/persisted-fetch/CHANGELOG.md | 11 +++++++++++ exchanges/persisted-fetch/package.json | 4 ++-- exchanges/request-policy/CHANGELOG.md | 8 ++++++++ exchanges/request-policy/package.json | 4 ++-- packages/core/CHANGELOG.md | 12 ++++++++++++ packages/core/package.json | 2 +- packages/introspection/CHANGELOG.md | 6 ++++++ packages/introspection/package.json | 2 +- packages/next-urql/CHANGELOG.md | 7 +++++++ packages/next-urql/package.json | 4 ++-- packages/preact-urql/CHANGELOG.md | 16 ++++++++++++++++ packages/preact-urql/package.json | 4 ++-- packages/react-urql/CHANGELOG.md | 17 +++++++++++++++++ packages/react-urql/package.json | 4 ++-- packages/svelte-urql/CHANGELOG.md | 12 ++++++++++++ packages/svelte-urql/package.json | 4 ++-- packages/vue-urql/CHANGELOG.md | 13 +++++++++++++ packages/vue-urql/package.json | 4 ++-- 31 files changed, 135 insertions(+), 79 deletions(-) delete mode 100644 .changeset/blue-bees-join.md delete mode 100644 .changeset/cuddly-squids-cheat.md delete mode 100644 .changeset/gorgeous-squids-exercise.md delete mode 100644 .changeset/great-rice-lick.md delete mode 100644 .changeset/metal-oranges-tease.md delete mode 100644 .changeset/orange-maps-raise.md delete mode 100644 .changeset/plenty-carrots-prove.md delete mode 100644 .changeset/small-apricots-exercise.md delete mode 100644 .changeset/smart-emus-jam.md delete mode 100644 .changeset/strong-emus-confess.md delete mode 100644 .changeset/twelve-camels-sit.md diff --git a/.changeset/blue-bees-join.md b/.changeset/blue-bees-join.md deleted file mode 100644 index 77e51d30ff..0000000000 --- a/.changeset/blue-bees-join.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-graphcache': minor ---- - -Allow `schema` option to be passed with a partial introspection result that only contains `queryType`, `mutationType`, and `subscriptionType` with their respective names. This allows you to pass `{ __schema: { queryType: { name: 'Query' } } }` and the likes to Graphcache's `cacheExchange` to alter the default root names without enabling full schema awareness. diff --git a/.changeset/cuddly-squids-cheat.md b/.changeset/cuddly-squids-cheat.md deleted file mode 100644 index 69ee898508..0000000000 --- a/.changeset/cuddly-squids-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-persisted-fetch': minor ---- - -Add `enforcePersistedQueries` option to `persistedFetchExchange`, which disables automatic persisted queries and retry logic, and instead assumes that persisted queries will be handled like normal GraphQL requests. diff --git a/.changeset/gorgeous-squids-exercise.md b/.changeset/gorgeous-squids-exercise.md deleted file mode 100644 index d6ff3371bb..0000000000 --- a/.changeset/gorgeous-squids-exercise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/core': major ---- - -**Breaking**: Remove `pollInterval` feature from `OperationContext`. Instead consider using a source that uses `Wonka.interval` and `Wonka.switchMap` over `client.query()`'s source. diff --git a/.changeset/great-rice-lick.md b/.changeset/great-rice-lick.md deleted file mode 100644 index 55fdc1da0c..0000000000 --- a/.changeset/great-rice-lick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/vue': minor ---- - -**Breaking**: Remove `pollInterval` option from `useQuery`. Please consider adding an interval manually calling `executeQuery()`. diff --git a/.changeset/metal-oranges-tease.md b/.changeset/metal-oranges-tease.md deleted file mode 100644 index 8b5fb4e002..0000000000 --- a/.changeset/metal-oranges-tease.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'urql': minor ---- - -Reimplement `useQuery` to apply a consistent Suspense cache (torn down queries will still eliminate stale values) and support all Concurrent Mode edge cases. This work is based on `useMutableSource`'s mechanisms and allows React to properly fork lanes since no implicit state exists outside of `useState` in the implementation. The `useSubscription` hook has been updated similarly without a cache or retrieving values on mount. diff --git a/.changeset/orange-maps-raise.md b/.changeset/orange-maps-raise.md deleted file mode 100644 index 02a606ceff..0000000000 --- a/.changeset/orange-maps-raise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/introspection': minor ---- - -Update `minifyIntrospectionQuery` utility to remove additional information on arguments and to filter out schema metadata types, like `__Field` and others. diff --git a/.changeset/plenty-carrots-prove.md b/.changeset/plenty-carrots-prove.md deleted file mode 100644 index 9cb1a292d4..0000000000 --- a/.changeset/plenty-carrots-prove.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@urql/core': major -'@urql/preact': minor -'@urql/svelte': minor -'@urql/vue': minor -'urql': minor ---- - -Remove deprecated `operationName` property from `Operation`s. The new `Operation.kind` property is now preferred. If you're creating new operations you may also use the `makeOperation` utility instead. -When upgrading `@urql/core` please ensure that your package manager didn't install any duplicates of it. You may deduplicate it manually using `npx yarn-deduplicate` (for Yarn) or `npm dedupe` (for npm). diff --git a/.changeset/small-apricots-exercise.md b/.changeset/small-apricots-exercise.md deleted file mode 100644 index 719cb374b0..0000000000 --- a/.changeset/small-apricots-exercise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-request-policy': patch ---- - -Fix non-query operations being upgraded by `requestPolicyExchange` and time being stored by last issuance rather than last result. diff --git a/.changeset/smart-emus-jam.md b/.changeset/smart-emus-jam.md deleted file mode 100644 index 791401db26..0000000000 --- a/.changeset/smart-emus-jam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-graphcache': major ---- - -Add improved error awareness to Graphcache. When Graphcache now receives a `GraphQLError` (via a `CombinedError`) it checks whether the `GraphQLError`'s `path` matches up with `null` values in the `data`. Any `null` values that the write operation now sees in the data will be replaced with a "cache miss" value (i.e. `undefined`) when it has an associated error. This means that errored fields from your GraphQL API will be marked as uncached and won't be cached. Instead the client will now attempt a refetch of the data so that errors aren't preventing future refetches or with schema awareness it will attempt a refetch automatically. Additionally, the `updates` functions will now be able to check whether the current field has any errors associated with it with `info.error`. diff --git a/.changeset/strong-emus-confess.md b/.changeset/strong-emus-confess.md deleted file mode 100644 index 4bb537eeed..0000000000 --- a/.changeset/strong-emus-confess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/core': minor ---- - -Reemit an `OperationResult` as `stale: true` if it's being reexecuted as `network-only` operation to give bindings immediate feedback on background refetches. diff --git a/.changeset/twelve-camels-sit.md b/.changeset/twelve-camels-sit.md deleted file mode 100644 index fc3a8e8cb2..0000000000 --- a/.changeset/twelve-camels-sit.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'urql': major -'@urql/preact': major ---- - -**Breaking**: Remove `pollInterval` option from `useQuery`. Instead please consider using `useEffect` calling `executeQuery` on an interval. diff --git a/exchanges/graphcache/CHANGELOG.md b/exchanges/graphcache/CHANGELOG.md index b55c0e893d..23f5a9c596 100644 --- a/exchanges/graphcache/CHANGELOG.md +++ b/exchanges/graphcache/CHANGELOG.md @@ -1,5 +1,20 @@ # @urql/exchange-graphcache +## 4.0.0 + +### Major Changes + +- Add improved error awareness to Graphcache. When Graphcache now receives a `GraphQLError` (via a `CombinedError`) it checks whether the `GraphQLError`'s `path` matches up with `null` values in the `data`. Any `null` values that the write operation now sees in the data will be replaced with a "cache miss" value (i.e. `undefined`) when it has an associated error. This means that errored fields from your GraphQL API will be marked as uncached and won't be cached. Instead the client will now attempt a refetch of the data so that errors aren't preventing future refetches or with schema awareness it will attempt a refetch automatically. Additionally, the `updates` functions will now be able to check whether the current field has any errors associated with it with `info.error`, by [@kitten](https://github.com/kitten) (See [#1356](https://github.com/FormidableLabs/urql/pull/1356)) + +### Minor Changes + +- Allow `schema` option to be passed with a partial introspection result that only contains `queryType`, `mutationType`, and `subscriptionType` with their respective names. This allows you to pass `{ __schema: { queryType: { name: 'Query' } } }` and the likes to Graphcache's `cacheExchange` to alter the default root names without enabling full schema awareness, by [@kitten](https://github.com/kitten) (See [#1379](https://github.com/FormidableLabs/urql/pull/1379)) + +### Patch Changes + +- Updated dependencies (See [#1374](https://github.com/FormidableLabs/urql/pull/1374), [#1357](https://github.com/FormidableLabs/urql/pull/1357), and [#1375](https://github.com/FormidableLabs/urql/pull/1375)) + - @urql/core@2.0.0 + ## 3.4.0 ### Minor Changes diff --git a/exchanges/graphcache/package.json b/exchanges/graphcache/package.json index 76fc2f5b3c..e81aa3ded5 100644 --- a/exchanges/graphcache/package.json +++ b/exchanges/graphcache/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-graphcache", - "version": "3.4.0", + "version": "4.0.0", "description": "A normalized and configurable cache exchange for urql", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/graphcache", @@ -65,7 +65,7 @@ "preset": "../../scripts/jest/preset" }, "dependencies": { - "@urql/core": ">=1.16.1", + "@urql/core": ">=2.0.0", "wonka": "^4.0.14" }, "peerDependencies": { diff --git a/exchanges/persisted-fetch/CHANGELOG.md b/exchanges/persisted-fetch/CHANGELOG.md index c5f34ae55c..de20de373f 100644 --- a/exchanges/persisted-fetch/CHANGELOG.md +++ b/exchanges/persisted-fetch/CHANGELOG.md @@ -1,5 +1,16 @@ # @urql/exchange-persisted-fetch +## 1.3.0 + +### Minor Changes + +- Add `enforcePersistedQueries` option to `persistedFetchExchange`, which disables automatic persisted queries and retry logic, and instead assumes that persisted queries will be handled like normal GraphQL requests, by [@kitten](https://github.com/kitten) (See [#1358](https://github.com/FormidableLabs/urql/pull/1358)) + +### Patch Changes + +- Updated dependencies (See [#1374](https://github.com/FormidableLabs/urql/pull/1374), [#1357](https://github.com/FormidableLabs/urql/pull/1357), and [#1375](https://github.com/FormidableLabs/urql/pull/1375)) + - @urql/core@2.0.0 + ## 1.2.3 ### Patch Changes diff --git a/exchanges/persisted-fetch/package.json b/exchanges/persisted-fetch/package.json index 2d43422bcb..bcb3cbeab0 100644 --- a/exchanges/persisted-fetch/package.json +++ b/exchanges/persisted-fetch/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-persisted-fetch", - "version": "1.2.3", + "version": "1.3.0", "description": "An exchange that allows for persisted queries support when fetching queries", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -49,7 +49,7 @@ "preset": "../../scripts/jest/preset" }, "dependencies": { - "@urql/core": ">=1.14.1", + "@urql/core": ">=2.0.0", "wonka": "^4.0.14" }, "peerDependencies": { diff --git a/exchanges/request-policy/CHANGELOG.md b/exchanges/request-policy/CHANGELOG.md index 8c30f86a21..1fd35af29d 100644 --- a/exchanges/request-policy/CHANGELOG.md +++ b/exchanges/request-policy/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.1 + +### Patch Changes + +- ⚠️ Fix non-query operations being upgraded by `requestPolicyExchange` and time being stored by last issuance rather than last result, by [@kitten](https://github.com/kitten) (See [#1377](https://github.com/FormidableLabs/urql/pull/1377)) +- Updated dependencies (See [#1374](https://github.com/FormidableLabs/urql/pull/1374), [#1357](https://github.com/FormidableLabs/urql/pull/1357), and [#1375](https://github.com/FormidableLabs/urql/pull/1375)) + - @urql/core@2.0.0 + ## v0.1.0 **Initial Release** diff --git a/exchanges/request-policy/package.json b/exchanges/request-policy/package.json index 93ce4ed0e4..d7657963c9 100644 --- a/exchanges/request-policy/package.json +++ b/exchanges/request-policy/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-request-policy", - "version": "0.1.0", + "version": "0.1.1", "description": "An exchange for operation request-policy upgrading in urql", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -56,7 +56,7 @@ "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" }, "dependencies": { - "@urql/core": ">=1.12.0", + "@urql/core": ">=2.0.0", "wonka": "^4.0.14" }, "publishConfig": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 70e49cf2bc..f7b000115c 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,17 @@ # @urql/core +## 2.0.0 + +### Major Changes + +- **Breaking**: Remove `pollInterval` feature from `OperationContext`. Instead consider using a source that uses `Wonka.interval` and `Wonka.switchMap` over `client.query()`'s source, by [@kitten](https://github.com/kitten) (See [#1374](https://github.com/FormidableLabs/urql/pull/1374)) +- Remove deprecated `operationName` property from `Operation`s. The new `Operation.kind` property is now preferred. If you're creating new operations you may also use the `makeOperation` utility instead. + When upgrading `@urql/core` please ensure that your package manager didn't install any duplicates of it. You may deduplicate it manually using `npx yarn-deduplicate` (for Yarn) or `npm dedupe` (for npm), by [@kitten](https://github.com/kitten) (See [#1357](https://github.com/FormidableLabs/urql/pull/1357)) + +### Minor Changes + +- Reemit an `OperationResult` as `stale: true` if it's being reexecuted as `network-only` operation to give bindings immediate feedback on background refetches, by [@kitten](https://github.com/kitten) (See [#1375](https://github.com/FormidableLabs/urql/pull/1375)) + ## 1.16.2 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index dea74ae7d6..7c1d04ee87 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@urql/core", - "version": "1.16.2", + "version": "2.0.0", "description": "The shared core for the highly customizable and versatile GraphQL client", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", diff --git a/packages/introspection/CHANGELOG.md b/packages/introspection/CHANGELOG.md index c49a594993..f8c2bcc896 100644 --- a/packages/introspection/CHANGELOG.md +++ b/packages/introspection/CHANGELOG.md @@ -1,5 +1,11 @@ # @urql/introspection +## 0.2.0 + +### Minor Changes + +- Update `minifyIntrospectionQuery` utility to remove additional information on arguments and to filter out schema metadata types, like `__Field` and others, by [@kitten](https://github.com/kitten) (See [#1351](https://github.com/FormidableLabs/urql/pull/1351)) + ## 0.1.2 ### Patch Changes diff --git a/packages/introspection/package.json b/packages/introspection/package.json index 942aecb86a..c5fe52d842 100644 --- a/packages/introspection/package.json +++ b/packages/introspection/package.json @@ -1,6 +1,6 @@ { "name": "@urql/introspection", - "version": "0.1.2", + "version": "0.2.0", "description": "Utilities for dealing with Introspection Queries and Client Schemas", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", diff --git a/packages/next-urql/CHANGELOG.md b/packages/next-urql/CHANGELOG.md index 3c0547f62a..1369daa4a3 100644 --- a/packages/next-urql/CHANGELOG.md +++ b/packages/next-urql/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 3.0.0 + +### Patch Changes + +- Updated dependencies (See [#1335](https://github.com/FormidableLabs/urql/pull/1335), [#1357](https://github.com/FormidableLabs/urql/pull/1357), and [#1374](https://github.com/FormidableLabs/urql/pull/1374)) + - urql@2.0.0 + ## 2.2.0 ### Minor Changes diff --git a/packages/next-urql/package.json b/packages/next-urql/package.json index a0c6b3ba2e..33bf2f8452 100644 --- a/packages/next-urql/package.json +++ b/packages/next-urql/package.json @@ -1,6 +1,6 @@ { "name": "next-urql", - "version": "2.2.0", + "version": "3.0.0", "description": "Convenience wrappers for using urql with NextJS.", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -51,6 +51,6 @@ }, "peerDependencies": { "react": ">=16.8.0", - "urql": "^1.10.3" + "urql": "^2.0.0" } } diff --git a/packages/preact-urql/CHANGELOG.md b/packages/preact-urql/CHANGELOG.md index 676de7c4bb..b5efa28763 100644 --- a/packages/preact-urql/CHANGELOG.md +++ b/packages/preact-urql/CHANGELOG.md @@ -1,5 +1,21 @@ # @urql/preact +## 2.0.0 + +### Major Changes + +- **Breaking**: Remove `pollInterval` option from `useQuery`. Instead please consider using `useEffect` calling `executeQuery` on an interval, by [@kitten](https://github.com/kitten) (See [#1374](https://github.com/FormidableLabs/urql/pull/1374)) + +### Minor Changes + +- Remove deprecated `operationName` property from `Operation`s. The new `Operation.kind` property is now preferred. If you're creating new operations you may also use the `makeOperation` utility instead. + When upgrading `@urql/core` please ensure that your package manager didn't install any duplicates of it. You may deduplicate it manually using `npx yarn-deduplicate` (for Yarn) or `npm dedupe` (for npm), by [@kitten](https://github.com/kitten) (See [#1357](https://github.com/FormidableLabs/urql/pull/1357)) + +### Patch Changes + +- Updated dependencies (See [#1374](https://github.com/FormidableLabs/urql/pull/1374), [#1357](https://github.com/FormidableLabs/urql/pull/1357), and [#1375](https://github.com/FormidableLabs/urql/pull/1375)) + - @urql/core@2.0.0 + ## 1.4.4 ### Patch Changes diff --git a/packages/preact-urql/package.json b/packages/preact-urql/package.json index 814589359a..847ca8f93c 100644 --- a/packages/preact-urql/package.json +++ b/packages/preact-urql/package.json @@ -1,6 +1,6 @@ { "name": "@urql/preact", - "version": "1.4.4", + "version": "2.0.0", "description": "A highly customizable and versatile GraphQL client for Preact", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -60,7 +60,7 @@ "preact": ">= 10.0.0" }, "dependencies": { - "@urql/core": "^1.16.0", + "@urql/core": "^2.0.0", "wonka": "^4.0.14" }, "publishConfig": { diff --git a/packages/react-urql/CHANGELOG.md b/packages/react-urql/CHANGELOG.md index e34be52cbf..9ab2a60a77 100644 --- a/packages/react-urql/CHANGELOG.md +++ b/packages/react-urql/CHANGELOG.md @@ -1,5 +1,22 @@ # urql +## 2.0.0 + +### Major Changes + +- **Breaking**: Remove `pollInterval` option from `useQuery`. Instead please consider using `useEffect` calling `executeQuery` on an interval, by [@kitten](https://github.com/kitten) (See [#1374](https://github.com/FormidableLabs/urql/pull/1374)) + +### Minor Changes + +- Reimplement `useQuery` to apply a consistent Suspense cache (torn down queries will still eliminate stale values) and support all Concurrent Mode edge cases. This work is based on `useMutableSource`'s mechanisms and allows React to properly fork lanes since no implicit state exists outside of `useState` in the implementation. The `useSubscription` hook has been updated similarly without a cache or retrieving values on mount, by [@kitten](https://github.com/kitten) (See [#1335](https://github.com/FormidableLabs/urql/pull/1335)) +- Remove deprecated `operationName` property from `Operation`s. The new `Operation.kind` property is now preferred. If you're creating new operations you may also use the `makeOperation` utility instead. + When upgrading `@urql/core` please ensure that your package manager didn't install any duplicates of it. You may deduplicate it manually using `npx yarn-deduplicate` (for Yarn) or `npm dedupe` (for npm), by [@kitten](https://github.com/kitten) (See [#1357](https://github.com/FormidableLabs/urql/pull/1357)) + +### Patch Changes + +- Updated dependencies (See [#1374](https://github.com/FormidableLabs/urql/pull/1374), [#1357](https://github.com/FormidableLabs/urql/pull/1357), and [#1375](https://github.com/FormidableLabs/urql/pull/1375)) + - @urql/core@2.0.0 + ## 1.11.6 ### Patch Changes diff --git a/packages/react-urql/package.json b/packages/react-urql/package.json index 53cdb2a585..3d34abb5fe 100644 --- a/packages/react-urql/package.json +++ b/packages/react-urql/package.json @@ -1,6 +1,6 @@ { "name": "urql", - "version": "1.11.6", + "version": "2.0.0", "description": "A highly customizable and versatile GraphQL client for React", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -58,7 +58,7 @@ "react": ">= 16.8.0" }, "dependencies": { - "@urql/core": "^1.16.0", + "@urql/core": "^2.0.0", "wonka": "^4.0.14" } } diff --git a/packages/svelte-urql/CHANGELOG.md b/packages/svelte-urql/CHANGELOG.md index 8b9b5ccd81..409549179c 100644 --- a/packages/svelte-urql/CHANGELOG.md +++ b/packages/svelte-urql/CHANGELOG.md @@ -1,5 +1,17 @@ # @urql/svelte +## 1.2.0 + +### Minor Changes + +- Remove deprecated `operationName` property from `Operation`s. The new `Operation.kind` property is now preferred. If you're creating new operations you may also use the `makeOperation` utility instead. + When upgrading `@urql/core` please ensure that your package manager didn't install any duplicates of it. You may deduplicate it manually using `npx yarn-deduplicate` (for Yarn) or `npm dedupe` (for npm), by [@kitten](https://github.com/kitten) (See [#1357](https://github.com/FormidableLabs/urql/pull/1357)) + +### Patch Changes + +- Updated dependencies (See [#1374](https://github.com/FormidableLabs/urql/pull/1374), [#1357](https://github.com/FormidableLabs/urql/pull/1357), and [#1375](https://github.com/FormidableLabs/urql/pull/1375)) + - @urql/core@2.0.0 + ## 1.1.4 ### Patch Changes diff --git a/packages/svelte-urql/package.json b/packages/svelte-urql/package.json index bf23b046e5..cd22a8e305 100644 --- a/packages/svelte-urql/package.json +++ b/packages/svelte-urql/package.json @@ -1,6 +1,6 @@ { "name": "@urql/svelte", - "version": "1.1.4", + "version": "1.2.0", "description": "A highly customizable and versatile GraphQL client for Svelte", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -55,7 +55,7 @@ "svelte": "^3.0.0" }, "dependencies": { - "@urql/core": "^1.16.0", + "@urql/core": "^2.0.0", "wonka": "^4.0.14" }, "devDependencies": { diff --git a/packages/vue-urql/CHANGELOG.md b/packages/vue-urql/CHANGELOG.md index 43ce76603f..0888ed7879 100644 --- a/packages/vue-urql/CHANGELOG.md +++ b/packages/vue-urql/CHANGELOG.md @@ -1,5 +1,18 @@ # @urql/vue +## 0.3.0 + +### Minor Changes + +- **Breaking**: Remove `pollInterval` option from `useQuery`. Please consider adding an interval manually calling `executeQuery()`, by [@kitten](https://github.com/kitten) (See [#1374](https://github.com/FormidableLabs/urql/pull/1374)) +- Remove deprecated `operationName` property from `Operation`s. The new `Operation.kind` property is now preferred. If you're creating new operations you may also use the `makeOperation` utility instead. + When upgrading `@urql/core` please ensure that your package manager didn't install any duplicates of it. You may deduplicate it manually using `npx yarn-deduplicate` (for Yarn) or `npm dedupe` (for npm), by [@kitten](https://github.com/kitten) (See [#1357](https://github.com/FormidableLabs/urql/pull/1357)) + +### Patch Changes + +- Updated dependencies (See [#1374](https://github.com/FormidableLabs/urql/pull/1374), [#1357](https://github.com/FormidableLabs/urql/pull/1357), and [#1375](https://github.com/FormidableLabs/urql/pull/1375)) + - @urql/core@2.0.0 + ## 0.2.1 ### Patch Changes diff --git a/packages/vue-urql/package.json b/packages/vue-urql/package.json index 04930a1cad..5a8206850f 100644 --- a/packages/vue-urql/package.json +++ b/packages/vue-urql/package.json @@ -1,6 +1,6 @@ { "name": "@urql/vue", - "version": "0.2.1", + "version": "0.3.0", "description": "A highly customizable and versatile GraphQL client for vue", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -59,7 +59,7 @@ "vue": "^3.0.0" }, "dependencies": { - "@urql/core": "^1.16.0", + "@urql/core": "^2.0.0", "wonka": "^4.0.14" }, "publishConfig": {