diff --git a/.changeset/famous-eyes-watch.md b/.changeset/famous-eyes-watch.md deleted file mode 100644 index 02f9c647261..00000000000 --- a/.changeset/famous-eyes-watch.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@graphiql/plugin-doc-explorer': minor -'graphiql': patch ---- - -feat(@graphiql/plugin-doc-explorer): migrate React context to zustand, replace `useExplorerContext` with `useDocExplorer` and `useDocExplorerActions` hooks - diff --git a/examples/graphiql-webpack/package.json b/examples/graphiql-webpack/package.json index c1d0c0657a9..b18e7ec874b 100644 --- a/examples/graphiql-webpack/package.json +++ b/examples/graphiql-webpack/package.json @@ -13,7 +13,7 @@ "@graphiql/plugin-explorer": "^4.0.3", "@graphiql/toolkit": "^0.11.2", "@graphiql/react": "^0.32.2", - "graphiql": "^4.0.3", + "graphiql": "^4.0.4", "graphql": "^16.9.0", "graphql-ws": "^5.5.5", "react": "^19.1.0", diff --git a/packages/graphiql-plugin-doc-explorer/CHANGELOG.md b/packages/graphiql-plugin-doc-explorer/CHANGELOG.md index 03f406b7e0c..da22bdc61b9 100644 --- a/packages/graphiql-plugin-doc-explorer/CHANGELOG.md +++ b/packages/graphiql-plugin-doc-explorer/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphiql/plugin-doc-explorer +## 0.1.0 + +### Minor Changes + +- [#3940](https://github.com/graphql/graphiql/pull/3940) [`5a66864`](https://github.com/graphql/graphiql/commit/5a668647e1cbca9e846bfa617f97fbae21c821bd) Thanks [@dimaMachina](https://github.com/dimaMachina)! - feat(@graphiql/plugin-doc-explorer): migrate React context to zustand, replace `useExplorerContext` with `useDocExplorer` and `useDocExplorerActions` hooks + ## 0.0.2 ### Patch Changes diff --git a/packages/graphiql-plugin-doc-explorer/package.json b/packages/graphiql-plugin-doc-explorer/package.json index 55ecd668dfe..da55833d368 100644 --- a/packages/graphiql-plugin-doc-explorer/package.json +++ b/packages/graphiql-plugin-doc-explorer/package.json @@ -1,6 +1,6 @@ { "name": "@graphiql/plugin-doc-explorer", - "version": "0.0.2", + "version": "0.1.0", "sideEffects": false, "repository": { "type": "git", diff --git a/packages/graphiql/CHANGELOG.md b/packages/graphiql/CHANGELOG.md index 6e575ca132f..8aacf943246 100644 --- a/packages/graphiql/CHANGELOG.md +++ b/packages/graphiql/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 4.0.4 + +### Patch Changes + +- [#3940](https://github.com/graphql/graphiql/pull/3940) [`5a66864`](https://github.com/graphql/graphiql/commit/5a668647e1cbca9e846bfa617f97fbae21c821bd) Thanks [@dimaMachina](https://github.com/dimaMachina)! - feat(@graphiql/plugin-doc-explorer): migrate React context to zustand, replace `useExplorerContext` with `useDocExplorer` and `useDocExplorerActions` hooks + +- Updated dependencies [[`5a66864`](https://github.com/graphql/graphiql/commit/5a668647e1cbca9e846bfa617f97fbae21c821bd)]: + - @graphiql/plugin-doc-explorer@0.1.0 + ## 4.0.3 ### Patch Changes diff --git a/packages/graphiql/package.json b/packages/graphiql/package.json index 020254fd781..922935636af 100644 --- a/packages/graphiql/package.json +++ b/packages/graphiql/package.json @@ -1,6 +1,6 @@ { "name": "graphiql", - "version": "4.0.3", + "version": "4.0.4", "sideEffects": false, "description": "An graphical interactive in-browser GraphQL IDE.", "contributors": [ @@ -50,7 +50,7 @@ "react-compiler-runtime": "19.1.0-rc.1", "@graphiql/react": "^0.32.2", "@graphiql/plugin-history": "^0.1.0", - "@graphiql/plugin-doc-explorer": "^0.0.2" + "@graphiql/plugin-doc-explorer": "^0.1.0" }, "peerDependencies": { "graphql": "^15.5.0 || ^16.0.0 || ^17.0.0",