Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.

Version Packages (#3768)

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 3999ae43 46b798d0

Changed files
+90 -82
.changeset
examples
with-apq
with-defer-stream-directives
with-graphcache-pagination
with-graphcache-updates
with-infinite-pagination
with-multipart
with-next
with-pagination
with-react
with-react-native
with-refresh-auth
with-retry
with-subscriptions-via-fetch
with-svelte
with-vue3
exchanges
auth
context
execute
graphcache
persisted
populate
refocus
request-policy
retry
throw-on-error
packages
core
preact-urql
react-urql
solid-urql
svelte-urql
vue-urql
-5
.changeset/heavy-hairs-bow.md
··· 1 - --- 2 - "@urql/core": patch 3 - --- 4 - 5 - Correct typo in cacheHit debug message of the `debugExchange`
-5
.changeset/nervous-flies-confess.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix `fetchSource` not text-decoding response chunks as streams, which could cause UTF-8 decoding to break.
-6
.changeset/old-ears-hunt.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - '@urql/core': patch 4 - --- 5 - 6 - Fix compatibility with Typescript >5.5 (See: https://github.com/0no-co/graphql.web/pull/49)
-5
.changeset/serious-chefs-march.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Change debug log verbosity to `console.debug` rather than `console.log`
-5
.changeset/slow-hotels-yawn.md
··· 1 - --- 2 - "@urql/exchange-retry": patch 3 - --- 4 - 5 - Mark options argument as optional (`retryExchange()`)
+1 -1
examples/with-apq/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^5.1.1", 9 + "@urql/core": "^5.1.2", 10 10 "@urql/exchange-persisted": "^4.3.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": "^5.1.1", 21 - "@urql/exchange-graphcache": "^7.2.3", 20 + "@urql/core": "^5.1.2", 21 + "@urql/exchange-graphcache": "^7.2.4", 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": "^5.1.1", 10 - "@urql/exchange-graphcache": "^7.2.3", 9 + "@urql/core": "^5.1.2", 10 + "@urql/exchange-graphcache": "^7.2.4", 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": "^5.1.1", 9 + "@urql/core": "^5.1.2", 10 10 "@urql/exchange-auth": "^2.2.1", 11 - "@urql/exchange-graphcache": "^7.2.3", 11 + "@urql/exchange-graphcache": "^7.2.4", 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": "^5.1.1", 9 + "@urql/core": "^5.1.2", 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": "^5.1.1", 9 + "@urql/core": "^5.1.2", 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": "^5.1.1", 6 + "@urql/core": "^5.1.2", 7 7 "@urql/next": "^1.1.5", 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": "^5.1.1", 9 + "@urql/core": "^5.1.2", 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": "^5.1.1", 11 + "@urql/core": "^5.1.2", 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": "^5.1.1", 9 + "@urql/core": "^5.1.2", 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": "^5.1.1", 9 + "@urql/core": "^5.1.2", 10 10 "@urql/exchange-auth": "^2.2.1", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0",
+2 -2
examples/with-retry/package.json
··· 6 6 "start": "vite" 7 7 }, 8 8 "dependencies": { 9 - "@urql/core": "^5.1.1", 10 - "@urql/exchange-retry": "^1.3.1", 9 + "@urql/core": "^5.1.2", 10 + "@urql/exchange-retry": "^1.3.2", 11 11 "graphql": "^16.6.0", 12 12 "react": "^18.2.0", 13 13 "react-dom": "^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": "^5.1.1", 12 - "@urql/exchange-graphcache": "^7.2.3", 11 + "@urql/core": "^5.1.2", 12 + "@urql/exchange-graphcache": "^7.2.4", 13 13 "graphql": "^16.6.0", 14 14 "react": "^18.2.0", 15 15 "react-dom": "^18.2.0",
+1 -1
examples/with-svelte/package.json
··· 8 8 "serve": "vite preview" 9 9 }, 10 10 "dependencies": { 11 - "@urql/core": "^5.1.1", 11 + "@urql/core": "^5.1.2", 12 12 "@urql/svelte": "^4.2.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": "^5.1.1", 11 + "@urql/core": "^5.1.2", 12 12 "@urql/vue": "^1.4.3", 13 13 "graphql": "^16.6.0", 14 14 "vue": "^3.2.47"
+1 -1
exchanges/auth/package.json
··· 52 52 "@urql/core": "^5.0.0" 53 53 }, 54 54 "dependencies": { 55 - "@urql/core": "workspace:^5.1.1", 55 + "@urql/core": "workspace:^5.1.2", 56 56 "wonka": "^6.3.2" 57 57 }, 58 58 "devDependencies": {
+1 -1
exchanges/context/package.json
··· 51 51 "@urql/core": "^5.0.0" 52 52 }, 53 53 "dependencies": { 54 - "@urql/core": "workspace:^5.1.1", 54 + "@urql/core": "workspace:^5.1.2", 55 55 "wonka": "^6.3.2" 56 56 }, 57 57 "devDependencies": {
+1 -1
exchanges/execute/package.json
··· 49 49 "prepublishOnly": "run-s clean build" 50 50 }, 51 51 "dependencies": { 52 - "@urql/core": "workspace:^5.1.1", 52 + "@urql/core": "workspace:^5.1.2", 53 53 "wonka": "^6.3.2" 54 54 }, 55 55 "peerDependencies": {
+9
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 7.2.4 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix compatibility with Typescript >5.5 (See: https://github.com/0no-co/graphql.web/pull/49) 8 + Submitted by [@andreisergiu98](https://github.com/andreisergiu98) (See [#3730](https://github.com/urql-graphql/urql/pull/3730)) 9 + - Updated dependencies (See [#3773](https://github.com/urql-graphql/urql/pull/3773), [#3767](https://github.com/urql-graphql/urql/pull/3767), [#3730](https://github.com/urql-graphql/urql/pull/3730), and [#3770](https://github.com/urql-graphql/urql/pull/3770)) 10 + - @urql/core@5.1.2 11 + 3 12 ## 7.2.3 4 13 5 14 ### Patch Changes
+1 -1
exchanges/graphcache/jsr.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "7.2.3", 3 + "version": "7.2.4", 4 4 "exports": { 5 5 ".": "./src/index.ts", 6 6 "./extras": "./src/extras/index.ts",
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "7.2.3", 3 + "version": "7.2.4", 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", ··· 67 67 }, 68 68 "dependencies": { 69 69 "@0no-co/graphql.web": "^1.0.13", 70 - "@urql/core": "workspace:^5.1.1", 70 + "@urql/core": "workspace:^5.1.2", 71 71 "wonka": "^6.3.2" 72 72 }, 73 73 "devDependencies": {
+1 -1
exchanges/persisted/package.json
··· 50 50 "@urql/core": "^5.0.0" 51 51 }, 52 52 "dependencies": { 53 - "@urql/core": "workspace:^5.1.1", 53 + "@urql/core": "workspace:^5.1.2", 54 54 "wonka": "^6.3.2" 55 55 }, 56 56 "devDependencies": {
+1 -1
exchanges/populate/package.json
··· 47 47 "prepublishOnly": "run-s clean build" 48 48 }, 49 49 "dependencies": { 50 - "@urql/core": "workspace:^5.1.1", 50 + "@urql/core": "workspace:^5.1.2", 51 51 "wonka": "^6.3.2" 52 52 }, 53 53 "peerDependencies": {
+1 -1
exchanges/refocus/package.json
··· 57 57 "@urql/core": "^5.0.0" 58 58 }, 59 59 "dependencies": { 60 - "@urql/core": "workspace:^5.1.1", 60 + "@urql/core": "workspace:^5.1.2", 61 61 "wonka": "^6.3.2" 62 62 }, 63 63 "publishConfig": {
+1 -1
exchanges/request-policy/package.json
··· 55 55 "@urql/core": "^5.0.0" 56 56 }, 57 57 "dependencies": { 58 - "@urql/core": "workspace:^5.1.1", 58 + "@urql/core": "workspace:^5.1.2", 59 59 "wonka": "^6.3.2" 60 60 }, 61 61 "publishConfig": {
+9
exchanges/retry/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.3.2 4 + 5 + ### Patch Changes 6 + 7 + - Mark options argument as optional (`retryExchange()`) 8 + Submitted by [@jtomaszewski](https://github.com/jtomaszewski) (See [#3775](https://github.com/urql-graphql/urql/pull/3775)) 9 + - Updated dependencies (See [#3773](https://github.com/urql-graphql/urql/pull/3773), [#3767](https://github.com/urql-graphql/urql/pull/3767), [#3730](https://github.com/urql-graphql/urql/pull/3730), and [#3770](https://github.com/urql-graphql/urql/pull/3770)) 10 + - @urql/core@5.1.2 11 + 3 12 ## 1.3.1 4 13 5 14 ### Patch Changes
+1 -1
exchanges/retry/jsr.json
··· 1 1 { 2 2 "name": "@urql/exchange-retry", 3 - "version": "1.3.1", 3 + "version": "1.3.2", 4 4 "exports": { 5 5 ".": "./src/index.ts" 6 6 },
+2 -2
exchanges/retry/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-retry", 3 - "version": "1.3.1", 3 + "version": "1.3.2", 4 4 "description": "An exchange for operation retry support in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 55 55 "@urql/core": "^5.0.0" 56 56 }, 57 57 "dependencies": { 58 - "@urql/core": "workspace:^5.1.1", 58 + "@urql/core": "workspace:^5.1.2", 59 59 "wonka": "^6.3.2" 60 60 }, 61 61 "publishConfig": {
+1 -1
exchanges/throw-on-error/package.json
··· 55 55 "@urql/core": "^5.0.0" 56 56 }, 57 57 "dependencies": { 58 - "@urql/core": "workspace:^5.1.1", 58 + "@urql/core": "workspace:^5.1.2", 59 59 "graphql-toe": "^1.0.0-rc.0", 60 60 "wonka": "^6.3.2" 61 61 },
+13
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 5.1.2 4 + 5 + ### Patch Changes 6 + 7 + - Correct typo in cacheHit debug message of the `debugExchange` 8 + Submitted by [@jorrit](https://github.com/jorrit) (See [#3773](https://github.com/urql-graphql/urql/pull/3773)) 9 + - ⚠️ Fix `fetchSource` not text-decoding response chunks as streams, which could cause UTF-8 decoding to break 10 + Submitted by [@i110](https://github.com/i110) (See [#3767](https://github.com/urql-graphql/urql/pull/3767)) 11 + - ⚠️ Fix compatibility with Typescript >5.5 (See: https://github.com/0no-co/graphql.web/pull/49) 12 + Submitted by [@andreisergiu98](https://github.com/andreisergiu98) (See [#3730](https://github.com/urql-graphql/urql/pull/3730)) 13 + - Change debug log verbosity to `console.debug` rather than `console.log` 14 + Submitted by [@kitten](https://github.com/kitten) (See [#3770](https://github.com/urql-graphql/urql/pull/3770)) 15 + 3 16 ## 5.1.1 4 17 5 18 ### Patch Changes
+1 -1
packages/core/jsr.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "5.1.1", 3 + "version": "5.1.2", 4 4 "exports": { 5 5 ".": "./src/index.ts", 6 6 "./internal": "./src/internal/index.ts"
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "5.1.1", 3 + "version": "5.1.2", 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
··· 59 59 "preact": ">= 10.0.0" 60 60 }, 61 61 "dependencies": { 62 - "@urql/core": "workspace:^5.1.1", 62 + "@urql/core": "workspace:^5.1.2", 63 63 "wonka": "^6.3.2" 64 64 }, 65 65 "publishConfig": {
+1 -1
packages/react-urql/package.json
··· 60 60 "react": ">= 16.8.0" 61 61 }, 62 62 "dependencies": { 63 - "@urql/core": "workspace:^5.1.1", 63 + "@urql/core": "workspace:^5.1.2", 64 64 "wonka": "^6.3.2" 65 65 }, 66 66 "publishConfig": {
+1 -1
packages/solid-urql/package.json
··· 60 60 "solid-js": "^1.7.7" 61 61 }, 62 62 "dependencies": { 63 - "@urql/core": "workspace:^5.1.1", 63 + "@urql/core": "workspace:^5.1.2", 64 64 "wonka": "^6.3.2" 65 65 }, 66 66 "publishConfig": {
+1 -1
packages/svelte-urql/package.json
··· 53 53 "svelte": "^3.0.0 || ^4.0.0 || ^5.0.0" 54 54 }, 55 55 "dependencies": { 56 - "@urql/core": "workspace:^5.1.1", 56 + "@urql/core": "workspace:^5.1.2", 57 57 "wonka": "^6.3.2" 58 58 }, 59 59 "devDependencies": {
+1 -1
packages/vue-urql/package.json
··· 59 59 "vue": "^2.7.0 || ^3.0.0" 60 60 }, 61 61 "dependencies": { 62 - "@urql/core": "workspace:^5.1.1", 62 + "@urql/core": "workspace:^5.1.2", 63 63 "wonka": "^6.3.2" 64 64 }, 65 65 "publishConfig": {
+18 -15
pnpm-lock.yaml
··· 180 180 exchanges/auth: 181 181 dependencies: 182 182 '@urql/core': 183 - specifier: workspace:^5.1.1 183 + specifier: workspace:^5.1.2 184 184 version: link:../../packages/core 185 185 wonka: 186 186 specifier: ^6.3.2 ··· 193 193 exchanges/context: 194 194 dependencies: 195 195 '@urql/core': 196 - specifier: workspace:^5.1.1 196 + specifier: workspace:^5.1.2 197 197 version: link:../../packages/core 198 198 wonka: 199 199 specifier: ^6.3.2 ··· 206 206 exchanges/execute: 207 207 dependencies: 208 208 '@urql/core': 209 - specifier: workspace:^5.1.1 209 + specifier: workspace:^5.1.2 210 210 version: link:../../packages/core 211 211 wonka: 212 212 specifier: ^6.3.2 ··· 222 222 specifier: ^1.0.13 223 223 version: 1.0.13(graphql@16.9.0) 224 224 '@urql/core': 225 - specifier: workspace:^5.1.1 225 + specifier: workspace:^5.1.2 226 226 version: link:../../packages/core 227 227 wonka: 228 228 specifier: ^6.3.2 ··· 256 256 exchanges/persisted: 257 257 dependencies: 258 258 '@urql/core': 259 - specifier: workspace:^5.1.1 259 + specifier: workspace:^5.1.2 260 260 version: link:../../packages/core 261 261 wonka: 262 262 specifier: ^6.3.2 ··· 269 269 exchanges/populate: 270 270 dependencies: 271 271 '@urql/core': 272 - specifier: workspace:^5.1.1 272 + specifier: workspace:^5.1.2 273 273 version: link:../../packages/core 274 274 wonka: 275 275 specifier: ^6.3.2 ··· 282 282 exchanges/refocus: 283 283 dependencies: 284 284 '@urql/core': 285 - specifier: workspace:^5.1.1 285 + specifier: workspace:^5.1.2 286 286 version: link:../../packages/core 287 287 wonka: 288 288 specifier: ^6.3.2 ··· 298 298 exchanges/request-policy: 299 299 dependencies: 300 300 '@urql/core': 301 - specifier: workspace:^5.1.1 301 + specifier: workspace:^5.1.2 302 302 version: link:../../packages/core 303 303 wonka: 304 304 specifier: ^6.3.2 ··· 311 311 exchanges/retry: 312 312 dependencies: 313 313 '@urql/core': 314 - specifier: workspace:^5.1.1 314 + specifier: workspace:^5.1.2 315 315 version: link:../../packages/core 316 316 wonka: 317 317 specifier: ^6.3.2 ··· 324 324 exchanges/throw-on-error: 325 325 dependencies: 326 326 '@urql/core': 327 - specifier: workspace:^5.1.1 327 + specifier: workspace:^5.1.2 328 328 version: link:../../packages/core 329 329 graphql-toe: 330 330 specifier: ^1.0.0-rc.0 ··· 382 382 packages/preact-urql: 383 383 dependencies: 384 384 '@urql/core': 385 - specifier: workspace:^5.1.1 385 + specifier: workspace:^5.1.2 386 386 version: link:../core 387 387 wonka: 388 388 specifier: ^6.3.2 ··· 401 401 packages/react-urql: 402 402 dependencies: 403 403 '@urql/core': 404 - specifier: workspace:^5.1.1 404 + specifier: workspace:^5.1.2 405 405 version: link:../core 406 406 wonka: 407 407 specifier: ^6.3.2 ··· 550 550 packages/solid-urql: 551 551 dependencies: 552 552 '@urql/core': 553 - specifier: workspace:^5.1.1 553 + specifier: workspace:^5.1.2 554 554 version: link:../core 555 555 solid-js: 556 556 specifier: ^1.7.7 ··· 590 590 packages/svelte-urql: 591 591 dependencies: 592 592 '@urql/core': 593 - specifier: workspace:^5.1.1 593 + specifier: workspace:^5.1.2 594 594 version: link:../core 595 595 wonka: 596 596 specifier: ^6.3.2 ··· 606 606 packages/vue-urql: 607 607 dependencies: 608 608 '@urql/core': 609 - specifier: workspace:^5.1.1 609 + specifier: workspace:^5.1.2 610 610 version: link:../core 611 611 wonka: 612 612 specifier: ^6.3.2 ··· 6726 6726 node-domexception@1.0.0: 6727 6727 resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} 6728 6728 engines: {node: '>=10.5.0'} 6729 + deprecated: Use your platform's native DOMException instead 6729 6730 6730 6731 node-fetch@2.7.0: 6731 6732 resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} ··· 7628 7629 engines: {node: '>=0.6.0', teleport: '>=0.2.0'} 7629 7630 deprecated: |- 7630 7631 You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. 7632 + 7631 7633 (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) 7632 7634 7633 7635 q@1.5.1: ··· 7635 7637 engines: {node: '>=0.6.0', teleport: '>=0.2.0'} 7636 7638 deprecated: |- 7637 7639 You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. 7640 + 7638 7641 (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) 7639 7642 7640 7643 qs@6.10.4: