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

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
2a12141d eb1286c7

+95 -94
-5
.changeset/curvy-sheep-drive.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Allow `url` to be a plain, non-URL pathname (i.e. `/api/graphql`) to be used with `preferGetMethod`
-5
.changeset/fluffy-poets-protect.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Correctly support the `Headers` class being used in `fetchOptions`
-5
.changeset/happy-peas-sin.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Allow `@_optional` and `@_required` to be placed on fragment definitions and inline fragments
-5
.changeset/seven-toys-applaud.md
··· 1 - --- 2 - '@urql/svelte': minor 3 - --- 4 - 5 - Add back the `reexecute` function
-5
.changeset/sixty-needles-exercise.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Prevent `@defer` from being applied in child field selections. Previously, a child field (i.e. a nested field) under a `@defer`-ed fragment would also become optional, which was based on a prior version of the DeferStream spec which didn't require deferred fields to be delivered as a group.
-5
.changeset/small-cheetahs-jam.md
··· 1 - --- 2 - '@urql/core': minor 3 - --- 4 - 5 - Support [Apollo Federation's format](https://www.apollographql.com/docs/router/executing-operations/subscription-multipart-protocol/) for subscription results in `multipart/mixed` responses (result properties essentially are namespaced on a `payload` key)
-5
.changeset/tall-buttons-fetch.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Track list of entity keys for a given type name. This enables enumerating and invalidating all entities of a given type within the normalized cache.
-5
.changeset/two-bananas-grow.md
··· 1 - --- 2 - '@urql/core': minor 3 - --- 4 - 5 - Add support for sending persisted documents. Any `DocumentNode` with no/empty definitions and a `documentId` property is considered a persisted document. When this is detected a `documentId` parameter rather than a `query` string is sent to the GraphQL API, similar to Automatic Persisted Queries (APQs). However, APQs are only supported via `@urql/exchange-persisted`, while support for `documentId` is now built-in.
-5
.changeset/wicked-kids-joke.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix `store.resolve()` returning the exact link array that’s used by the cache. This can lead to subtle bugs when a user mutates the result returned by `cache.resolve()`, since this directly mutates what’s in the cache at that layer.
+1 -1
examples/with-apq/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.2.3", 9 + "@urql/core": "^4.3.0", 10 10 "@urql/exchange-persisted": "^4.1.1", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0",
+2 -2
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.2.3", 21 - "@urql/exchange-graphcache": "^6.4.1", 20 + "@urql/core": "^4.3.0", 21 + "@urql/exchange-graphcache": "^6.5.0", 22 22 "graphql": "17.0.0-alpha.2", 23 23 "react": "^18.2.0", 24 24 "react-dom": "^18.2.0",
+2 -2
examples/with-graphcache-pagination/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.2.3", 10 - "@urql/exchange-graphcache": "^6.4.1", 9 + "@urql/core": "^4.3.0", 10 + "@urql/exchange-graphcache": "^6.5.0", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^18.2.0",
+2 -2
examples/with-graphcache-updates/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.2.3", 9 + "@urql/core": "^4.3.0", 10 10 "@urql/exchange-auth": "^2.1.6", 11 - "@urql/exchange-graphcache": "^6.4.1", 11 + "@urql/exchange-graphcache": "^6.5.0", 12 12 "graphql": "^16.6.0", 13 13 "react": "^18.2.0", 14 14 "react-dom": "^18.2.0",
+1 -1
examples/with-infinite-pagination/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.2.3", 9 + "@urql/core": "^4.3.0", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0",
+1 -1
examples/with-multipart/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.2.3", 9 + "@urql/core": "^4.3.0", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0",
+1 -1
examples/with-next/package.json
··· 3 3 "version": "0.0.0", 4 4 "private": true, 5 5 "dependencies": { 6 - "@urql/core": "^4.2.3", 6 + "@urql/core": "^4.3.0", 7 7 "@urql/next": "^1.1.1", 8 8 "graphql": "^16.6.0", 9 9 "next": "13.4.2",
+1 -1
examples/with-pagination/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.2.3", 9 + "@urql/core": "^4.3.0", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0",
+1 -1
examples/with-react-native/package.json
··· 8 8 "start": "react-native start" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.2.3", 11 + "@urql/core": "^4.3.0", 12 12 "graphql": "^16.6.0", 13 13 "react": "18.2.0", 14 14 "react-native": "0.71.4",
+1 -1
examples/with-react/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.2.3", 9 + "@urql/core": "^4.3.0", 10 10 "graphql": "^16.6.0", 11 11 "react": "^18.2.0", 12 12 "react-dom": "^18.2.0",
+1 -1
examples/with-refresh-auth/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.2.3", 9 + "@urql/core": "^4.3.0", 10 10 "@urql/exchange-auth": "^2.1.6", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0",
+1 -1
examples/with-retry/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^4.2.3", 9 + "@urql/core": "^4.3.0", 10 10 "@urql/exchange-retry": "^1.2.1", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0",
+2 -2
examples/with-subscriptions-via-fetch/package.json
··· 8 8 "start": "run-p client server" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.2.3", 12 - "@urql/exchange-graphcache": "^6.4.1", 11 + "@urql/core": "^4.3.0", 12 + "@urql/exchange-graphcache": "^6.5.0", 13 13 "graphql": "^16.6.0", 14 14 "react": "^18.2.0", 15 15 "react-dom": "^18.2.0",
+2 -2
examples/with-svelte/package.json
··· 8 8 "serve": "vite preview" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.2.3", 12 - "@urql/svelte": "^4.0.4", 11 + "@urql/core": "^4.3.0", 12 + "@urql/svelte": "^4.1.0", 13 13 "graphql": "^16.6.0", 14 14 "svelte": "^4.0.5" 15 15 },
+1 -1
examples/with-vue3/package.json
··· 8 8 "serve": "vite preview" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^4.2.3", 11 + "@urql/core": "^4.3.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.2.0", 52 + "@urql/core": ">=4.3.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.2.0", 51 + "@urql/core": ">=4.3.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.2.0", 52 + "@urql/core": ">=4.3.0", 53 53 "wonka": "^6.3.2" 54 54 }, 55 55 "peerDependencies": {
+18
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 6.5.0 4 + 5 + ### Minor Changes 6 + 7 + - Allow `@_optional` and `@_required` to be placed on fragment definitions and inline fragments 8 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3502](https://github.com/urql-graphql/urql/pull/3502)) 9 + - Track list of entity keys for a given type name. This enables enumerating and invalidating all entities of a given type within the normalized cache 10 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3501](https://github.com/urql-graphql/urql/pull/3501)) 11 + 12 + ### Patch Changes 13 + 14 + - Prevent `@defer` from being applied in child field selections. Previously, a child field (i.e. a nested field) under a `@defer`-ed fragment would also become optional, which was based on a prior version of the DeferStream spec which didn't require deferred fields to be delivered as a group 15 + Submitted by [@kitten](https://github.com/kitten) (See [#3517](https://github.com/urql-graphql/urql/pull/3517)) 16 + - ⚠️ Fix `store.resolve()` returning the exact link array that’s used by the cache. This can lead to subtle bugs when a user mutates the result returned by `cache.resolve()`, since this directly mutates what’s in the cache at that layer 17 + Submitted by [@kitten](https://github.com/kitten) (See [#3516](https://github.com/urql-graphql/urql/pull/3516)) 18 + - Updated dependencies (See [#3514](https://github.com/urql-graphql/urql/pull/3514), [#3505](https://github.com/urql-graphql/urql/pull/3505), [#3499](https://github.com/urql-graphql/urql/pull/3499), and [#3515](https://github.com/urql-graphql/urql/pull/3515)) 19 + - @urql/core@4.3.0 20 + 3 21 ## 6.4.1 4 22 5 23 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "6.4.1", 3 + "version": "6.5.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.2.0", 67 + "@urql/core": ">=4.3.0", 68 68 "wonka": "^6.3.2" 69 69 }, 70 70 "devDependencies": {
+1 -1
exchanges/persisted/package.json
··· 47 47 "prepublishOnly": "run-s clean build" 48 48 }, 49 49 "dependencies": { 50 - "@urql/core": ">=4.2.0", 50 + "@urql/core": ">=4.3.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.2.0", 50 + "@urql/core": ">=4.3.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.2.0", 57 + "@urql/core": ">=4.3.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.2.0", 55 + "@urql/core": ">=4.3.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.2.0", 55 + "@urql/core": ">=4.3.0", 56 56 "wonka": "^6.3.2" 57 57 }, 58 58 "publishConfig": {
+16
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 4.3.0 4 + 5 + ### Minor Changes 6 + 7 + - Support [Apollo Federation's format](https://www.apollographql.com/docs/router/executing-operations/subscription-multipart-protocol/) for subscription results in `multipart/mixed` responses (result properties essentially are namespaced on a `payload` key) 8 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3499](https://github.com/urql-graphql/urql/pull/3499)) 9 + - Add support for sending persisted documents. Any `DocumentNode` with no/empty definitions and a `documentId` property is considered a persisted document. When this is detected a `documentId` parameter rather than a `query` string is sent to the GraphQL API, similar to Automatic Persisted Queries (APQs). However, APQs are only supported via `@urql/exchange-persisted`, while support for `documentId` is now built-in 10 + Submitted by [@kitten](https://github.com/kitten) (See [#3515](https://github.com/urql-graphql/urql/pull/3515)) 11 + 12 + ### Patch Changes 13 + 14 + - Allow `url` to be a plain, non-URL pathname (i.e. `/api/graphql`) to be used with `preferGetMethod` 15 + Submitted by [@akrantz01](https://github.com/akrantz01) (See [#3514](https://github.com/urql-graphql/urql/pull/3514)) 16 + - Correctly support the `Headers` class being used in `fetchOptions` 17 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3505](https://github.com/urql-graphql/urql/pull/3505)) 18 + 3 19 ## 4.2.3 4 20 5 21 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "4.2.3", 3 + "version": "4.3.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/",
+1 -1
packages/preact-urql/package.json
··· 58 58 "preact": ">= 10.0.0" 59 59 }, 60 60 "dependencies": { 61 - "@urql/core": "^4.2.0", 61 + "@urql/core": "^4.3.0", 62 62 "wonka": "^6.3.2" 63 63 }, 64 64 "publishConfig": {
+1 -1
packages/react-urql/package.json
··· 61 61 "react": ">= 16.8.0" 62 62 }, 63 63 "dependencies": { 64 - "@urql/core": "^4.2.0", 64 + "@urql/core": "^4.3.0", 65 65 "wonka": "^6.3.2" 66 66 }, 67 67 "publishConfig": {
+12
packages/svelte-urql/CHANGELOG.md
··· 1 1 # @urql/svelte 2 2 3 + ## 4.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Add back the `reexecute` function 8 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3472](https://github.com/urql-graphql/urql/pull/3472)) 9 + 10 + ### Patch Changes 11 + 12 + - Updated dependencies (See [#3514](https://github.com/urql-graphql/urql/pull/3514), [#3505](https://github.com/urql-graphql/urql/pull/3505), [#3499](https://github.com/urql-graphql/urql/pull/3499), and [#3515](https://github.com/urql-graphql/urql/pull/3515)) 13 + - @urql/core@4.3.0 14 + 3 15 ## 4.0.4 4 16 5 17 ### Patch Changes
+2 -2
packages/svelte-urql/package.json
··· 1 1 { 2 2 "name": "@urql/svelte", 3 - "version": "4.0.4", 3 + "version": "4.1.0", 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/", ··· 52 52 "svelte": "^3.0.0 || ^4.0.0" 53 53 }, 54 54 "dependencies": { 55 - "@urql/core": "^4.2.0", 55 + "@urql/core": "^4.3.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.2.0", 61 + "@urql/core": "^4.3.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.2.0' 185 + specifier: '>=4.3.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.2.0' 198 + specifier: '>=4.3.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.2.0' 211 + specifier: '>=4.3.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.2.0' 227 + specifier: '>=4.3.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.2.0' 261 + specifier: '>=4.3.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.2.0' 274 + specifier: '>=4.3.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.2.0' 287 + specifier: '>=4.3.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.2.0' 303 + specifier: '>=4.3.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.2.0' 316 + specifier: '>=4.3.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.2.0 371 + specifier: ^4.3.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.2.0 390 + specifier: ^4.3.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.2.0 560 + specifier: ^4.3.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.2.0 576 + specifier: ^4.3.0 577 577 version: link:../core 578 578 wonka: 579 579 specifier: ^6.3.2