Skip to content

Commit 3b93d27

Browse files
Version Packages (#3962)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6d631e2 commit 3b93d27

15 files changed

Lines changed: 90 additions & 37 deletions

File tree

.changeset/five-cars-roll.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

.changeset/gentle-weeks-allow.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

examples/graphiql-webpack/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"start": "NODE_ENV=development webpack-cli serve"
1010
},
1111
"dependencies": {
12-
"@graphiql/plugin-code-exporter": "^4.0.4",
13-
"@graphiql/plugin-explorer": "^4.0.4",
12+
"@graphiql/plugin-code-exporter": "^4.0.5",
13+
"@graphiql/plugin-explorer": "^4.0.5",
1414
"@graphiql/toolkit": "^0.11.2",
15-
"@graphiql/react": "^0.33.0",
16-
"graphiql": "^4.0.5",
15+
"@graphiql/react": "^0.34.0",
16+
"graphiql": "^4.1.0",
1717
"graphql": "^16.9.0",
1818
"graphql-ws": "^5.5.5",
1919
"react": "^19.1.0",

packages/graphiql-plugin-code-exporter/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @graphiql/plugin-code-exporter
22

3+
## 4.0.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`71755b7`](https://github.com/graphql/graphiql/commit/71755b7f412f8f3dd9f5194d3f1e0168b9ad07af), [`6d631e2`](https://github.com/graphql/graphiql/commit/6d631e2e558d038476fe235b1506bc52ecf68781)]:
8+
- @graphiql/react@0.34.0
9+
310
## 4.0.4
411

512
### Patch Changes

packages/graphiql-plugin-code-exporter/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/plugin-code-exporter",
3-
"version": "4.0.4",
3+
"version": "4.0.5",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -36,13 +36,13 @@
3636
"graphiql-code-exporter": "^3.0.3"
3737
},
3838
"peerDependencies": {
39-
"@graphiql/react": "^0.33.0",
39+
"@graphiql/react": "^0.34.0",
4040
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2",
4141
"react": "^18 || ^19",
4242
"react-dom": "^18 || ^19"
4343
},
4444
"devDependencies": {
45-
"@graphiql/react": "^0.33.0",
45+
"@graphiql/react": "^0.34.0",
4646
"@vitejs/plugin-react": "^4.4.1",
4747
"graphql": "^16.9.0",
4848
"react": "^19.1.0",

packages/graphiql-plugin-doc-explorer/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @graphiql/plugin-doc-explorer
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- [#3946](https://github.com/graphql/graphiql/pull/3946) [`71755b7`](https://github.com/graphql/graphiql/commit/71755b7f412f8f3dd9f5194d3f1e0168b9ad07af) Thanks [@dimaMachina](https://github.com/dimaMachina)! - feat(@graphiql/react): migrate React context to zustand:
8+
- replace `useExecutionContext` with `useExecutionStore` hook
9+
- replace `useEditorContext` with `useEditorStore` hook
10+
- replace `useAutoCompleteLeafs` hook with `getAutoCompleteLeafs` function
11+
- Updated dependencies [[`71755b7`](https://github.com/graphql/graphiql/commit/71755b7f412f8f3dd9f5194d3f1e0168b9ad07af), [`6d631e2`](https://github.com/graphql/graphiql/commit/6d631e2e558d038476fe235b1506bc52ecf68781)]:
12+
- @graphiql/react@0.34.0
13+
314
## 0.2.0
415

516
### Minor Changes

packages/graphiql-plugin-doc-explorer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/plugin-doc-explorer",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -42,7 +42,7 @@
4242
},
4343
"dependencies": {
4444
"react-compiler-runtime": "19.1.0-rc.1",
45-
"@graphiql/react": "^0.33.0",
45+
"@graphiql/react": "^0.34.0",
4646
"@headlessui/react": "^2.2",
4747
"zustand": "^5"
4848
},

packages/graphiql-plugin-explorer/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @graphiql/plugin-explorer
22

3+
## 4.0.5
4+
5+
### Patch Changes
6+
7+
- [#3946](https://github.com/graphql/graphiql/pull/3946) [`71755b7`](https://github.com/graphql/graphiql/commit/71755b7f412f8f3dd9f5194d3f1e0168b9ad07af) Thanks [@dimaMachina](https://github.com/dimaMachina)! - feat(@graphiql/react): migrate React context to zustand:
8+
- replace `useExecutionContext` with `useExecutionStore` hook
9+
- replace `useEditorContext` with `useEditorStore` hook
10+
- replace `useAutoCompleteLeafs` hook with `getAutoCompleteLeafs` function
11+
- Updated dependencies [[`71755b7`](https://github.com/graphql/graphiql/commit/71755b7f412f8f3dd9f5194d3f1e0168b9ad07af), [`6d631e2`](https://github.com/graphql/graphiql/commit/6d631e2e558d038476fe235b1506bc52ecf68781)]:
12+
- @graphiql/react@0.34.0
13+
314
## 4.0.4
415

516
### Patch Changes

packages/graphiql-plugin-explorer/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/plugin-explorer",
3-
"version": "4.0.4",
3+
"version": "4.0.5",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -35,13 +35,13 @@
3535
"graphiql-explorer": "^0.9.0"
3636
},
3737
"peerDependencies": {
38-
"@graphiql/react": "^0.33.0",
38+
"@graphiql/react": "^0.34.0",
3939
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2",
4040
"react": "^18 || ^19",
4141
"react-dom": "^18 || ^19"
4242
},
4343
"devDependencies": {
44-
"@graphiql/react": "^0.33.0",
44+
"@graphiql/react": "^0.34.0",
4545
"@vitejs/plugin-react": "^4.4.1",
4646
"graphql": "^16.9.0",
4747
"react": "^19.1.0",

packages/graphiql-plugin-history/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @graphiql/plugin-history
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- [#3946](https://github.com/graphql/graphiql/pull/3946) [`71755b7`](https://github.com/graphql/graphiql/commit/71755b7f412f8f3dd9f5194d3f1e0168b9ad07af) Thanks [@dimaMachina](https://github.com/dimaMachina)! - feat(@graphiql/react): migrate React context to zustand:
8+
- replace `useExecutionContext` with `useExecutionStore` hook
9+
- replace `useEditorContext` with `useEditorStore` hook
10+
- replace `useAutoCompleteLeafs` hook with `getAutoCompleteLeafs` function
11+
- Updated dependencies [[`71755b7`](https://github.com/graphql/graphiql/commit/71755b7f412f8f3dd9f5194d3f1e0168b9ad07af), [`6d631e2`](https://github.com/graphql/graphiql/commit/6d631e2e558d038476fe235b1506bc52ecf68781)]:
12+
- @graphiql/react@0.34.0
13+
314
## 0.2.0
415

516
### Minor Changes

0 commit comments

Comments
 (0)