Skip to content

Commit c126878

Browse files
Version Packages (#3603)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent fa0e7f7 commit c126878

File tree

30 files changed

+492
-174
lines changed

30 files changed

+492
-174
lines changed

.changeset/nervous-numbers-push.md

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

.changeset/rotten-seahorses-fry.md

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

.changeset/silly-yaks-bathe.md

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

.changeset/wet-toes-mate.md

Lines changed: 0 additions & 73 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": "^3.0.1",
13-
"@graphiql/plugin-explorer": "^3.0.1",
12+
"@graphiql/plugin-code-exporter": "^3.0.2",
13+
"@graphiql/plugin-explorer": "^3.0.2",
1414
"@graphiql/toolkit": "^0.9.1",
15-
"@graphiql/react": "^0.22.1",
16-
"graphiql": "^3.2.2",
15+
"@graphiql/react": "^0.22.2",
16+
"graphiql": "^3.2.3",
1717
"graphql": "^16.8.1",
1818
"graphql-ws": "^5.5.5",
1919
"react": "^18.2.0",

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.5.1",
19+
"monaco-graphql": "^1.5.2",
2020
"next": "13.4.7",
2121
"prettier": "3.0.0-alpha.12",
2222
"react": "^18.2.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.9.1",
77
"graphql": "^16.8.1",
8-
"graphql-language-service": "^5.2.0",
8+
"graphql-language-service": "^5.2.1",
99
"jsonc-parser": "^3.2.0",
1010
"monaco-editor": "^0.39.0",
11-
"monaco-graphql": "^1.5.1",
11+
"monaco-graphql": "^1.5.2",
1212
"prettier": "3.0.0-alpha.12",
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.0",
13+
"graphql-language-service": "^5.2.1",
1414
"json-schema": "^0.4.0",
1515
"jsonc-parser": "^3.2.0",
1616
"monaco-editor": "^0.39.0",
17-
"monaco-graphql": "^1.5.1",
17+
"monaco-graphql": "^1.5.2",
1818
"prettier": "3.0.0-alpha.12"
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.0.15
4+
5+
### Patch Changes
6+
7+
- [#3521](https://github.com/graphql/graphiql/pull/3521) [`aa6dbbb4`](https://github.com/graphql/graphiql/commit/aa6dbbb45bf51c1966537640fbe5c4f375735c8d) Thanks [@acao](https://github.com/acao)! - Fixes several issues with Type System (SDL) completion across the ecosystem:
8+
9+
- restores completion for object and input type fields when the document context is not detectable or parseable
10+
- correct top-level completions for either of the unknown, type system or executable definitions. this leads to mixed top level completions when the document is unparseable, but now you are not seemingly restricted to only executable top level definitions
11+
- `.graphqls` ad-hoc standard functionality remains, but is not required, as it is not part of the official spec, and the spec also allows mixed mode documents in theory, and this concept is required when the type is unknown
12+
13+
- Updated dependencies [[`aa6dbbb4`](https://github.com/graphql/graphiql/commit/aa6dbbb45bf51c1966537640fbe5c4f375735c8d)]:
14+
- graphql-language-service@5.2.1
15+
316
## 0.0.14
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.14",
3+
"version": "0.0.15",
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.0"
19+
"graphql-language-service": "^5.2.1"
2020
},
2121
"devDependencies": {
2222
"@codemirror/autocomplete": "6.2.0",

0 commit comments

Comments
 (0)