From d21ff038aa9b9470c2cafbb9ab8c8181b45befdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phil=20Pl=C3=BCckthun?= Date: Mon, 1 Jun 2020 17:11:48 +0100 Subject: [PATCH] (chore) - Upgrade to wonka@^4.0.14 (#842) * Upgrade all packages to wonka@4.0.14 * Add Changeset --- .changeset/real-falcons-clap.md | 15 +++++++++++++++ exchanges/execute/package.json | 2 +- exchanges/graphcache/package.json | 2 +- exchanges/multipart-fetch/package.json | 2 +- exchanges/persisted-fetch/package.json | 2 +- exchanges/populate/package.json | 2 +- exchanges/retry/package.json | 2 +- exchanges/suspense/package.json | 2 +- packages/core/package.json | 2 +- packages/preact-urql/package.json | 2 +- packages/react-urql/package.json | 2 +- packages/svelte-urql/package.json | 2 +- yarn.lock | 8 ++++---- 13 files changed, 30 insertions(+), 15 deletions(-) create mode 100644 .changeset/real-falcons-clap.md diff --git a/.changeset/real-falcons-clap.md b/.changeset/real-falcons-clap.md new file mode 100644 index 0000000000..6ee5086c24 --- /dev/null +++ b/.changeset/real-falcons-clap.md @@ -0,0 +1,15 @@ +--- +'@urql/exchange-execute': patch +'@urql/exchange-graphcache': patch +'@urql/exchange-multipart-fetch': patch +'@urql/exchange-persisted-fetch': patch +'@urql/exchange-populate': patch +'@urql/exchange-retry': patch +'@urql/exchange-suspense': patch +'@urql/core': patch +'@urql/preact': patch +'urql': patch +'@urql/svelte': patch +--- + +Upgrade to a minimum version of wonka@^4.0.14 to work around issues with React Native's minification builds, which use uglify-es and could lead to broken bundles. diff --git a/exchanges/execute/package.json b/exchanges/execute/package.json index 2158d7771d..2ec2b9d1f1 100644 --- a/exchanges/execute/package.json +++ b/exchanges/execute/package.json @@ -52,7 +52,7 @@ }, "dependencies": { "@urql/core": ">=1.11.7", - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "peerDependencies": { "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" diff --git a/exchanges/graphcache/package.json b/exchanges/graphcache/package.json index 68f1d3a91e..fc49b47ee2 100644 --- a/exchanges/graphcache/package.json +++ b/exchanges/graphcache/package.json @@ -59,7 +59,7 @@ }, "dependencies": { "@urql/core": ">=1.11.7", - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "peerDependencies": { "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" diff --git a/exchanges/multipart-fetch/package.json b/exchanges/multipart-fetch/package.json index 2f89b3ecdd..4d31784f9e 100644 --- a/exchanges/multipart-fetch/package.json +++ b/exchanges/multipart-fetch/package.json @@ -51,7 +51,7 @@ "dependencies": { "@urql/core": ">=1.11.7", "extract-files": "^8.1.0", - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "peerDependencies": { "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" diff --git a/exchanges/persisted-fetch/package.json b/exchanges/persisted-fetch/package.json index 69d94b342b..32277901b5 100644 --- a/exchanges/persisted-fetch/package.json +++ b/exchanges/persisted-fetch/package.json @@ -50,7 +50,7 @@ }, "dependencies": { "@urql/core": ">=1.11.8", - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "peerDependencies": { "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" diff --git a/exchanges/populate/package.json b/exchanges/populate/package.json index 6e86b0f0c7..71484bc82d 100644 --- a/exchanges/populate/package.json +++ b/exchanges/populate/package.json @@ -50,7 +50,7 @@ }, "dependencies": { "@urql/core": ">=1.11.6", - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "peerDependencies": { "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" diff --git a/exchanges/retry/package.json b/exchanges/retry/package.json index 4056c6511f..d1d109b403 100644 --- a/exchanges/retry/package.json +++ b/exchanges/retry/package.json @@ -61,7 +61,7 @@ }, "dependencies": { "@urql/core": ">=1.11.7", - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "publishConfig": { "access": "public" diff --git a/exchanges/suspense/package.json b/exchanges/suspense/package.json index 7458853332..8f97d85b97 100644 --- a/exchanges/suspense/package.json +++ b/exchanges/suspense/package.json @@ -53,7 +53,7 @@ }, "dependencies": { "@urql/core": ">=1.11.7", - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "publishConfig": { "access": "public" diff --git a/packages/core/package.json b/packages/core/package.json index 54191b2b3b..0f28446574 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -63,7 +63,7 @@ "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" }, "dependencies": { - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "publishConfig": { "access": "public" diff --git a/packages/preact-urql/package.json b/packages/preact-urql/package.json index b56abf9786..998609725f 100644 --- a/packages/preact-urql/package.json +++ b/packages/preact-urql/package.json @@ -62,7 +62,7 @@ }, "dependencies": { "@urql/core": "^1.11.6", - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "publishConfig": { "access": "public" diff --git a/packages/react-urql/package.json b/packages/react-urql/package.json index 379c70f2d7..03d89419cc 100644 --- a/packages/react-urql/package.json +++ b/packages/react-urql/package.json @@ -60,6 +60,6 @@ }, "dependencies": { "@urql/core": "^1.11.0", - "wonka": "^4.0.10" + "wonka": "^4.0.14" } } diff --git a/packages/svelte-urql/package.json b/packages/svelte-urql/package.json index 14eb76793f..eb76351352 100644 --- a/packages/svelte-urql/package.json +++ b/packages/svelte-urql/package.json @@ -56,7 +56,7 @@ }, "dependencies": { "@urql/core": "^1.11.6", - "wonka": "^4.0.10" + "wonka": "^4.0.14" }, "devDependencies": { "graphql": "^15.0.0", diff --git a/yarn.lock b/yarn.lock index d038e70b67..6bdfed2422 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14903,10 +14903,10 @@ winston@0.8.x: pkginfo "0.3.x" stack-trace "0.0.x" -wonka@^4.0.10: - version "4.0.13" - resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.13.tgz#8d188160bd5742870c78ede7a4eba686d089a33f" - integrity sha512-aWg92IVvbP/kp+q9rw+k/Uw3C/S2J0dTDNhEhivGVH3GXJZgpFk2nuyVtiS7Y1d0UG3m4jvOrR7bPXim6D/TBg== +wonka@^4.0.14: + version "4.0.14" + resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.14.tgz#77d680a84e575ed15a9f975eb87d6c530488f3a4" + integrity sha512-v9vmsTxpZjrA8CYfztbuoTQSHEsG3ZH+NCYfasHm0V3GqBupXrjuuz0RJyUaw2cRO7ouW2js0P6i853/qxlDcA== word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.3"