Skip to content

Commit c03bf6d

Browse files
Version Packages
1 parent e7c436b commit c03bf6d

File tree

12 files changed

+107
-41
lines changed

12 files changed

+107
-41
lines changed

.changeset/grumpy-knives-smile.md

-25
This file was deleted.

examples/graphiql-webpack/package.json

+4-4
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.0",
13-
"@graphiql/plugin-explorer": "^4.0.0",
12+
"@graphiql/plugin-code-exporter": "^4.0.1",
13+
"@graphiql/plugin-explorer": "^4.0.1",
1414
"@graphiql/toolkit": "^0.11.2",
15-
"@graphiql/react": "^0.30.0",
16-
"graphiql": "^4.0.0",
15+
"@graphiql/react": "^0.31.0",
16+
"graphiql": "^4.0.1",
1717
"graphql": "^16.9.0",
1818
"graphql-ws": "^5.5.5",
1919
"react": "^19.1.0",

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

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @graphiql/plugin-code-exporter
22

3+
## 4.0.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e7c436b`](https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6)]:
8+
- @graphiql/react@0.31.0
9+
310
## 4.0.0
411

512
### Major Changes

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/plugin-code-exporter",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -39,13 +39,13 @@
3939
"graphiql-code-exporter": "^3.0.3"
4040
},
4141
"peerDependencies": {
42-
"@graphiql/react": "^0.30.0",
42+
"@graphiql/react": "^0.31.0",
4343
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2",
4444
"react": "^18 || ^19",
4545
"react-dom": "^18 || ^19"
4646
},
4747
"devDependencies": {
48-
"@graphiql/react": "^0.30.0",
48+
"@graphiql/react": "^0.31.0",
4949
"@vitejs/plugin-react": "^4.4.1",
5050
"graphql": "^16.9.0",
5151
"react": "^19.1.0",

packages/graphiql-plugin-explorer/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @graphiql/plugin-explorer
22

3+
## 4.0.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e7c436b`](https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6)]:
8+
- @graphiql/react@0.31.0
9+
310
## 4.0.0
411

512
### Major Changes

packages/graphiql-plugin-explorer/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/plugin-explorer",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -38,13 +38,13 @@
3838
"graphiql-explorer": "^0.9.0"
3939
},
4040
"peerDependencies": {
41-
"@graphiql/react": "^0.30.0",
41+
"@graphiql/react": "^0.31.0",
4242
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2",
4343
"react": "^18 || ^19",
4444
"react-dom": "^18 || ^19"
4545
},
4646
"devDependencies": {
47-
"@graphiql/react": "^0.30.0",
47+
"@graphiql/react": "^0.31.0",
4848
"@vitejs/plugin-react": "^4.4.1",
4949
"graphql": "^16.9.0",
5050
"react": "^19.1.0",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# @graphiql/plugin-history
2+
3+
## 0.0.1
4+
5+
### Patch Changes
6+
7+
- [#3911](https://github.com/graphql/graphiql/pull/3911) [`e7c436b`](https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6) Thanks [@dimaMachina](https://github.com/dimaMachina)! - - export `cn` from `@graphiql/react`
8+
9+
- remove following exports from `@graphiql/react` and move them in `@graphiql/plugin-history` package:
10+
- `History`
11+
- `HistoryContext`
12+
- `HistoryContextType`
13+
- `HistoryContextProvider`
14+
- `useHistoryContext`
15+
- `HISTORY_PLUGIN`
16+
- remove types from `@graphiql/react` (use `ComponentProps<typeof MyContextProviderProps>` instead):
17+
- `HistoryContextProviderProps`
18+
- `ExecutionContextProviderProps`
19+
- `EditorContextProviderProps`
20+
- `ExplorerContextProviderProps`
21+
- `PluginContextProviderProps`
22+
- `SchemaContextProviderProps`
23+
- `StorageContextProviderProps`
24+
- `GraphiQLProviderProps`
25+
26+
- Updated dependencies [[`e7c436b`](https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6)]:
27+
- @graphiql/react@0.31.0

packages/graphiql-plugin-history/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/plugin-history",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -41,7 +41,7 @@
4141
"dependencies": {
4242
"react-compiler-runtime": "19.1.0-rc.1",
4343
"@graphiql/toolkit": "^0.11.2",
44-
"@graphiql/react": "^0.30.0"
44+
"@graphiql/react": "^0.31.0"
4545
},
4646
"devDependencies": {
4747
"@testing-library/react": "^16.1.0",

packages/graphiql-react/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# @graphiql/react
22

3+
## 0.31.0
4+
5+
### Minor Changes
6+
7+
- [#3911](https://github.com/graphql/graphiql/pull/3911) [`e7c436b`](https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6) Thanks [@dimaMachina](https://github.com/dimaMachina)! - - export `cn` from `@graphiql/react`
8+
9+
- remove following exports from `@graphiql/react` and move them in `@graphiql/plugin-history` package:
10+
- `History`
11+
- `HistoryContext`
12+
- `HistoryContextType`
13+
- `HistoryContextProvider`
14+
- `useHistoryContext`
15+
- `HISTORY_PLUGIN`
16+
- remove types from `@graphiql/react` (use `ComponentProps<typeof MyContextProviderProps>` instead):
17+
- `HistoryContextProviderProps`
18+
- `ExecutionContextProviderProps`
19+
- `EditorContextProviderProps`
20+
- `ExplorerContextProviderProps`
21+
- `PluginContextProviderProps`
22+
- `SchemaContextProviderProps`
23+
- `StorageContextProviderProps`
24+
- `GraphiQLProviderProps`
25+
326
## 0.30.0
427

528
### Minor Changes

packages/graphiql-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/react",
3-
"version": "0.30.0",
3+
"version": "0.31.0",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",

packages/graphiql/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Change Log
22

3+
## 4.0.1
4+
5+
### Patch Changes
6+
7+
- [#3911](https://github.com/graphql/graphiql/pull/3911) [`e7c436b`](https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6) Thanks [@dimaMachina](https://github.com/dimaMachina)! - - export `cn` from `@graphiql/react`
8+
9+
- remove following exports from `@graphiql/react` and move them in `@graphiql/plugin-history` package:
10+
- `History`
11+
- `HistoryContext`
12+
- `HistoryContextType`
13+
- `HistoryContextProvider`
14+
- `useHistoryContext`
15+
- `HISTORY_PLUGIN`
16+
- remove types from `@graphiql/react` (use `ComponentProps<typeof MyContextProviderProps>` instead):
17+
- `HistoryContextProviderProps`
18+
- `ExecutionContextProviderProps`
19+
- `EditorContextProviderProps`
20+
- `ExplorerContextProviderProps`
21+
- `PluginContextProviderProps`
22+
- `SchemaContextProviderProps`
23+
- `StorageContextProviderProps`
24+
- `GraphiQLProviderProps`
25+
26+
- Updated dependencies [[`e7c436b`](https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6)]:
27+
- @graphiql/plugin-history@0.0.1
28+
- @graphiql/react@0.31.0
29+
330
## 4.0.0
431

532
### Major Changes

packages/graphiql/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphiql",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"sideEffects": false,
55
"description": "An graphical interactive in-browser GraphQL IDE.",
66
"contributors": [
@@ -47,8 +47,8 @@
4747
},
4848
"dependencies": {
4949
"react-compiler-runtime": "19.1.0-rc.1",
50-
"@graphiql/react": "^0.30.0",
51-
"@graphiql/plugin-history": "^0.0.0"
50+
"@graphiql/react": "^0.31.0",
51+
"@graphiql/plugin-history": "^0.0.1"
5252
},
5353
"peerDependencies": {
5454
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0",

0 commit comments

Comments
 (0)