Skip to content

Commit 6619f76

Browse files
Version Packages (#3924)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 98d13a3 commit 6619f76

File tree

17 files changed

+140
-54
lines changed

17 files changed

+140
-54
lines changed

.changeset/gentle-houses-add.md

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

.changeset/ten-badgers-crash.md

Lines changed: 0 additions & 5 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.1",
13-
"@graphiql/plugin-explorer": "^4.0.1",
12+
"@graphiql/plugin-code-exporter": "^4.0.2",
13+
"@graphiql/plugin-explorer": "^4.0.2",
1414
"@graphiql/toolkit": "^0.11.2",
15-
"@graphiql/react": "^0.31.0",
16-
"graphiql": "^4.0.1",
15+
"@graphiql/react": "^0.32.0",
16+
"graphiql": "^4.0.2",
1717
"graphql": "^16.9.0",
1818
"graphql-ws": "^5.5.5",
1919
"react": "^19.1.0",

packages/cm6-graphql/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# cm6-graphql
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- [#3920](https://github.com/graphql/graphiql/pull/3920) [`c6fddac`](https://github.com/graphql/graphiql/commit/c6fddac4b0e639be846dd8a23ebfd3e334410178) Thanks [@dimaMachina](https://github.com/dimaMachina)! - remove unneeded rollup/esbuild dev dependencies
8+
39
## 0.2.0
410

511
### Minor Changes

packages/cm6-graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cm6-graphql",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "GraphQL language support for CodeMirror 6",
55
"scripts": {
66
"build": "cm-buildhelper src/index.ts",

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.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`98d13a3`](https://github.com/graphql/graphiql/commit/98d13a3e515eb70aaf5a5ba669c680d5959fef67)]:
8+
- @graphiql/react@0.32.0
9+
310
## 4.0.1
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.1",
3+
"version": "4.0.2",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -37,13 +37,13 @@
3737
"graphiql-code-exporter": "^3.0.3"
3838
},
3939
"peerDependencies": {
40-
"@graphiql/react": "^0.31.0",
40+
"@graphiql/react": "^0.32.0",
4141
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2",
4242
"react": "^18 || ^19",
4343
"react-dom": "^18 || ^19"
4444
},
4545
"devDependencies": {
46-
"@graphiql/react": "^0.31.0",
46+
"@graphiql/react": "^0.32.0",
4747
"@vitejs/plugin-react": "^4.4.1",
4848
"graphql": "^16.9.0",
4949
"react": "^19.1.0",
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# @graphiql/plugin-doc-explorer
2+
3+
## 0.0.1
4+
5+
### Patch Changes
6+
7+
- [#3916](https://github.com/graphql/graphiql/pull/3916) [`98d13a3`](https://github.com/graphql/graphiql/commit/98d13a3e515eb70aaf5a5ba669c680d5959fef67) Thanks [@dimaMachina](https://github.com/dimaMachina)! - - remove the following exports from `@graphiql/react` and move them in `@graphiql/plugin-doc-explorer` package:
8+
9+
- Argument
10+
- DefaultValue
11+
- DeprecationReason
12+
- Directive
13+
- DocExplorer
14+
- ExplorerContext
15+
- ExplorerContextProvider
16+
- ExplorerSection
17+
- FieldDocumentation
18+
- FieldLink
19+
- SchemaDocumentation
20+
- Search
21+
- TypeDocumentation
22+
- TypeLink
23+
- useExplorerContext
24+
- DOC_EXPLORER_PLUGIN
25+
- ExplorerContextType
26+
- ExplorerFieldDef
27+
- ExplorerNavStack
28+
- ExplorerNavStackItem
29+
- add new `referencePlugin` prop on `PluginContextProviderProps` component for plugin which is used to display the reference documentation when selecting a type.
30+
31+
- Updated dependencies [[`98d13a3`](https://github.com/graphql/graphiql/commit/98d13a3e515eb70aaf5a5ba669c680d5959fef67)]:
32+
- @graphiql/react@0.32.0

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.0.0",
3+
"version": "0.0.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.31.0",
45+
"@graphiql/react": "^0.32.0",
4646
"@headlessui/react": "^2.2"
4747
},
4848
"devDependencies": {

packages/graphiql-plugin-explorer/CHANGELOG.md

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

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`98d13a3`](https://github.com/graphql/graphiql/commit/98d13a3e515eb70aaf5a5ba669c680d5959fef67)]:
8+
- @graphiql/react@0.32.0
9+
310
## 4.0.1
411

512
### Patch Changes

0 commit comments

Comments
 (0)