From 8656621e4e78d3e14d01c5c7eab2dce0ff2545cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 13:20:41 +0200 Subject: [PATCH] Version Packages (#3688) Co-authored-by: github-actions[bot] --- .changeset/plenty-carrots-confess.md | 5 ----- .changeset/shiny-eagles-join.md | 5 ----- examples/with-apq/package.json | 4 ++-- examples/with-defer-stream-directives/package.json | 4 ++-- examples/with-graphcache-pagination/package.json | 4 ++-- examples/with-graphcache-updates/package.json | 4 ++-- examples/with-infinite-pagination/package.json | 4 ++-- examples/with-multipart/package.json | 4 ++-- examples/with-next/package.json | 4 ++-- examples/with-pagination/package.json | 4 ++-- examples/with-react-native/package.json | 4 ++-- examples/with-react/package.json | 4 ++-- examples/with-refresh-auth/package.json | 4 ++-- examples/with-retry/package.json | 4 ++-- examples/with-subscriptions-via-fetch/package.json | 4 ++-- examples/with-svelte/package.json | 2 +- examples/with-vue3/package.json | 2 +- packages/core/CHANGELOG.md | 7 +++++++ packages/core/jsr.json | 2 +- packages/core/package.json | 2 +- packages/react-urql/CHANGELOG.md | 7 +++++++ packages/react-urql/jsr.json | 2 +- packages/react-urql/package.json | 2 +- 23 files changed, 46 insertions(+), 42 deletions(-) delete mode 100644 .changeset/plenty-carrots-confess.md delete mode 100644 .changeset/shiny-eagles-join.md diff --git a/.changeset/plenty-carrots-confess.md b/.changeset/plenty-carrots-confess.md deleted file mode 100644 index 1387000cf6..0000000000 --- a/.changeset/plenty-carrots-confess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/core': patch ---- - -Remove `for-of` syntax from `@urql/core` helpers for JSC memory reduction. diff --git a/.changeset/shiny-eagles-join.md b/.changeset/shiny-eagles-join.md deleted file mode 100644 index 2e46af4bbe..0000000000 --- a/.changeset/shiny-eagles-join.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'urql': minor ---- - -Support use of defer with suspense diff --git a/examples/with-apq/package.json b/examples/with-apq/package.json index 8f11da151d..e8c4919d1b 100644 --- a/examples/with-apq/package.json +++ b/examples/with-apq/package.json @@ -6,12 +6,12 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/exchange-persisted": "^4.3.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "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 52824bb5b8..37f36fcfdd 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": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/exchange-graphcache": "^7.2.0", "graphql": "17.0.0-alpha.2", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@apollo/server": "^4.4.1", diff --git a/examples/with-graphcache-pagination/package.json b/examples/with-graphcache-pagination/package.json index af5ac7f35e..32fd4b6a1c 100644 --- a/examples/with-graphcache-pagination/package.json +++ b/examples/with-graphcache-pagination/package.json @@ -6,12 +6,12 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/exchange-graphcache": "^7.2.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-graphcache-updates/package.json b/examples/with-graphcache-updates/package.json index aadffc5bf0..7793c5b487 100644 --- a/examples/with-graphcache-updates/package.json +++ b/examples/with-graphcache-updates/package.json @@ -6,13 +6,13 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/exchange-auth": "^2.2.0", "@urql/exchange-graphcache": "^7.2.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-infinite-pagination/package.json b/examples/with-infinite-pagination/package.json index 65418a50ec..79f1198925 100644 --- a/examples/with-infinite-pagination/package.json +++ b/examples/with-infinite-pagination/package.json @@ -6,11 +6,11 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-multipart/package.json b/examples/with-multipart/package.json index d7ca48f6bd..5e753ab8df 100644 --- a/examples/with-multipart/package.json +++ b/examples/with-multipart/package.json @@ -6,11 +6,11 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-next/package.json b/examples/with-next/package.json index 32ebff53d9..4e6ce2383b 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": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/next": "^1.1.2", "graphql": "^16.6.0", "next": "13.4.2", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "scripts": { "dev": "next dev", diff --git a/examples/with-pagination/package.json b/examples/with-pagination/package.json index 65418a50ec..79f1198925 100644 --- a/examples/with-pagination/package.json +++ b/examples/with-pagination/package.json @@ -6,11 +6,11 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-react-native/package.json b/examples/with-react-native/package.json index c828baa8ef..71689f4f60 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": "^5.0.6", + "@urql/core": "^5.0.7", "graphql": "^16.6.0", "react": "18.2.0", "react-native": "0.71.4", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@babel/core": "^7.12.9", diff --git a/examples/with-react/package.json b/examples/with-react/package.json index 2959d2dd83..cc0bfe3b9e 100644 --- a/examples/with-react/package.json +++ b/examples/with-react/package.json @@ -6,11 +6,11 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-refresh-auth/package.json b/examples/with-refresh-auth/package.json index e6493cae6c..26a1f1a050 100644 --- a/examples/with-refresh-auth/package.json +++ b/examples/with-refresh-auth/package.json @@ -6,12 +6,12 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/exchange-auth": "^2.2.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-retry/package.json b/examples/with-retry/package.json index e625fed232..7c0f30f4a3 100644 --- a/examples/with-retry/package.json +++ b/examples/with-retry/package.json @@ -6,12 +6,12 @@ "start": "vite" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/exchange-retry": "^1.3.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "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 d7ca5d07e4..5f6d93a1ba 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": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/exchange-graphcache": "^7.2.0", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "urql": "^4.1.0" + "urql": "^4.2.0" }, "devDependencies": { "@vitejs/plugin-react": "^3.1.0", diff --git a/examples/with-svelte/package.json b/examples/with-svelte/package.json index 20c4efb2e2..958f8ad404 100644 --- a/examples/with-svelte/package.json +++ b/examples/with-svelte/package.json @@ -8,7 +8,7 @@ "serve": "vite preview" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/svelte": "^4.2.1", "graphql": "^16.6.0", "svelte": "^4.0.5" diff --git a/examples/with-vue3/package.json b/examples/with-vue3/package.json index 16935b2f2a..10371846f9 100644 --- a/examples/with-vue3/package.json +++ b/examples/with-vue3/package.json @@ -8,7 +8,7 @@ "serve": "vite preview" }, "dependencies": { - "@urql/core": "^5.0.6", + "@urql/core": "^5.0.7", "@urql/vue": "^1.4.1", "graphql": "^16.6.0", "vue": "^3.2.47" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index de8d5c093e..3fd9e2c1fc 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,12 @@ # @urql/core +## 5.0.7 + +### Patch Changes + +- Remove `for-of` syntax from `@urql/core` helpers for JSC memory reduction + Submitted by [@kitten](https://github.com/kitten) (See [#3690](https://github.com/urql-graphql/urql/pull/3690)) + ## 5.0.6 ### Patch Changes diff --git a/packages/core/jsr.json b/packages/core/jsr.json index a5c4960a1e..0b978869ce 100644 --- a/packages/core/jsr.json +++ b/packages/core/jsr.json @@ -1,6 +1,6 @@ { "name": "@urql/core", - "version": "5.0.6", + "version": "5.0.7", "exports": { ".": "./src/index.ts", "./internal": "./src/internal/index.ts" diff --git a/packages/core/package.json b/packages/core/package.json index 694bd353d8..a4a44103cb 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@urql/core", - "version": "5.0.6", + "version": "5.0.7", "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/react-urql/CHANGELOG.md b/packages/react-urql/CHANGELOG.md index eccdfd872d..9abdc19bc7 100644 --- a/packages/react-urql/CHANGELOG.md +++ b/packages/react-urql/CHANGELOG.md @@ -1,5 +1,12 @@ # urql +## 4.2.0 + +### Minor Changes + +- Support use of defer with suspense + Submitted by [@AndrewIngram](https://github.com/AndrewIngram) (See [#3687](https://github.com/urql-graphql/urql/pull/3687)) + ## 4.1.0 ### Minor Changes diff --git a/packages/react-urql/jsr.json b/packages/react-urql/jsr.json index a03b1542a8..64d1ecbd55 100644 --- a/packages/react-urql/jsr.json +++ b/packages/react-urql/jsr.json @@ -1,6 +1,6 @@ { "name": "urql", - "version": "4.1.0", + "version": "4.2.0", "exports": "src/index.ts", "exclude": [ "node_modules", diff --git a/packages/react-urql/package.json b/packages/react-urql/package.json index a872fd49aa..c85ecfdbc6 100644 --- a/packages/react-urql/package.json +++ b/packages/react-urql/package.json @@ -1,6 +1,6 @@ { "name": "urql", - "version": "4.1.0", + "version": "4.2.0", "description": "A highly customizable and versatile GraphQL client for React", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/",