diff --git a/.changeset/fresh-rabbits-move.md b/.changeset/fresh-rabbits-move.md deleted file mode 100644 index d123b0ac769..00000000000 --- a/.changeset/fresh-rabbits-move.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphiql/plugin-explorer': patch ---- - -Fix bug whereby typing quickly into explorer sidebar would result in characters being dropped. diff --git a/.changeset/healthy-toes-grab.md b/.changeset/healthy-toes-grab.md deleted file mode 100644 index fe78caacf35..00000000000 --- a/.changeset/healthy-toes-grab.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'monaco-graphql': patch ---- - -Fix JSON diagnostics for multiple editors diff --git a/.changeset/silent-spoons-shout.md b/.changeset/silent-spoons-shout.md deleted file mode 100644 index 5c2f1ab9458..00000000000 --- a/.changeset/silent-spoons-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphiql/react': patch ---- - -Add new `useOptimisticState` hook that can wrap a useState-like hook to perform optimistic caching of state changes, this helps to avoid losing characters when the user is typing rapidly. Example of usage: `const [state, setState] = useOptimisticState(useOperationsEditorState());` diff --git a/examples/graphiql-webpack/package.json b/examples/graphiql-webpack/package.json index 0b49c73a0c9..8c3bc3c25bf 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": "^1.0.3", - "@graphiql/plugin-explorer": "^1.0.2", + "@graphiql/plugin-code-exporter": "^1.0.4", + "@graphiql/plugin-explorer": "^1.0.3", "@graphiql/toolkit": "^0.9.1", - "@graphiql/react": "^0.20.2", - "graphiql": "^3.1.0", + "@graphiql/react": "^0.20.3", + "graphiql": "^3.1.1", "graphql": "^16.8.1", "graphql-ws": "^5.5.5", "react": "^18.2.0", diff --git a/examples/monaco-graphql-nextjs/package.json b/examples/monaco-graphql-nextjs/package.json index 471572894a1..05cef35efbf 100644 --- a/examples/monaco-graphql-nextjs/package.json +++ b/examples/monaco-graphql-nextjs/package.json @@ -16,7 +16,7 @@ "marked": "^4.2.12", "monaco-editor": "^0.39.0", "monaco-editor-webpack-plugin": "^7.0.1", - "monaco-graphql": "^1.5.0", + "monaco-graphql": "^1.5.1", "next": "13.4.7", "prettier": "3.0.0-alpha.12", "react": "^18.2.0", diff --git a/examples/monaco-graphql-react-vite/package.json b/examples/monaco-graphql-react-vite/package.json index 65a1cd0f657..6d526a81da8 100644 --- a/examples/monaco-graphql-react-vite/package.json +++ b/examples/monaco-graphql-react-vite/package.json @@ -8,7 +8,7 @@ "graphql-language-service": "^5.2.0", "jsonc-parser": "^3.2.0", "monaco-editor": "^0.39.0", - "monaco-graphql": "^1.5.0", + "monaco-graphql": "^1.5.1", "prettier": "3.0.0-alpha.12", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/examples/monaco-graphql-webpack/package.json b/examples/monaco-graphql-webpack/package.json index 2a84e78f093..326e255d60e 100644 --- a/examples/monaco-graphql-webpack/package.json +++ b/examples/monaco-graphql-webpack/package.json @@ -14,7 +14,7 @@ "json-schema": "^0.4.0", "jsonc-parser": "^3.2.0", "monaco-editor": "^0.39.0", - "monaco-graphql": "^1.5.0", + "monaco-graphql": "^1.5.1", "prettier": "3.0.0-alpha.12" }, "devDependencies": { diff --git a/packages/graphiql-plugin-code-exporter/CHANGELOG.md b/packages/graphiql-plugin-code-exporter/CHANGELOG.md index fdc37bbc59e..c16e5829eee 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 +## 1.0.4 + +### Patch Changes + +- Updated dependencies [[`2b6ea316`](https://github.com/graphql/graphiql/commit/2b6ea3166c8d8e152f16d87c878aa8a66f1b3775)]: + - @graphiql/react@0.20.3 + ## 1.0.3 ### Patch Changes diff --git a/packages/graphiql-plugin-code-exporter/package.json b/packages/graphiql-plugin-code-exporter/package.json index a2a11eeb4d5..931c3db90aa 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": "1.0.3", + "version": "1.0.4", "repository": { "type": "git", "url": "https://github.com/graphql/graphiql", @@ -33,13 +33,13 @@ "graphiql-code-exporter": "^3.0.3" }, "peerDependencies": { - "@graphiql/react": "^0.20.2", + "@graphiql/react": "^0.20.3", "graphql": "^15.5.0 || ^16.0.0", "react": "^16.8.0 || ^17 || ^18", "react-dom": "^16.8.0 || ^17 || ^18" }, "devDependencies": { - "@graphiql/react": "^0.20.2", + "@graphiql/react": "^0.20.3", "@vitejs/plugin-react": "^4.0.1", "graphql": "^16.8.1", "postcss-nesting": "^10.1.7", diff --git a/packages/graphiql-plugin-explorer/CHANGELOG.md b/packages/graphiql-plugin-explorer/CHANGELOG.md index 1d627816c35..3060ce25c69 100644 --- a/packages/graphiql-plugin-explorer/CHANGELOG.md +++ b/packages/graphiql-plugin-explorer/CHANGELOG.md @@ -1,5 +1,14 @@ # @graphiql/plugin-explorer +## 1.0.3 + +### Patch Changes + +- [#3526](https://github.com/graphql/graphiql/pull/3526) [`2b6ea316`](https://github.com/graphql/graphiql/commit/2b6ea3166c8d8e152f16d87c878aa8a66f1b3775) Thanks [@benjie](https://github.com/benjie)! - Fix bug whereby typing quickly into explorer sidebar would result in characters being dropped. + +- Updated dependencies [[`2b6ea316`](https://github.com/graphql/graphiql/commit/2b6ea3166c8d8e152f16d87c878aa8a66f1b3775)]: + - @graphiql/react@0.20.3 + ## 1.0.2 ### Patch Changes diff --git a/packages/graphiql-plugin-explorer/package.json b/packages/graphiql-plugin-explorer/package.json index 6f1d3707e12..c2d86c8eccd 100644 --- a/packages/graphiql-plugin-explorer/package.json +++ b/packages/graphiql-plugin-explorer/package.json @@ -1,6 +1,6 @@ { "name": "@graphiql/plugin-explorer", - "version": "1.0.2", + "version": "1.0.3", "repository": { "type": "git", "url": "https://github.com/graphql/graphiql", @@ -32,13 +32,13 @@ "graphiql-explorer": "^0.9.0" }, "peerDependencies": { - "@graphiql/react": "^0.20.2", + "@graphiql/react": "^0.20.3", "graphql": "^15.5.0 || ^16.0.0", "react": "^16.8.0 || ^17 || ^18", "react-dom": "^16.8.0 || ^17 || ^18" }, "devDependencies": { - "@graphiql/react": "^0.20.2", + "@graphiql/react": "^0.20.3", "@vitejs/plugin-react": "^4.0.1", "graphql": "^16.8.1", "react": "^18.2.0", diff --git a/packages/graphiql-react/CHANGELOG.md b/packages/graphiql-react/CHANGELOG.md index 0093a254838..bb8e2d91838 100644 --- a/packages/graphiql-react/CHANGELOG.md +++ b/packages/graphiql-react/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphiql/react +## 0.20.3 + +### Patch Changes + +- [#3526](https://github.com/graphql/graphiql/pull/3526) [`2b6ea316`](https://github.com/graphql/graphiql/commit/2b6ea3166c8d8e152f16d87c878aa8a66f1b3775) Thanks [@benjie](https://github.com/benjie)! - Add new `useOptimisticState` hook that can wrap a useState-like hook to perform optimistic caching of state changes, this helps to avoid losing characters when the user is typing rapidly. Example of usage: `const [state, setState] = useOptimisticState(useOperationsEditorState());` + ## 0.20.2 ### Patch Changes diff --git a/packages/graphiql-react/package.json b/packages/graphiql-react/package.json index 6fc7c768368..7d48807a3a9 100644 --- a/packages/graphiql-react/package.json +++ b/packages/graphiql-react/package.json @@ -1,6 +1,6 @@ { "name": "@graphiql/react", - "version": "0.20.2", + "version": "0.20.3", "repository": { "type": "git", "url": "https://github.com/graphql/graphiql", diff --git a/packages/graphiql/CHANGELOG.md b/packages/graphiql/CHANGELOG.md index 3d017f7cee5..468f934005e 100644 --- a/packages/graphiql/CHANGELOG.md +++ b/packages/graphiql/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 3.1.1 + +### Patch Changes + +- Updated dependencies [[`2b6ea316`](https://github.com/graphql/graphiql/commit/2b6ea3166c8d8e152f16d87c878aa8a66f1b3775)]: + - @graphiql/react@0.20.3 + ## 3.1.0 ### Minor Changes diff --git a/packages/graphiql/package.json b/packages/graphiql/package.json index 851c9b39d38..2a06646b43b 100644 --- a/packages/graphiql/package.json +++ b/packages/graphiql/package.json @@ -1,6 +1,6 @@ { "name": "graphiql", - "version": "3.1.0", + "version": "3.1.1", "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.20.2", + "@graphiql/react": "^0.20.3", "@graphiql/toolkit": "^0.9.1", "graphql-language-service": "^5.2.0", "markdown-it": "^12.2.0" diff --git a/packages/monaco-graphql/CHANGELOG.md b/packages/monaco-graphql/CHANGELOG.md index 478fab242d8..a031ae46d7c 100644 --- a/packages/monaco-graphql/CHANGELOG.md +++ b/packages/monaco-graphql/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 1.5.1 + +### Patch Changes + +- [#3523](https://github.com/graphql/graphiql/pull/3523) [`88d76cab`](https://github.com/graphql/graphiql/commit/88d76cabe57aa99f89f569cb2787e2f06e0ab9c5) Thanks [@bboure](https://github.com/bboure)! - Fix JSON diagnostics for multiple editors + ## 1.5.0 ### Minor Changes diff --git a/packages/monaco-graphql/package.json b/packages/monaco-graphql/package.json index 0793c64e222..c9b32464ba4 100644 --- a/packages/monaco-graphql/package.json +++ b/packages/monaco-graphql/package.json @@ -1,7 +1,7 @@ { "name": "monaco-graphql", "description": "full service, official monaco mode for GraphQL", - "version": "1.5.0", + "version": "1.5.1", "license": "MIT", "main": "dist/monaco.contribution.js", "module": "esm/monaco.contribution.js",