From cd5f72390578dd37e72c2b40f1c498efa61277ba Mon Sep 17 00:00:00 2001 From: Rikki Schulte Date: Sat, 9 Nov 2024 20:21:53 +0100 Subject: [PATCH] Version Packages (#3808) Co-authored-by: github-actions[bot] --- .changeset/four-dogs-swim.md | 5 ----- examples/graphiql-webpack/package.json | 8 ++++---- packages/graphiql-plugin-code-exporter/CHANGELOG.md | 7 +++++++ packages/graphiql-plugin-code-exporter/package.json | 6 +++--- packages/graphiql-plugin-explorer/CHANGELOG.md | 7 +++++++ packages/graphiql-plugin-explorer/package.json | 6 +++--- packages/graphiql-react/CHANGELOG.md | 6 ++++++ packages/graphiql-react/package.json | 2 +- packages/graphiql/CHANGELOG.md | 7 +++++++ packages/graphiql/package.json | 4 ++-- 10 files changed, 40 insertions(+), 18 deletions(-) delete mode 100644 .changeset/four-dogs-swim.md diff --git a/.changeset/four-dogs-swim.md b/.changeset/four-dogs-swim.md deleted file mode 100644 index dc5e5a7015b..00000000000 --- a/.changeset/four-dogs-swim.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphiql/react': minor ---- - -Fix: removed deprecated usage of Fn.prototype.caller diff --git a/examples/graphiql-webpack/package.json b/examples/graphiql-webpack/package.json index 8f37fd3bc08..fb04bc67f1f 100644 --- a/examples/graphiql-webpack/package.json +++ b/examples/graphiql-webpack/package.json @@ -9,11 +9,11 @@ "start": "NODE_ENV=development webpack-cli serve" }, "dependencies": { - "@graphiql/plugin-code-exporter": "^3.1.2", - "@graphiql/plugin-explorer": "^3.2.2", + "@graphiql/plugin-code-exporter": "^3.1.3", + "@graphiql/plugin-explorer": "^3.2.3", "@graphiql/toolkit": "^0.11.0", - "@graphiql/react": "^0.26.2", - "graphiql": "^3.7.1", + "@graphiql/react": "^0.27.0", + "graphiql": "^3.7.2", "graphql": "^16.9.0", "graphql-ws": "^5.5.5", "react": "^18.2.0", diff --git a/packages/graphiql-plugin-code-exporter/CHANGELOG.md b/packages/graphiql-plugin-code-exporter/CHANGELOG.md index 527b1220b10..2eb02e4f59a 100644 --- a/packages/graphiql-plugin-code-exporter/CHANGELOG.md +++ b/packages/graphiql-plugin-code-exporter/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphiql/plugin-code-exporter +## 3.1.3 + +### Patch Changes + +- Updated dependencies [[`f86e2bc`](https://github.com/graphql/graphiql/commit/f86e2bce40826b3d07755f91b37a72051de00f9c)]: + - @graphiql/react@0.27.0 + ## 3.1.2 ### Patch Changes diff --git a/packages/graphiql-plugin-code-exporter/package.json b/packages/graphiql-plugin-code-exporter/package.json index 5636068b196..109c34e11f7 100644 --- a/packages/graphiql-plugin-code-exporter/package.json +++ b/packages/graphiql-plugin-code-exporter/package.json @@ -1,6 +1,6 @@ { "name": "@graphiql/plugin-code-exporter", - "version": "3.1.2", + "version": "3.1.3", "repository": { "type": "git", "url": "https://github.com/graphql/graphiql", @@ -33,13 +33,13 @@ "graphiql-code-exporter": "^3.0.3" }, "peerDependencies": { - "@graphiql/react": "^0.26.0", + "@graphiql/react": "^0.27.0", "graphql": "^15.5.0 || ^16.0.0 || ^17.0.0", "react": "^16.8.0 || ^17 || ^18", "react-dom": "^16.8.0 || ^17 || ^18" }, "devDependencies": { - "@graphiql/react": "^0.26.0", + "@graphiql/react": "^0.27.0", "@vitejs/plugin-react": "^4.3.1", "graphql": "^16.9.0", "postcss-nesting": "^10.1.7", diff --git a/packages/graphiql-plugin-explorer/CHANGELOG.md b/packages/graphiql-plugin-explorer/CHANGELOG.md index 6790abb3588..abe9022b50c 100644 --- a/packages/graphiql-plugin-explorer/CHANGELOG.md +++ b/packages/graphiql-plugin-explorer/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphiql/plugin-explorer +## 3.2.3 + +### Patch Changes + +- Updated dependencies [[`f86e2bc`](https://github.com/graphql/graphiql/commit/f86e2bce40826b3d07755f91b37a72051de00f9c)]: + - @graphiql/react@0.27.0 + ## 3.2.2 ### Patch Changes diff --git a/packages/graphiql-plugin-explorer/package.json b/packages/graphiql-plugin-explorer/package.json index 2016e312476..8efa02f0771 100644 --- a/packages/graphiql-plugin-explorer/package.json +++ b/packages/graphiql-plugin-explorer/package.json @@ -1,6 +1,6 @@ { "name": "@graphiql/plugin-explorer", - "version": "3.2.2", + "version": "3.2.3", "repository": { "type": "git", "url": "https://github.com/graphql/graphiql", @@ -32,13 +32,13 @@ "graphiql-explorer": "^0.9.0" }, "peerDependencies": { - "@graphiql/react": "^0.26.0", + "@graphiql/react": "^0.27.0", "graphql": "^15.5.0 || ^16.0.0 || ^17.0.0", "react": "^16.8.0 || ^17 || ^18", "react-dom": "^16.8.0 || ^17 || ^18" }, "devDependencies": { - "@graphiql/react": "^0.26.0", + "@graphiql/react": "^0.27.0", "@vitejs/plugin-react": "^4.3.1", "graphql": "^16.9.0", "react": "^18.2.0", diff --git a/packages/graphiql-react/CHANGELOG.md b/packages/graphiql-react/CHANGELOG.md index c4b0b2f8668..b6f5317d3df 100644 --- a/packages/graphiql-react/CHANGELOG.md +++ b/packages/graphiql-react/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphiql/react +## 0.27.0 + +### Minor Changes + +- [#3806](https://github.com/graphql/graphiql/pull/3806) [`f86e2bc`](https://github.com/graphql/graphiql/commit/f86e2bce40826b3d07755f91b37a72051de00f9c) Thanks [@simmerer](https://github.com/simmerer)! - Fix: removed deprecated usage of Fn.prototype.caller + ## 0.26.2 ### Patch Changes diff --git a/packages/graphiql-react/package.json b/packages/graphiql-react/package.json index 9fa1548abb3..367f9e5af3a 100644 --- a/packages/graphiql-react/package.json +++ b/packages/graphiql-react/package.json @@ -1,6 +1,6 @@ { "name": "@graphiql/react", - "version": "0.26.2", + "version": "0.27.0", "repository": { "type": "git", "url": "https://github.com/graphql/graphiql", diff --git a/packages/graphiql/CHANGELOG.md b/packages/graphiql/CHANGELOG.md index 35f1823bb20..0d0763e6719 100644 --- a/packages/graphiql/CHANGELOG.md +++ b/packages/graphiql/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 3.7.2 + +### Patch Changes + +- Updated dependencies [[`f86e2bc`](https://github.com/graphql/graphiql/commit/f86e2bce40826b3d07755f91b37a72051de00f9c)]: + - @graphiql/react@0.27.0 + ## 3.7.1 ### Patch Changes diff --git a/packages/graphiql/package.json b/packages/graphiql/package.json index 4c99237926c..9e6a99a8926 100644 --- a/packages/graphiql/package.json +++ b/packages/graphiql/package.json @@ -1,6 +1,6 @@ { "name": "graphiql", - "version": "3.7.1", + "version": "3.7.2", "description": "An graphical interactive in-browser GraphQL IDE.", "contributors": [ "Hyohyeon Jeong ", @@ -47,7 +47,7 @@ "webpack": "webpack-cli --config resources/webpack.config.js" }, "dependencies": { - "@graphiql/react": "^0.26.2" + "@graphiql/react": "^0.27.0" }, "peerDependencies": { "graphql": "^15.5.0 || ^16.0.0 || ^17.0.0",