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

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

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
e5fa521d d6bdd72e

+132 -118
-5
.changeset/brave-lamps-punch.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - 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.
-5
.changeset/eleven-snakes-look.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - 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.
-9
.changeset/generated-one-myself.md
··· 1 - --- 2 - '@urql/next': major 3 - --- 4 - 5 - Create `@urql/next` which is a package meant to support Next 13 and 6 - the React 18 features contained within. 7 - 8 - For server components we have `@urql/next/rsc` and for client components 9 - just `@urql/next`.
-13
.changeset/odd-taxis-tease.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Implement **local directives**. It’s now possible to add client-only directives to queries by adding them to the `cacheExchange`’s new `directives` option. 6 - Directives accept an object of their arguments and return a resolver. When a field is annotated with 7 - a resolver, e.g. `@_optional` or `@_required`, their resolvers from the `directives` config are 8 - executed. This means it’s now possible to use `@_relayPagination` for example, by passing adding 9 - the `relayPagination` helper to the config. 10 - Due to the change in [#3317](https://github.com/urql-graphql/urql/pull/3317), any directive in 11 - queries that’s prefixed with an underscore (`_`) is only visible to Graphcache and not the API. 12 - 13 - See: https://github.com/urql-graphql/urql/pull/3306
-5
.changeset/rude-waves-check.md
··· 1 - --- 2 - '@urql/core': minor 3 - --- 4 - 5 - 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.
-5
.changeset/serious-balloons-cheat.md
··· 1 - --- 2 - 'urql': patch 3 - --- 4 - 5 - 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.
-5
.changeset/seven-adults-fix.md
··· 1 - --- 2 - '@urql/exchange-persisted': minor 3 - --- 4 - 5 - 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.
-6
.changeset/two-ants-relate.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - '@urql/core': patch 4 - --- 5 - 6 - Add `OperationContext.optimistic` flag as an internal indication on whether a mutation triggered an optimistic update in `@urql/exchange-graphcache`'s `cacheExchange`.
+3 -3
examples/with-apq/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.11", 10 - "@urql/exchange-persisted": "^4.0.1", 9 + "@urql/core": "^4.1.0", 10 + "@urql/exchange-persisted": "^4.1.0", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0", 14 - "urql": "^4.0.4" 14 + "urql": "^4.0.5" 15 15 }, 16 16 "devDependencies": { 17 17 "@vitejs/plugin-react": "^3.1.0",
+3 -3
examples/with-defer-stream-directives/package.json
··· 17 17 }, 18 18 "dependencies": { 19 19 "@graphql-yoga/plugin-defer-stream": "^1.7.1", 20 - "@urql/core": "^4.0.11", 21 - "@urql/exchange-graphcache": "^6.1.4", 20 + "@urql/core": "^4.1.0", 21 + "@urql/exchange-graphcache": "^6.2.0", 22 22 "graphql": "17.0.0-alpha.2", 23 23 "react": "^18.2.0", 24 24 "react-dom": "^18.2.0", 25 - "urql": "^4.0.4" 25 + "urql": "^4.0.5" 26 26 }, 27 27 "devDependencies": { 28 28 "@apollo/server": "^4.4.1",
+3 -3
examples/with-graphcache-pagination/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.11", 10 - "@urql/exchange-graphcache": "^6.1.4", 9 + "@urql/core": "^4.1.0", 10 + "@urql/exchange-graphcache": "^6.2.0", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0", 14 - "urql": "^4.0.4" 14 + "urql": "^4.0.5" 15 15 }, 16 16 "devDependencies": { 17 17 "@vitejs/plugin-react": "^3.1.0",
+3 -3
examples/with-graphcache-updates/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.11", 9 + "@urql/core": "^4.1.0", 10 10 "@urql/exchange-auth": "^2.1.5", 11 - "@urql/exchange-graphcache": "^6.1.4", 11 + "@urql/exchange-graphcache": "^6.2.0", 12 12 "graphql": "^16.6.0", 13 13 "react": "^18.2.0", 14 14 "react-dom": "^18.2.0", 15 - "urql": "^4.0.4" 15 + "urql": "^4.0.5" 16 16 }, 17 17 "devDependencies": { 18 18 "@vitejs/plugin-react": "^3.1.0",
+2 -2
examples/with-infinite-pagination/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.11", 9 + "@urql/core": "^4.1.0", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0", 13 - "urql": "^4.0.4" 13 + "urql": "^4.0.5" 14 14 }, 15 15 "devDependencies": { 16 16 "@vitejs/plugin-react": "^3.1.0",
+2 -2
examples/with-multipart/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.11", 9 + "@urql/core": "^4.1.0", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0", 13 - "urql": "^4.0.4" 13 + "urql": "^4.0.5" 14 14 }, 15 15 "devDependencies": { 16 16 "@vitejs/plugin-react": "^3.1.0",
+3 -3
examples/with-next/package.json
··· 3 3 "version": "0.0.0", 4 4 "private": true, 5 5 "dependencies": { 6 - "@urql/core": "^4.0.11", 7 - "@urql/next": "^1.0.0-beta.2", 6 + "@urql/core": "^4.1.0", 7 + "@urql/next": "^1.0.0", 8 8 "graphql": "^16.6.0", 9 9 "next": "13.4.2", 10 10 "react": "^18.2.0", 11 11 "react-dom": "^18.2.0", 12 - "urql": "^4.0.4" 12 + "urql": "^4.0.5" 13 13 }, 14 14 "scripts": { 15 15 "dev": "next dev",
+2 -2
examples/with-pagination/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.11", 9 + "@urql/core": "^4.1.0", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0", 13 - "urql": "^4.0.4" 13 + "urql": "^4.0.5" 14 14 }, 15 15 "devDependencies": { 16 16 "@vitejs/plugin-react": "^3.1.0",
+2 -2
examples/with-react-native/package.json
··· 8 8 "start": "react-native start" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.0.11", 11 + "@urql/core": "^4.1.0", 12 12 "graphql": "^16.6.0", 13 13 "react": "18.2.0", 14 14 "react-native": "0.71.4", 15 - "urql": "^4.0.4" 15 + "urql": "^4.0.5" 16 16 }, 17 17 "devDependencies": { 18 18 "@babel/core": "^7.12.9",
+2 -2
examples/with-react/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.11", 9 + "@urql/core": "^4.1.0", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0", 13 - "urql": "^4.0.4" 13 + "urql": "^4.0.5" 14 14 }, 15 15 "devDependencies": { 16 16 "@vitejs/plugin-react": "^3.1.0",
+2 -2
examples/with-refresh-auth/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.11", 9 + "@urql/core": "^4.1.0", 10 10 "@urql/exchange-auth": "^2.1.5", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0", 14 - "urql": "^4.0.4" 14 + "urql": "^4.0.5" 15 15 }, 16 16 "devDependencies": { 17 17 "@vitejs/plugin-react": "^3.1.0",
+2 -2
examples/with-retry/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.0.11", 9 + "@urql/core": "^4.1.0", 10 10 "@urql/exchange-retry": "^1.2.0", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0", 14 - "urql": "^4.0.4" 14 + "urql": "^4.0.5" 15 15 }, 16 16 "devDependencies": { 17 17 "@vitejs/plugin-react": "^3.1.0",
+3 -3
examples/with-subscriptions-via-fetch/package.json
··· 8 8 "start": "run-p client server" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.0.11", 12 - "@urql/exchange-graphcache": "^6.1.4", 11 + "@urql/core": "^4.1.0", 12 + "@urql/exchange-graphcache": "^6.2.0", 13 13 "graphql": "^16.6.0", 14 14 "react": "^18.2.0", 15 15 "react-dom": "^18.2.0", 16 - "urql": "^4.0.4" 16 + "urql": "^4.0.5" 17 17 }, 18 18 "devDependencies": { 19 19 "@vitejs/plugin-react": "^3.1.0",
+1 -1
examples/with-svelte/package.json
··· 8 8 "serve": "vite preview" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.0.11", 11 + "@urql/core": "^4.1.0", 12 12 "@urql/svelte": "^4.0.3", 13 13 "graphql": "^16.6.0", 14 14 "svelte": "^4.0.5"
+1 -1
examples/with-vue3/package.json
··· 8 8 "serve": "vite preview" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.0.11", 11 + "@urql/core": "^4.1.0", 12 12 "@urql/vue": "^1.1.2", 13 13 "graphql": "^16.6.0", 14 14 "vue": "^3.2.47"
+1 -1
exchanges/auth/package.json
··· 49 49 "prepublishOnly": "run-s clean build" 50 50 }, 51 51 "dependencies": { 52 - "@urql/core": ">=4.0.0", 52 + "@urql/core": ">=4.1.0", 53 53 "wonka": "^6.3.2" 54 54 }, 55 55 "devDependencies": {
+1 -1
exchanges/context/package.json
··· 48 48 "prepublishOnly": "run-s clean build" 49 49 }, 50 50 "dependencies": { 51 - "@urql/core": ">=4.0.0", 51 + "@urql/core": ">=4.1.0", 52 52 "wonka": "^6.3.2" 53 53 }, 54 54 "devDependencies": {
+1 -1
exchanges/execute/package.json
··· 49 49 "prepublishOnly": "run-s clean build" 50 50 }, 51 51 "dependencies": { 52 - "@urql/core": ">=4.0.0", 52 + "@urql/core": ">=4.1.0", 53 53 "wonka": "^6.3.2" 54 54 }, 55 55 "peerDependencies": {
+24
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 6.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Implement **local directives**. It’s now possible to add client-only directives to queries by adding them to the `cacheExchange`’s new `directives` option. 8 + Directives accept an object of their arguments and return a resolver. When a field is annotated with 9 + a resolver, e.g. `@_optional` or `@_required`, their resolvers from the `directives` config are 10 + executed. This means it’s now possible to use `@_relayPagination` for example, by passing adding 11 + the `relayPagination` helper to the config. 12 + Due to the change in [#3317](https://github.com/urql-graphql/urql/pull/3317), any directive in 13 + queries that’s prefixed with an underscore (`_`) is only visible to Graphcache and not the API. 14 + Submitted by undefined (See https://github.com/urql-graphql/urql/pull/3306) 15 + 16 + ### Patch Changes 17 + 18 + - 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 19 + Submitted by [@kitten](https://github.com/kitten) (See [#3317](https://github.com/urql-graphql/urql/pull/3317)) 20 + - 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 21 + Submitted by [@kitten](https://github.com/kitten) (See [#3308](https://github.com/urql-graphql/urql/pull/3308)) 22 + - Add `OperationContext.optimistic` flag as an internal indication on whether a mutation triggered an optimistic update in `@urql/exchange-graphcache`'s `cacheExchange` 23 + Submitted by [@kitten](https://github.com/kitten) (See [#3308](https://github.com/urql-graphql/urql/pull/3308)) 24 + - Updated dependencies (See [#3317](https://github.com/urql-graphql/urql/pull/3317) and [#3308](https://github.com/urql-graphql/urql/pull/3308)) 25 + - @urql/core@4.1.0 26 + 3 27 ## 6.1.4 4 28 5 29 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "6.1.4", 3 + "version": "6.2.0", 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", ··· 64 64 }, 65 65 "dependencies": { 66 66 "@0no-co/graphql.web": "^1.0.1", 67 - "@urql/core": ">=4.0.0", 67 + "@urql/core": ">=4.1.0", 68 68 "wonka": "^6.3.2" 69 69 }, 70 70 "devDependencies": {
+12
exchanges/persisted/CHANGELOG.md
··· 1 1 # @urql/exchange-persisted-fetch 2 2 3 + ## 4.1.0 4 + 5 + ### Minor Changes 6 + 7 + - 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 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3324](https://github.com/urql-graphql/urql/pull/3324)) 9 + 10 + ### Patch Changes 11 + 12 + - Updated dependencies (See [#3317](https://github.com/urql-graphql/urql/pull/3317) and [#3308](https://github.com/urql-graphql/urql/pull/3308)) 13 + - @urql/core@4.1.0 14 + 3 15 ## 4.0.1 4 16 5 17 ### Patch Changes
+2 -2
exchanges/persisted/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-persisted", 3 - "version": "4.0.1", 3 + "version": "4.1.0", 4 4 "description": "An exchange that allows for persisted queries support when fetching queries", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 47 47 "prepublishOnly": "run-s clean build" 48 48 }, 49 49 "dependencies": { 50 - "@urql/core": ">=4.0.0", 50 + "@urql/core": ">=4.1.0", 51 51 "wonka": "^6.3.2" 52 52 }, 53 53 "devDependencies": {
+1 -1
exchanges/populate/package.json
··· 47 47 "prepublishOnly": "run-s clean build" 48 48 }, 49 49 "dependencies": { 50 - "@urql/core": ">=4.0.0", 50 + "@urql/core": ">=4.1.0", 51 51 "wonka": "^6.3.2" 52 52 }, 53 53 "peerDependencies": {
+1 -1
exchanges/refocus/package.json
··· 54 54 "graphql": "^16.0.0" 55 55 }, 56 56 "dependencies": { 57 - "@urql/core": ">=4.0.0", 57 + "@urql/core": ">=4.1.0", 58 58 "wonka": "^6.3.2" 59 59 }, 60 60 "publishConfig": {
+1 -1
exchanges/request-policy/package.json
··· 52 52 "graphql": "^16.0.0" 53 53 }, 54 54 "dependencies": { 55 - "@urql/core": ">=4.0.0", 55 + "@urql/core": ">=4.1.0", 56 56 "wonka": "^6.3.2" 57 57 }, 58 58 "publishConfig": {
+1 -1
exchanges/retry/package.json
··· 52 52 "graphql": "^16.0.0" 53 53 }, 54 54 "dependencies": { 55 - "@urql/core": ">=4.0.0", 55 + "@urql/core": ">=4.1.0", 56 56 "wonka": "^6.3.2" 57 57 }, 58 58 "publishConfig": {
+12
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 4.1.0 4 + 5 + ### Minor Changes 6 + 7 + - 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 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3317](https://github.com/urql-graphql/urql/pull/3317)) 9 + 10 + ### Patch Changes 11 + 12 + - Add `OperationContext.optimistic` flag as an internal indication on whether a mutation triggered an optimistic update in `@urql/exchange-graphcache`'s `cacheExchange` 13 + Submitted by [@kitten](https://github.com/kitten) (See [#3308](https://github.com/urql-graphql/urql/pull/3308)) 14 + 3 15 ## 4.0.11 4 16 5 17 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "4.0.11", 3 + "version": "4.1.0", 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/",
+10
packages/next-urql/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.0.0 4 + 5 + ### Major Changes 6 + 7 + - Create `@urql/next` which is a package meant to support Next 13 and 8 + the React 18 features contained within. 9 + For server components we have `@urql/next/rsc` and for client components 10 + just `@urql/next` 11 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3214](https://github.com/urql-graphql/urql/pull/3214)) 12 + 3 13 ## 5.0.2 4 14 5 15 ### Patch Changes
+1 -1
packages/next-urql/package.json
··· 1 1 { 2 2 "name": "@urql/next", 3 - "version": "0.1.0", 3 + "version": "1.0.0", 4 4 "description": "Convenience wrappers for using urql with NextJS.", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+1 -1
packages/preact-urql/package.json
··· 58 58 "preact": ">= 10.0.0" 59 59 }, 60 60 "dependencies": { 61 - "@urql/core": "^4.0.0", 61 + "@urql/core": "^4.1.0", 62 62 "wonka": "^6.3.2" 63 63 }, 64 64 "publishConfig": {
+9
packages/react-urql/CHANGELOG.md
··· 1 1 # urql 2 2 3 + ## 4.0.5 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ 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 8 + Submitted by [@kitten](https://github.com/kitten) (See [#3323](https://github.com/urql-graphql/urql/pull/3323)) 9 + - Updated dependencies (See [#3317](https://github.com/urql-graphql/urql/pull/3317) and [#3308](https://github.com/urql-graphql/urql/pull/3308)) 10 + - @urql/core@4.1.0 11 + 3 12 ## 4.0.4 4 13 5 14 ### Patch Changes
+2 -2
packages/react-urql/package.json
··· 1 1 { 2 2 "name": "urql", 3 - "version": "4.0.4", 3 + "version": "4.0.5", 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/", ··· 61 61 "react": ">= 16.8.0" 62 62 }, 63 63 "dependencies": { 64 - "@urql/core": "^4.0.0", 64 + "@urql/core": "^4.1.0", 65 65 "wonka": "^6.3.2" 66 66 }, 67 67 "publishConfig": {
+1 -1
packages/svelte-urql/package.json
··· 52 52 "svelte": "^3.0.0 || ^4.0.0" 53 53 }, 54 54 "dependencies": { 55 - "@urql/core": "^4.0.0", 55 + "@urql/core": "^4.1.0", 56 56 "wonka": "^6.3.2" 57 57 }, 58 58 "devDependencies": {
+1 -1
packages/vue-urql/package.json
··· 58 58 "vue": "^2.7.0 || ^3.0.0" 59 59 }, 60 60 "dependencies": { 61 - "@urql/core": "^4.0.0", 61 + "@urql/core": "^4.1.0", 62 62 "wonka": "^6.3.2" 63 63 }, 64 64 "publishConfig": {
+13 -13
pnpm-lock.yaml
··· 182 182 exchanges/auth: 183 183 dependencies: 184 184 '@urql/core': 185 - specifier: '>=4.0.0' 185 + specifier: '>=4.1.0' 186 186 version: link:../../packages/core 187 187 wonka: 188 188 specifier: ^6.3.2 ··· 195 195 exchanges/context: 196 196 dependencies: 197 197 '@urql/core': 198 - specifier: '>=4.0.0' 198 + specifier: '>=4.1.0' 199 199 version: link:../../packages/core 200 200 wonka: 201 201 specifier: ^6.3.2 ··· 208 208 exchanges/execute: 209 209 dependencies: 210 210 '@urql/core': 211 - specifier: '>=4.0.0' 211 + specifier: '>=4.1.0' 212 212 version: link:../../packages/core 213 213 wonka: 214 214 specifier: ^6.3.2 ··· 224 224 specifier: ^1.0.1 225 225 version: 1.0.1(graphql@16.6.0) 226 226 '@urql/core': 227 - specifier: '>=4.0.0' 227 + specifier: '>=4.1.0' 228 228 version: link:../../packages/core 229 229 wonka: 230 230 specifier: ^6.3.2 ··· 258 258 exchanges/persisted: 259 259 dependencies: 260 260 '@urql/core': 261 - specifier: '>=4.0.0' 261 + specifier: '>=4.1.0' 262 262 version: link:../../packages/core 263 263 wonka: 264 264 specifier: ^6.3.2 ··· 271 271 exchanges/populate: 272 272 dependencies: 273 273 '@urql/core': 274 - specifier: '>=4.0.0' 274 + specifier: '>=4.1.0' 275 275 version: link:../../packages/core 276 276 wonka: 277 277 specifier: ^6.3.2 ··· 284 284 exchanges/refocus: 285 285 dependencies: 286 286 '@urql/core': 287 - specifier: '>=4.0.0' 287 + specifier: '>=4.1.0' 288 288 version: link:../../packages/core 289 289 wonka: 290 290 specifier: ^6.3.2 ··· 300 300 exchanges/request-policy: 301 301 dependencies: 302 302 '@urql/core': 303 - specifier: '>=4.0.0' 303 + specifier: '>=4.1.0' 304 304 version: link:../../packages/core 305 305 wonka: 306 306 specifier: ^6.3.2 ··· 313 313 exchanges/retry: 314 314 dependencies: 315 315 '@urql/core': 316 - specifier: '>=4.0.0' 316 + specifier: '>=4.1.0' 317 317 version: link:../../packages/core 318 318 wonka: 319 319 specifier: ^6.3.2 ··· 368 368 packages/preact-urql: 369 369 dependencies: 370 370 '@urql/core': 371 - specifier: ^4.0.0 371 + specifier: ^4.1.0 372 372 version: link:../core 373 373 wonka: 374 374 specifier: ^6.3.2 ··· 387 387 packages/react-urql: 388 388 dependencies: 389 389 '@urql/core': 390 - specifier: ^4.0.0 390 + specifier: ^4.1.0 391 391 version: link:../core 392 392 wonka: 393 393 specifier: ^6.3.2 ··· 557 557 packages/svelte-urql: 558 558 dependencies: 559 559 '@urql/core': 560 - specifier: ^4.0.0 560 + specifier: ^4.1.0 561 561 version: link:../core 562 562 wonka: 563 563 specifier: ^6.3.2 ··· 573 573 packages/vue-urql: 574 574 dependencies: 575 575 '@urql/core': 576 - specifier: ^4.0.0 576 + specifier: ^4.1.0 577 577 version: link:../core 578 578 wonka: 579 579 specifier: ^6.3.2