diff --git a/.changeset/brave-lamps-punch.md b/.changeset/brave-lamps-punch.md deleted file mode 100644 index 1a0c3671a8..0000000000 --- a/.changeset/brave-lamps-punch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-graphcache': patch ---- - -Use new `FormattedNode` / `formatDocument` functionality added to `@urql/core` to slightly speed up directive processing by using the client-side `_directives` dictionary that `formatDocument` adds. diff --git a/.changeset/eleven-snakes-look.md b/.changeset/eleven-snakes-look.md deleted file mode 100644 index 0abdacfa17..0000000000 --- a/.changeset/eleven-snakes-look.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-graphcache': patch ---- - -Allow `offlineExchange` to once again issue all request policies, instead of mapping them to `cache-first`. When replaying operations after rehydrating it will now prioritise network policies, and before rehydrating receiving a network result will prevent a network request from being issued again. diff --git a/.changeset/generated-one-myself.md b/.changeset/generated-one-myself.md deleted file mode 100644 index fa2a9b0bcc..0000000000 --- a/.changeset/generated-one-myself.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@urql/next': major ---- - -Create `@urql/next` which is a package meant to support Next 13 and -the React 18 features contained within. - -For server components we have `@urql/next/rsc` and for client components -just `@urql/next`. diff --git a/.changeset/rude-waves-check.md b/.changeset/rude-waves-check.md deleted file mode 100644 index 519ea5fe2b..0000000000 --- a/.changeset/rude-waves-check.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/core': minor ---- - -Update `formatDocument` to output `FormattedNode` type mapping. The formatter will now annotate added `__typename` fields with `_generated: true`, place selection nodes' directives onto a `_directives` dictionary, and will filter directives to not include `"_"` underscore prefixed directives in the final query. This prepares us for a feature that allows enhanced client-side directives in Graphcache. diff --git a/.changeset/serious-balloons-cheat.md b/.changeset/serious-balloons-cheat.md deleted file mode 100644 index 6771508a07..0000000000 --- a/.changeset/serious-balloons-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'urql': patch ---- - -Fix edge case that causes execute functions from `useQuery` and `useSubscription` to fail when they’re called in their state after a render that changes `pause`. This would previously cause internal dependencies to be outdated and the source to be discarded immediately in some cases. diff --git a/.changeset/seven-adults-fix.md b/.changeset/seven-adults-fix.md deleted file mode 100644 index fc0ee6f455..0000000000 --- a/.changeset/seven-adults-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/exchange-persisted': minor ---- - -Allow persisted query logic to be skipped by the `persistedExchange` if the passed `generateHash` function resolves to a nullish value. This allows (A)PQ to be selectively disabled for individual operations. diff --git a/.changeset/two-ants-relate.md b/.changeset/two-ants-relate.md deleted file mode 100644 index 67ecbdb842..0000000000 --- a/.changeset/two-ants-relate.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@urql/exchange-graphcache': patch -'@urql/core': patch ---- - -Add `OperationContext.optimistic` flag as an internal indication on whether a mutation triggered an optimistic update in `@urql/exchange-graphcache`'s `cacheExchange`. diff --git a/examples/with-apq/package.json b/examples/with-apq/package.json index a39b585cb2..9423f69d78 100644 --- a/examples/with-apq/package.json +++ b/examples/with-apq/package.json @@ -6,12 +6,12 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^4.0.11", - "@urql/exchange-persisted": "^4.0.1", + "@urql/core": "^4.1.0", + "@urql/exchange-persisted": "^4.1.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-defer-stream-directives/package.json b/examples/with-defer-stream-directives/package.json index 7acdb1ce22..a90879bdbd 100644 --- a/examples/with-defer-stream-directives/package.json +++ b/examples/with-defer-stream-directives/package.json @@ -17,12 +17,12 @@ }, "dependencies": { "@graphql-yoga/plugin-defer-stream": "^1.7.1", - "@urql/core": "^4.0.11", - "@urql/exchange-graphcache": "^6.1.4", + "@urql/core": "^4.1.0", + "@urql/exchange-graphcache": "^6.1.5", "graphql": "17.0.0-alpha.2", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@apollo/server": "^4.4.1", diff --git a/examples/with-graphcache-pagination/package.json b/examples/with-graphcache-pagination/package.json index d80c335c79..952032303f 100644 --- a/examples/with-graphcache-pagination/package.json +++ b/examples/with-graphcache-pagination/package.json @@ -6,12 +6,12 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^4.0.11", - "@urql/exchange-graphcache": "^6.1.4", + "@urql/core": "^4.1.0", + "@urql/exchange-graphcache": "^6.1.5", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-graphcache-updates/package.json b/examples/with-graphcache-updates/package.json index e92c642e16..245dc22bc4 100644 --- a/examples/with-graphcache-updates/package.json +++ b/examples/with-graphcache-updates/package.json @@ -6,13 +6,13 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "@urql/exchange-auth": "^2.1.5", - "@urql/exchange-graphcache": "^6.1.4", + "@urql/exchange-graphcache": "^6.1.5", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-infinite-pagination/package.json b/examples/with-infinite-pagination/package.json index 3d2cf74c0c..d4fab8cf3d 100644 --- a/examples/with-infinite-pagination/package.json +++ b/examples/with-infinite-pagination/package.json @@ -6,11 +6,11 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-multipart/package.json b/examples/with-multipart/package.json index 19fa2fc0b6..6b680330e6 100644 --- a/examples/with-multipart/package.json +++ b/examples/with-multipart/package.json @@ -6,11 +6,11 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-next/package.json b/examples/with-next/package.json index 31bea9a22b..e36be56e2d 100644 --- a/examples/with-next/package.json +++ b/examples/with-next/package.json @@ -3,13 +3,13 @@ "version": "0.0.0", "private": true, "dependencies": { - "@urql/core": "^4.0.11", - "@urql/next": "^1.0.0-beta.2", + "@urql/core": "^4.1.0", + "@urql/next": "^1.0.0", "graphql": "^16.6.0", "next": "13.4.2", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "scripts": { "dev": "next dev", diff --git a/examples/with-pagination/package.json b/examples/with-pagination/package.json index 3d2cf74c0c..d4fab8cf3d 100644 --- a/examples/with-pagination/package.json +++ b/examples/with-pagination/package.json @@ -6,11 +6,11 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-react-native/package.json b/examples/with-react-native/package.json index c539a424b0..c2983e66be 100644 --- a/examples/with-react-native/package.json +++ b/examples/with-react-native/package.json @@ -8,11 +8,11 @@ "start": "react-native start" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "graphql": "^16.6.0", "react": "18.2.0", "react-native": "0.71.4", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@babel/core": "^7.12.9", diff --git a/examples/with-react/package.json b/examples/with-react/package.json index 239df0402c..565ddc3c66 100644 --- a/examples/with-react/package.json +++ b/examples/with-react/package.json @@ -6,11 +6,11 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-refresh-auth/package.json b/examples/with-refresh-auth/package.json index 9b833f04de..9ca26705fc 100644 --- a/examples/with-refresh-auth/package.json +++ b/examples/with-refresh-auth/package.json @@ -6,12 +6,12 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "@urql/exchange-auth": "^2.1.5", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-retry/package.json b/examples/with-retry/package.json index b9c7cb9f68..3d3789dfd4 100644 --- a/examples/with-retry/package.json +++ b/examples/with-retry/package.json @@ -6,12 +6,12 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "@urql/exchange-retry": "^1.2.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-subscriptions-via-fetch/package.json b/examples/with-subscriptions-via-fetch/package.json index 53452dfbaa..d338867a24 100644 --- a/examples/with-subscriptions-via-fetch/package.json +++ b/examples/with-subscriptions-via-fetch/package.json @@ -8,12 +8,12 @@ "start": "run-p client server" }, "dependencies": { - "@urql/core": "^4.0.11", - "@urql/exchange-graphcache": "^6.1.4", + "@urql/core": "^4.1.0", + "@urql/exchange-graphcache": "^6.1.5", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.0.4" + "urql": "^4.0.5" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-svelte/package.json b/examples/with-svelte/package.json index ef0a955618..f7bd294874 100644 --- a/examples/with-svelte/package.json +++ b/examples/with-svelte/package.json @@ -8,7 +8,7 @@ "serve": "vite preview" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "@urql/svelte": "^4.0.3", "graphql": "^16.6.0", "svelte": "^4.0.5" diff --git a/examples/with-vue3/package.json b/examples/with-vue3/package.json index fd42190a5d..1b999540cf 100644 --- a/examples/with-vue3/package.json +++ b/examples/with-vue3/package.json @@ -8,7 +8,7 @@ "serve": "vite preview" }, "dependencies": { - "@urql/core": "^4.0.11", + "@urql/core": "^4.1.0", "@urql/vue": "^1.1.2", "graphql": "^16.6.0", "vue": "^3.2.47" diff --git a/exchanges/auth/package.json b/exchanges/auth/package.json index 6d02a36418..74d56c0a40 100644 --- a/exchanges/auth/package.json +++ b/exchanges/auth/package.json @@ -49,7 +49,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=4.0.0", + "@urql/core": ">=4.1.0", "wonka": "^6.3.2" }, "devDependencies": { diff --git a/exchanges/context/package.json b/exchanges/context/package.json index c980e871c2..82898d4871 100644 --- a/exchanges/context/package.json +++ b/exchanges/context/package.json @@ -48,7 +48,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=4.0.0", + "@urql/core": ">=4.1.0", "wonka": "^6.3.2" }, "devDependencies": { diff --git a/exchanges/execute/package.json b/exchanges/execute/package.json index 404e39ec31..21d0934e98 100644 --- a/exchanges/execute/package.json +++ b/exchanges/execute/package.json @@ -49,7 +49,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=4.0.0", + "@urql/core": ">=4.1.0", "wonka": "^6.3.2" }, "peerDependencies": { diff --git a/exchanges/graphcache/CHANGELOG.md b/exchanges/graphcache/CHANGELOG.md index 89dbc93c03..14bc7b6283 100644 --- a/exchanges/graphcache/CHANGELOG.md +++ b/exchanges/graphcache/CHANGELOG.md @@ -1,5 +1,18 @@ # @urql/exchange-graphcache +## 6.1.5 + +### Patch Changes + +- Use new `FormattedNode` / `formatDocument` functionality added to `@urql/core` to slightly speed up directive processing by using the client-side `_directives` dictionary that `formatDocument` adds + Submitted by [@kitten](https://github.com/kitten) (See [#3317](https://github.com/urql-graphql/urql/pull/3317)) +- Allow `offlineExchange` to once again issue all request policies, instead of mapping them to `cache-first`. When replaying operations after rehydrating it will now prioritise network policies, and before rehydrating receiving a network result will prevent a network request from being issued again + Submitted by [@kitten](https://github.com/kitten) (See [#3308](https://github.com/urql-graphql/urql/pull/3308)) +- Add `OperationContext.optimistic` flag as an internal indication on whether a mutation triggered an optimistic update in `@urql/exchange-graphcache`'s `cacheExchange` + Submitted by [@kitten](https://github.com/kitten) (See [#3308](https://github.com/urql-graphql/urql/pull/3308)) +- Updated dependencies (See [#3317](https://github.com/urql-graphql/urql/pull/3317) and [#3308](https://github.com/urql-graphql/urql/pull/3308)) + - @urql/core@4.1.0 + ## 6.1.4 ### Patch Changes diff --git a/exchanges/graphcache/package.json b/exchanges/graphcache/package.json index fab767f12c..e5a8a4e70d 100644 --- a/exchanges/graphcache/package.json +++ b/exchanges/graphcache/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-graphcache", - "version": "6.1.4", + "version": "6.1.5", "description": "A normalized and configurable cache exchange for urql", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/graphcache", @@ -64,7 +64,7 @@ }, "dependencies": { "@0no-co/graphql.web": "^1.0.1", - "@urql/core": ">=4.0.0", + "@urql/core": ">=4.1.0", "wonka": "^6.3.2" }, "devDependencies": { diff --git a/exchanges/persisted/CHANGELOG.md b/exchanges/persisted/CHANGELOG.md index 0479cdd9da..932d48dfe1 100644 --- a/exchanges/persisted/CHANGELOG.md +++ b/exchanges/persisted/CHANGELOG.md @@ -1,5 +1,17 @@ # @urql/exchange-persisted-fetch +## 4.1.0 + +### Minor Changes + +- Allow persisted query logic to be skipped by the `persistedExchange` if the passed `generateHash` function resolves to a nullish value. This allows (A)PQ to be selectively disabled for individual operations + Submitted by [@kitten](https://github.com/kitten) (See [#3324](https://github.com/urql-graphql/urql/pull/3324)) + +### Patch Changes + +- Updated dependencies (See [#3317](https://github.com/urql-graphql/urql/pull/3317) and [#3308](https://github.com/urql-graphql/urql/pull/3308)) + - @urql/core@4.1.0 + ## 4.0.1 ### Patch Changes diff --git a/exchanges/persisted/package.json b/exchanges/persisted/package.json index 2587793d3c..78418a0920 100644 --- a/exchanges/persisted/package.json +++ b/exchanges/persisted/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-persisted", - "version": "4.0.1", + "version": "4.1.0", "description": "An exchange that allows for persisted queries support when fetching queries", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -47,7 +47,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=4.0.0", + "@urql/core": ">=4.1.0", "wonka": "^6.3.2" }, "devDependencies": { diff --git a/exchanges/populate/package.json b/exchanges/populate/package.json index 989b81b662..a2f82fdda7 100644 --- a/exchanges/populate/package.json +++ b/exchanges/populate/package.json @@ -47,7 +47,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=4.0.0", + "@urql/core": ">=4.1.0", "wonka": "^6.3.2" }, "peerDependencies": { diff --git a/exchanges/refocus/package.json b/exchanges/refocus/package.json index 3a2315128a..40beb318cf 100644 --- a/exchanges/refocus/package.json +++ b/exchanges/refocus/package.json @@ -54,7 +54,7 @@ "graphql": "^16.0.0" }, "dependencies": { - "@urql/core": ">=4.0.0", + "@urql/core": ">=4.1.0", "wonka": "^6.3.2" }, "publishConfig": { diff --git a/exchanges/request-policy/package.json b/exchanges/request-policy/package.json index e93ce33d18..36b6e7b794 100644 --- a/exchanges/request-policy/package.json +++ b/exchanges/request-policy/package.json @@ -52,7 +52,7 @@ "graphql": "^16.0.0" }, "dependencies": { - "@urql/core": ">=4.0.0", + "@urql/core": ">=4.1.0", "wonka": "^6.3.2" }, "publishConfig": { diff --git a/exchanges/retry/package.json b/exchanges/retry/package.json index c04b23cfae..4dd7defd61 100644 --- a/exchanges/retry/package.json +++ b/exchanges/retry/package.json @@ -52,7 +52,7 @@ "graphql": "^16.0.0" }, "dependencies": { - "@urql/core": ">=4.0.0", + "@urql/core": ">=4.1.0", "wonka": "^6.3.2" }, "publishConfig": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index cbe556bc05..6d572ec532 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,17 @@ # @urql/core +## 4.1.0 + +### Minor Changes + +- Update `formatDocument` to output `FormattedNode` type mapping. The formatter will now annotate added `__typename` fields with `_generated: true`, place selection nodes' directives onto a `_directives` dictionary, and will filter directives to not include `"_"` underscore prefixed directives in the final query. This prepares us for a feature that allows enhanced client-side directives in Graphcache + Submitted by [@kitten](https://github.com/kitten) (See [#3317](https://github.com/urql-graphql/urql/pull/3317)) + +### Patch Changes + +- Add `OperationContext.optimistic` flag as an internal indication on whether a mutation triggered an optimistic update in `@urql/exchange-graphcache`'s `cacheExchange` + Submitted by [@kitten](https://github.com/kitten) (See [#3308](https://github.com/urql-graphql/urql/pull/3308)) + ## 4.0.11 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 46edaf2158..87310d756e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@urql/core", - "version": "4.0.11", + "version": "4.1.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/next-urql/CHANGELOG.md b/packages/next-urql/CHANGELOG.md index f1a09c11d6..76da626e4e 100644 --- a/packages/next-urql/CHANGELOG.md +++ b/packages/next-urql/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 1.0.0 + +### Major Changes + +- Create `@urql/next` which is a package meant to support Next 13 and + the React 18 features contained within. + For server components we have `@urql/next/rsc` and for client components + just `@urql/next` + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3214](https://github.com/urql-graphql/urql/pull/3214)) + ## 5.0.2 ### Patch Changes diff --git a/packages/next-urql/package.json b/packages/next-urql/package.json index aaecbfdd45..9beb108823 100644 --- a/packages/next-urql/package.json +++ b/packages/next-urql/package.json @@ -1,6 +1,6 @@ { "name": "@urql/next", - "version": "0.1.0", + "version": "1.0.0", "description": "Convenience wrappers for using urql with NextJS.", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", diff --git a/packages/preact-urql/package.json b/packages/preact-urql/package.json index e5d3e138b0..851db723dc 100644 --- a/packages/preact-urql/package.json +++ b/packages/preact-urql/package.json @@ -58,7 +58,7 @@ "preact": ">= 10.0.0" }, "dependencies": { - "@urql/core": "^4.0.0", + "@urql/core": "^4.1.0", "wonka": "^6.3.2" }, "publishConfig": { diff --git a/packages/react-urql/CHANGELOG.md b/packages/react-urql/CHANGELOG.md index 9427987aff..8025974eda 100644 --- a/packages/react-urql/CHANGELOG.md +++ b/packages/react-urql/CHANGELOG.md @@ -1,5 +1,14 @@ # urql +## 4.0.5 + +### Patch Changes + +- ⚠️ Fix edge case that causes execute functions from `useQuery` and `useSubscription` to fail when they’re called in their state after a render that changes `pause`. This would previously cause internal dependencies to be outdated and the source to be discarded immediately in some cases + Submitted by [@kitten](https://github.com/kitten) (See [#3323](https://github.com/urql-graphql/urql/pull/3323)) +- Updated dependencies (See [#3317](https://github.com/urql-graphql/urql/pull/3317) and [#3308](https://github.com/urql-graphql/urql/pull/3308)) + - @urql/core@4.1.0 + ## 4.0.4 ### Patch Changes diff --git a/packages/react-urql/package.json b/packages/react-urql/package.json index 2c839f5617..d91b727e70 100644 --- a/packages/react-urql/package.json +++ b/packages/react-urql/package.json @@ -1,6 +1,6 @@ { "name": "urql", - "version": "4.0.4", + "version": "4.0.5", "description": "A highly customizable and versatile GraphQL client for React", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -61,7 +61,7 @@ "react": ">= 16.8.0" }, "dependencies": { - "@urql/core": "^4.0.0", + "@urql/core": "^4.1.0", "wonka": "^6.3.2" }, "publishConfig": { diff --git a/packages/svelte-urql/package.json b/packages/svelte-urql/package.json index d9bd44d483..70d2d93ad7 100644 --- a/packages/svelte-urql/package.json +++ b/packages/svelte-urql/package.json @@ -52,7 +52,7 @@ "svelte": "^3.0.0 || ^4.0.0" }, "dependencies": { - "@urql/core": "^4.0.0", + "@urql/core": "^4.1.0", "wonka": "^6.3.2" }, "devDependencies": { diff --git a/packages/vue-urql/package.json b/packages/vue-urql/package.json index 047e583226..3725f7802c 100644 --- a/packages/vue-urql/package.json +++ b/packages/vue-urql/package.json @@ -58,7 +58,7 @@ "vue": "^2.7.0 || ^3.0.0" }, "dependencies": { - "@urql/core": "^4.0.0", + "@urql/core": "^4.1.0", "wonka": "^6.3.2" }, "publishConfig": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ba3c7259cf..d880dbd5d4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -182,7 +182,7 @@ importers: exchanges/auth: dependencies: '@urql/core': - specifier: '>=4.0.0' + specifier: '>=4.1.0' version: link:../../packages/core wonka: specifier: ^6.3.2 @@ -195,7 +195,7 @@ importers: exchanges/context: dependencies: '@urql/core': - specifier: '>=4.0.0' + specifier: '>=4.1.0' version: link:../../packages/core wonka: specifier: ^6.3.2 @@ -208,7 +208,7 @@ importers: exchanges/execute: dependencies: '@urql/core': - specifier: '>=4.0.0' + specifier: '>=4.1.0' version: link:../../packages/core wonka: specifier: ^6.3.2 @@ -224,7 +224,7 @@ importers: specifier: ^1.0.1 version: 1.0.1(graphql@16.6.0) '@urql/core': - specifier: '>=4.0.0' + specifier: '>=4.1.0' version: link:../../packages/core wonka: specifier: ^6.3.2 @@ -258,7 +258,7 @@ importers: exchanges/persisted: dependencies: '@urql/core': - specifier: '>=4.0.0' + specifier: '>=4.1.0' version: link:../../packages/core wonka: specifier: ^6.3.2 @@ -271,7 +271,7 @@ importers: exchanges/populate: dependencies: '@urql/core': - specifier: '>=4.0.0' + specifier: '>=4.1.0' version: link:../../packages/core wonka: specifier: ^6.3.2 @@ -284,7 +284,7 @@ importers: exchanges/refocus: dependencies: '@urql/core': - specifier: '>=4.0.0' + specifier: '>=4.1.0' version: link:../../packages/core wonka: specifier: ^6.3.2 @@ -300,7 +300,7 @@ importers: exchanges/request-policy: dependencies: '@urql/core': - specifier: '>=4.0.0' + specifier: '>=4.1.0' version: link:../../packages/core wonka: specifier: ^6.3.2 @@ -313,7 +313,7 @@ importers: exchanges/retry: dependencies: '@urql/core': - specifier: '>=4.0.0' + specifier: '>=4.1.0' version: link:../../packages/core wonka: specifier: ^6.3.2 @@ -368,7 +368,7 @@ importers: packages/preact-urql: dependencies: '@urql/core': - specifier: ^4.0.0 + specifier: ^4.1.0 version: link:../core wonka: specifier: ^6.3.2 @@ -387,7 +387,7 @@ importers: packages/react-urql: dependencies: '@urql/core': - specifier: ^4.0.0 + specifier: ^4.1.0 version: link:../core wonka: specifier: ^6.3.2 @@ -557,7 +557,7 @@ importers: packages/svelte-urql: dependencies: '@urql/core': - specifier: ^4.0.0 + specifier: ^4.1.0 version: link:../core wonka: specifier: ^6.3.2 @@ -573,7 +573,7 @@ importers: packages/vue-urql: dependencies: '@urql/core': - specifier: ^4.0.0 + specifier: ^4.1.0 version: link:../core wonka: specifier: ^6.3.2