Skip to content

Commit e0299b7

Browse files
Version Packages (#3984)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 403dfc2 commit e0299b7

File tree

11 files changed

+36
-24
lines changed

11 files changed

+36
-24
lines changed

.changeset/few-lamps-rest.md

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

.changeset/twenty-turkeys-compare.md

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

examples/monaco-graphql-nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"marked": "^4.2.12",
1717
"monaco-editor": "^0.39.0",
1818
"monaco-editor-webpack-plugin": "^7.0.1",
19-
"monaco-graphql": "^1.6.1",
19+
"monaco-graphql": "^1.6.2",
2020
"next": "13.4.7",
2121
"prettier": "3.3.2",
2222
"react": "^19.1.0",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"dependencies": {
66
"@graphiql/toolkit": "^0.11.3",
77
"graphql": "^16.11.0",
8-
"graphql-language-service": "^5.3.1",
8+
"graphql-language-service": "^5.4.0",
99
"jsonc-parser": "^3.2.0",
1010
"monaco-editor": "^0.52.2",
11-
"monaco-graphql": "^1.6.1",
11+
"monaco-graphql": "^1.6.2",
1212
"prettier": "3.3.2",
1313
"react": "^19.1.0",
1414
"react-dom": "^19.1.0"

examples/monaco-graphql-webpack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
},
1212
"dependencies": {
1313
"graphql": "^16.9.0",
14-
"graphql-language-service": "^5.3.1",
14+
"graphql-language-service": "^5.4.0",
1515
"json-schema": "^0.4.0",
1616
"jsonc-parser": "^3.2.0",
1717
"monaco-editor": "^0.39.0",
18-
"monaco-graphql": "^1.6.1",
18+
"monaco-graphql": "^1.6.2",
1919
"prettier": "3.3.2"
2020
},
2121
"devDependencies": {

packages/codemirror-graphql/CHANGELOG.md

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

3+
## 2.2.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9498dee`](https://github.com/graphql/graphiql/commit/9498deea7636fd82602f230b6b21c743ca5705a7)]:
8+
- graphql-language-service@5.4.0
9+
310
## 2.2.1
411

512
### 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.2.1",
3+
"version": "2.2.2",
44
"description": "GraphQL mode and helpers for CodeMirror.",
55
"contributors": [
66
"Hyohyeon Jeong <asiandrummer@fb.com>",
@@ -47,7 +47,7 @@
4747
"// TEMPORARILY PINNED until we fix graphql 15 support": "",
4848
"dependencies": {
4949
"@types/codemirror": "^0.0.90",
50-
"graphql-language-service": "5.3.1"
50+
"graphql-language-service": "5.4.0"
5151
},
5252
"devDependencies": {
5353
"@codemirror/language": "^6.0.0",

packages/graphql-language-service/CHANGELOG.md

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

3+
## 5.4.0
4+
5+
### Minor Changes
6+
7+
- [#3982](https://github.com/graphql/graphiql/pull/3982) [`9498dee`](https://github.com/graphql/graphiql/commit/9498deea7636fd82602f230b6b21c743ca5705a7) Thanks [@dimaMachina](https://github.com/dimaMachina)! - feat: set `additionalProperties: false` to report unused variables
8+
39
## 5.3.1
410

511
### Patch Changes

packages/graphql-language-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-language-service",
3-
"version": "5.3.1",
3+
"version": "5.4.0",
44
"description": "The official, runtime independent Language Service for GraphQL",
55
"contributors": [
66
"GraphQL Contributors"

packages/monaco-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+
## 1.6.2
4+
5+
### Patch Changes
6+
7+
- [#3983](https://github.com/graphql/graphiql/pull/3983) [`403dfc2`](https://github.com/graphql/graphiql/commit/403dfc21c61c9c07fce00607c1416a449bc0d57f) Thanks [@dimaMachina](https://github.com/dimaMachina)! - remove unused `MonacoCompletionItem` type
8+
9+
fix `types` field in `package.json`, should be first, before `import` or `require` fields
10+
11+
fixed `monaco-graphql` severity, it was hardcoded to `5` which is not valid value of monaco severity
12+
13+
- Updated dependencies [[`9498dee`](https://github.com/graphql/graphiql/commit/9498deea7636fd82602f230b6b21c743ca5705a7)]:
14+
- graphql-language-service@5.4.0
15+
316
## 1.6.1
417

518
### Patch Changes

0 commit comments

Comments
 (0)