Skip to content

Commit a5929ed

Browse files
Version Packages (rc)
1 parent 7fb5ac3 commit a5929ed

File tree

13 files changed

+104
-15
lines changed

13 files changed

+104
-15
lines changed

.changeset/pre.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@
3939
"many-ducks-visit",
4040
"nasty-pandas-taste",
4141
"orange-spies-poke",
42+
"pink-onions-complain",
4243
"shy-keys-rest",
4344
"soft-cars-notice",
4445
"sweet-lamps-love",
4546
"ten-peas-carry",
47+
"tender-years-destroy",
4648
"twelve-lies-invent",
4749
"warm-shoes-boil"
4850
]

examples/graphiql-vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"private": true,
55
"dependencies": {
6-
"graphiql": "^5.0.0-rc.4",
6+
"graphiql": "^5.0.0-rc.5",
77
"graphql": "^16.11.0",
88
"react": "^19.1.0",
99
"react-dom": "^19.1.0"

examples/graphiql-webpack/package.json

Lines changed: 3 additions & 3 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": "^5.0.0-rc.1",
12+
"@graphiql/plugin-code-exporter": "^5.0.0-rc.2",
1313
"@graphiql/plugin-explorer": "^5.0.0-rc.3",
14-
"@graphiql/react": "^0.35.0-rc.7",
14+
"@graphiql/react": "^0.35.0-rc.8",
1515
"@graphiql/toolkit": "^0.11.3",
16-
"graphiql": "^5.0.0-rc.4",
16+
"graphiql": "^5.0.0-rc.5",
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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphiql/plugin-code-exporter
22

3+
## 5.0.0-rc.2
4+
5+
### Minor Changes
6+
7+
- [#4025](https://github.com/graphql/graphiql/pull/4025) [`6a50740`](https://github.com/graphql/graphiql/commit/6a507407c7c63bfc779ad383054ab3a8c003ef5b) Thanks [@dimaMachina](https://github.com/dimaMachina)! - set "importsNotUsedAsValues": "error" in tsconfig
8+
39
## 5.0.0-rc.1
410

511
### Major Changes

packages/graphiql-plugin-code-exporter/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-code-exporter",
3-
"version": "5.0.0-rc.1",
3+
"version": "5.0.0-rc.2",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -42,7 +42,7 @@
4242
"react-dom": "^18 || ^19"
4343
},
4444
"devDependencies": {
45-
"@graphiql/react": "^0.35.0-rc.2",
45+
"@graphiql/react": "^0.35.0-rc.8",
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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @graphiql/plugin-doc-explorer
22

3+
## 0.3.0-rc.4
4+
5+
### Minor Changes
6+
7+
- [#4025](https://github.com/graphql/graphiql/pull/4025) [`6a50740`](https://github.com/graphql/graphiql/commit/6a507407c7c63bfc779ad383054ab3a8c003ef5b) Thanks [@dimaMachina](https://github.com/dimaMachina)! - set "importsNotUsedAsValues": "error" in tsconfig
8+
9+
- [#4026](https://github.com/graphql/graphiql/pull/4026) [`7fb5ac3`](https://github.com/graphql/graphiql/commit/7fb5ac38b8ec27f0234adc06aacf42e71f6a259b) Thanks [@dimaMachina](https://github.com/dimaMachina)! - - deprecate `useExplorerContext`, `useHistoryContext`, `usePrettifyEditors`, `useCopyQuery`, `useMergeQuery`, `useExecutionContext`, `usePluginContext`, `useSchemaContext`, `useStorageContext` hooks
10+
- fix response editor overflow on `<GraphiQL.Footer />`
11+
- export `GraphiQLProps` type
12+
- allow `children: ReactNode` for `<GraphiQL.Toolbar />`
13+
- change `ToolbarMenu` component:
14+
- The `label` and `className` props were removed
15+
- The `button` prop should now be a button element
16+
- document `useGraphiQL` and `useGraphiQLActions` hooks in `@graphiql/react` README.md
17+
- rename `useThemeStore` to `useTheme`
18+
19+
### Patch Changes
20+
21+
- Updated dependencies [[`6a50740`](https://github.com/graphql/graphiql/commit/6a507407c7c63bfc779ad383054ab3a8c003ef5b), [`7fb5ac3`](https://github.com/graphql/graphiql/commit/7fb5ac38b8ec27f0234adc06aacf42e71f6a259b)]:
22+
- @graphiql/react@0.35.0-rc.8
23+
324
## 0.3.0-rc.3
425

526
### 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.3.0-rc.3",
3+
"version": "0.3.0-rc.4",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -41,7 +41,7 @@
4141
"react-dom": "^18 || ^19"
4242
},
4343
"dependencies": {
44-
"@graphiql/react": "^0.35.0-rc.3",
44+
"@graphiql/react": "^0.35.0-rc.8",
4545
"@headlessui/react": "^2.2",
4646
"react-compiler-runtime": "19.1.0-rc.1",
4747
"zustand": "^5"

packages/graphiql-plugin-history/CHANGELOG.md

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

3+
## 0.3.0-rc.3
4+
5+
### Minor Changes
6+
7+
- [#4025](https://github.com/graphql/graphiql/pull/4025) [`6a50740`](https://github.com/graphql/graphiql/commit/6a507407c7c63bfc779ad383054ab3a8c003ef5b) Thanks [@dimaMachina](https://github.com/dimaMachina)! - set "importsNotUsedAsValues": "error" in tsconfig
8+
9+
- [#4026](https://github.com/graphql/graphiql/pull/4026) [`7fb5ac3`](https://github.com/graphql/graphiql/commit/7fb5ac38b8ec27f0234adc06aacf42e71f6a259b) Thanks [@dimaMachina](https://github.com/dimaMachina)! - - deprecate `useExplorerContext`, `useHistoryContext`, `usePrettifyEditors`, `useCopyQuery`, `useMergeQuery`, `useExecutionContext`, `usePluginContext`, `useSchemaContext`, `useStorageContext` hooks
10+
- fix response editor overflow on `<GraphiQL.Footer />`
11+
- export `GraphiQLProps` type
12+
- allow `children: ReactNode` for `<GraphiQL.Toolbar />`
13+
- change `ToolbarMenu` component:
14+
- The `label` and `className` props were removed
15+
- The `button` prop should now be a button element
16+
- document `useGraphiQL` and `useGraphiQLActions` hooks in `@graphiql/react` README.md
17+
- rename `useThemeStore` to `useTheme`
18+
19+
### Patch Changes
20+
21+
- Updated dependencies [[`6a50740`](https://github.com/graphql/graphiql/commit/6a507407c7c63bfc779ad383054ab3a8c003ef5b), [`7fb5ac3`](https://github.com/graphql/graphiql/commit/7fb5ac38b8ec27f0234adc06aacf42e71f6a259b)]:
22+
- @graphiql/react@0.35.0-rc.8
23+
324
## 0.3.0-rc.2
425

526
### Minor Changes

packages/graphiql-plugin-history/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-history",
3-
"version": "0.3.0-rc.2",
3+
"version": "0.3.0-rc.3",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",
@@ -39,7 +39,7 @@
3939
"react-dom": "^18 || ^19"
4040
},
4141
"dependencies": {
42-
"@graphiql/react": "^0.35.0-rc.4",
42+
"@graphiql/react": "^0.35.0-rc.8",
4343
"@graphiql/toolkit": "^0.11.3",
4444
"react-compiler-runtime": "19.1.0-rc.1",
4545
"zustand": "^5"

packages/graphiql-react/CHANGELOG.md

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

3+
## 0.35.0-rc.8
4+
5+
### Minor Changes
6+
7+
- [#4025](https://github.com/graphql/graphiql/pull/4025) [`6a50740`](https://github.com/graphql/graphiql/commit/6a507407c7c63bfc779ad383054ab3a8c003ef5b) Thanks [@dimaMachina](https://github.com/dimaMachina)! - set "importsNotUsedAsValues": "error" in tsconfig
8+
9+
- [#4026](https://github.com/graphql/graphiql/pull/4026) [`7fb5ac3`](https://github.com/graphql/graphiql/commit/7fb5ac38b8ec27f0234adc06aacf42e71f6a259b) Thanks [@dimaMachina](https://github.com/dimaMachina)! - - deprecate `useExplorerContext`, `useHistoryContext`, `usePrettifyEditors`, `useCopyQuery`, `useMergeQuery`, `useExecutionContext`, `usePluginContext`, `useSchemaContext`, `useStorageContext` hooks
10+
- fix response editor overflow on `<GraphiQL.Footer />`
11+
- export `GraphiQLProps` type
12+
- allow `children: ReactNode` for `<GraphiQL.Toolbar />`
13+
- change `ToolbarMenu` component:
14+
- The `label` and `className` props were removed
15+
- The `button` prop should now be a button element
16+
- document `useGraphiQL` and `useGraphiQLActions` hooks in `@graphiql/react` README.md
17+
- rename `useThemeStore` to `useTheme`
18+
319
## 0.35.0-rc.7
420

521
### Patch Changes

0 commit comments

Comments
 (0)