Skip to content

Commit 5f000ed

Browse files
Version Packages (#3715)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6c9f0df commit 5f000ed

File tree

31 files changed

+198
-60
lines changed

31 files changed

+198
-60
lines changed

.changeset/wild-frogs-invite.md

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

examples/graphiql-webpack/package.json

Lines changed: 5 additions & 5 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": "^3.0.5",
13-
"@graphiql/plugin-explorer": "^3.1.1",
14-
"@graphiql/toolkit": "^0.9.2",
15-
"@graphiql/react": "^0.23.1",
16-
"graphiql": "^3.4.1",
12+
"@graphiql/plugin-code-exporter": "^3.1.0",
13+
"@graphiql/plugin-explorer": "^3.2.0",
14+
"@graphiql/toolkit": "^0.10.0",
15+
"@graphiql/react": "^0.24.0",
16+
"graphiql": "^3.5.0",
1717
"graphql": "^16.8.1",
1818
"graphql-ws": "^5.5.5",
1919
"react": "^18.2.0",

examples/monaco-graphql-nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
"start": "next start"
1010
},
1111
"dependencies": {
12-
"@graphiql/toolkit": "^0.9.2",
12+
"@graphiql/toolkit": "^0.10.0",
1313
"graphql": "^16.8.1",
1414
"graphql-ws": "^5.5.5",
1515
"jsonc-parser": "^3.2.0",
1616
"marked": "^4.2.12",
1717
"monaco-editor": "^0.39.0",
1818
"monaco-editor-webpack-plugin": "^7.0.1",
19-
"monaco-graphql": "^1.5.3",
19+
"monaco-graphql": "^1.6.0",
2020
"next": "13.4.7",
2121
"prettier": "3.3.2",
2222
"react": "^18.2.0",

examples/monaco-graphql-react-vite/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"private": true,
44
"version": "0.0.0",
55
"dependencies": {
6-
"@graphiql/toolkit": "^0.9.2",
6+
"@graphiql/toolkit": "^0.10.0",
77
"graphql": "^16.8.1",
8-
"graphql-language-service": "^5.2.2",
8+
"graphql-language-service": "^5.3.0",
99
"jsonc-parser": "^3.2.0",
1010
"monaco-editor": "^0.39.0",
11-
"monaco-graphql": "^1.5.3",
11+
"monaco-graphql": "^1.6.0",
1212
"prettier": "3.3.2",
1313
"react": "^18.2.0",
1414
"react-dom": "^18.2.0"

examples/monaco-graphql-webpack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
},
1111
"dependencies": {
1212
"graphql": "^16.8.1",
13-
"graphql-language-service": "^5.2.2",
13+
"graphql-language-service": "^5.3.0",
1414
"json-schema": "^0.4.0",
1515
"jsonc-parser": "^3.2.0",
1616
"monaco-editor": "^0.39.0",
17-
"monaco-graphql": "^1.5.3",
17+
"monaco-graphql": "^1.6.0",
1818
"prettier": "3.3.2"
1919
},
2020
"devDependencies": {

packages/cm6-graphql/CHANGELOG.md

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

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- [#3682](https://github.com/graphql/graphiql/pull/3682) [`6c9f0df`](https://github.com/graphql/graphiql/commit/6c9f0df83ea4afe7fa59f84d83d59fba73dc3931) Thanks [@yaacovCR](https://github.com/yaacovCR)! - Support v17 of `graphql-js` from `17.0.0-alpha.2` forward.
8+
9+
Includes support for the latest incremental delivery response format. For further details, see https://github.com/graphql/defer-stream-wg/discussions/69.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`6c9f0df`](https://github.com/graphql/graphiql/commit/6c9f0df83ea4afe7fa59f84d83d59fba73dc3931)]:
14+
15+
316
## 0.0.15
417

518
### Patch Changes

packages/cm6-graphql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cm6-graphql",
3-
"version": "0.0.15",
3+
"version": "0.1.0",
44
"description": "GraphQL language support for CodeMirror 6",
55
"scripts": {
66
"build": "cm-buildhelper src/index.ts",
@@ -16,7 +16,7 @@
1616
"types": "dist/index.d.ts",
1717
"sideEffects": false,
1818
"dependencies": {
19-
"graphql-language-service": "^5.2.1"
19+
"graphql-language-service": "^5.3.0"
2020
},
2121
"devDependencies": {
2222
"@codemirror/autocomplete": "6.2.0",

packages/codemirror-graphql/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
22

3+
## 2.1.0
4+
5+
### Minor Changes
6+
7+
- [#3682](https://github.com/graphql/graphiql/pull/3682) [`6c9f0df`](https://github.com/graphql/graphiql/commit/6c9f0df83ea4afe7fa59f84d83d59fba73dc3931) Thanks [@yaacovCR](https://github.com/yaacovCR)! - Support v17 of `graphql-js` from `17.0.0-alpha.2` forward.
8+
9+
Includes support for the latest incremental delivery response format. For further details, see https://github.com/graphql/defer-stream-wg/discussions/69.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`6c9f0df`](https://github.com/graphql/graphiql/commit/6c9f0df83ea4afe7fa59f84d83d59fba73dc3931)]:
14+
15+
316
## 2.0.13
417

518
### Patch Changes

packages/codemirror-graphql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemirror-graphql",
3-
"version": "2.0.13",
3+
"version": "2.1.0",
44
"description": "GraphQL mode and helpers for CodeMirror.",
55
"contributors": [
66
"Hyohyeon Jeong <[email protected]>",
@@ -45,7 +45,7 @@
4545
"// TEMPORARILY PINNED until we fix graphql 15 support": "",
4646
"dependencies": {
4747
"@types/codemirror": "^0.0.90",
48-
"graphql-language-service": "5.2.2"
48+
"graphql-language-service": "5.3.0"
4949
},
5050
"devDependencies": {
5151
"@codemirror/language": "^6.0.0",

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

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

3+
## 3.1.0
4+
5+
### Minor Changes
6+
7+
- [#3682](https://github.com/graphql/graphiql/pull/3682) [`6c9f0df`](https://github.com/graphql/graphiql/commit/6c9f0df83ea4afe7fa59f84d83d59fba73dc3931) Thanks [@yaacovCR](https://github.com/yaacovCR)! - Support v17 of `graphql-js` from `17.0.0-alpha.2` forward.
8+
9+
Includes support for the latest incremental delivery response format. For further details, see https://github.com/graphql/defer-stream-wg/discussions/69.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`6c9f0df`](https://github.com/graphql/graphiql/commit/6c9f0df83ea4afe7fa59f84d83d59fba73dc3931)]:
14+
- @graphiql/react@0.24.0
15+
316
## 3.0.5
417

518
### Patch Changes

0 commit comments

Comments
 (0)