Skip to content

Commit 28211c7

Browse files
Merge branch 'main' into headers-previous-tabs
2 parents de07041 + 9361440 commit 28211c7

File tree

12 files changed

+120
-23
lines changed

12 files changed

+120
-23
lines changed

examples/graphiql-vite-react-router/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
"start": "react-router-serve dist/server/index.js"
1212
},
1313
"dependencies": {
14-
"@graphiql/react": "0.37.1",
14+
"@graphiql/react": "0.37.2",
1515
"@react-router/fs-routes": "7.6.3",
1616
"@react-router/node": "7.6.3",
1717
"@react-router/serve": "7.6.3",
18-
"graphiql": "5.2.0",
18+
"graphiql": "5.2.1",
1919
"isbot": "^5",
2020
"react": "19.1.0",
2121
"react-dom": "19.1.0",

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.2.0",
6+
"graphiql": "^5.2.1",
77
"graphql": "^16.11.0",
88
"react": "^19.1.0",
99
"react-dom": "^19.1.0"

examples/graphiql-webpack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"dependencies": {
1212
"@graphiql/plugin-code-exporter": "^5.1.1",
1313
"@graphiql/plugin-explorer": "^5.1.1",
14-
"@graphiql/react": "^0.37.1",
14+
"@graphiql/react": "^0.37.2",
1515
"@graphiql/toolkit": "^0.11.3",
16-
"graphiql": "^5.2.0",
16+
"graphiql": "^5.2.1",
1717
"graphql": "^16.9.0",
1818
"graphql-ws": "^5.5.5",
1919
"react": "^19.1.0",

packages/graphiql-react/CHANGELOG.md

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

3+
## 0.37.2
4+
5+
### Patch Changes
6+
7+
- [#4124](https://github.com/graphql/graphiql/pull/4124) [`d77abe6`](https://github.com/graphql/graphiql/commit/d77abe647e700ef8949a16c3bccda648d5c6adae) Thanks [@dimaMachina](https://github.com/dimaMachina)! - pin `monaco-editor` to `0.52.2`
8+
39
## 0.37.1
410

511
### Patch Changes

packages/graphiql-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/react",
3-
"version": "0.37.1",
3+
"version": "0.37.2",
44
"sideEffects": [
55
"dist/setup-workers/*"
66
],
@@ -61,7 +61,7 @@
6161
"graphql-language-service": "^5.5.0",
6262
"jsonc-parser": "^3.3.1",
6363
"markdown-it": "^14.1.0",
64-
"monaco-editor": "^0.52.2",
64+
"monaco-editor": "0.52.2",
6565
"monaco-graphql": "^1.7.2",
6666
"prettier": "^3.5.3",
6767
"set-value": "^4.1.0",

packages/graphiql-react/src/setup-workers/esm.sh.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable import-x/no-unresolved */
2-
import JsonWorker from 'https://esm.sh/monaco-editor/esm/vs/language/json/json.worker.js?worker';
2+
import JsonWorker from 'https://esm.sh/monaco-editor@0.52.2/esm/vs/language/json/json.worker.js?worker';
33
import GraphQLWorker from 'https://esm.sh/monaco-graphql/esm/graphql.worker.js?worker';
4-
import EditorWorker from 'https://esm.sh/monaco-editor/esm/vs/editor/editor.worker.js?worker';
4+
import EditorWorker from 'https://esm.sh/monaco-editor@0.52.2/esm/vs/editor/editor.worker.js?worker';
55

66
globalThis.MonacoEnvironment = {
77
getWorker(_workerId: string, label: string) {

packages/graphiql/CHANGELOG.md

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

3+
## 5.2.1
4+
5+
### Patch Changes
6+
7+
- [#4124](https://github.com/graphql/graphiql/pull/4124) [`d77abe6`](https://github.com/graphql/graphiql/commit/d77abe647e700ef8949a16c3bccda648d5c6adae) Thanks [@dimaMachina](https://github.com/dimaMachina)! - pin `monaco-editor` to `0.52.2`
8+
9+
- Updated dependencies [[`d77abe6`](https://github.com/graphql/graphiql/commit/d77abe647e700ef8949a16c3bccda648d5c6adae)]:
10+
- @graphiql/react@0.37.2
11+
312
## 5.2.0
413

514
### Minor Changes

packages/graphiql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphiql",
3-
"version": "5.2.0",
3+
"version": "5.2.1",
44
"sideEffects": [
55
"dist/setup-workers/*"
66
],
@@ -51,7 +51,7 @@
5151
"dependencies": {
5252
"@graphiql/plugin-doc-explorer": "^0.4.1",
5353
"@graphiql/plugin-history": "^0.4.1",
54-
"@graphiql/react": "^0.37.1",
54+
"@graphiql/react": "^0.37.2",
5555
"react-compiler-runtime": "19.1.0-rc.1"
5656
},
5757
"peerDependencies": {

packages/monaco-graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"devDependencies": {
7373
"execa": "^7.1.1",
7474
"graphql": "^16.9.0",
75-
"monaco-editor": "^0.52.2",
75+
"monaco-editor": "0.52.2",
7676
"prettier": "3.3.2",
7777
"vscode-languageserver-types": "^3.17.1"
7878
},
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
| This is an open meeting: To attend, edit and PR this file. (Edit: ✎ above, or press "e") |
2+
| ---------------------------------------------------------------------------------------- |
3+
4+
# GraphiQL WG — January 2026
5+
6+
To read about the purpose of this subcommittee, please see [the README](../../README.md).
7+
8+
9+
- **Date & Time**: [January 13, 2026, 4:00 – 5:00 PM UTC](https://www.timeanddate.com/worldclock/converter.html?iso=20260113T160000&p1=224&p2=24&p3=179&p4=136&p5=37&p6=239&p7=101&p8=152)
10+
- View the [calendar][], or subscribe ([Google Calendar][], [ical file][]).
11+
- _Please Note:_ The date or time may change. Please check this agenda the
12+
week of the meeting to confirm. While we try to keep all calendars accurate,
13+
this agenda document is the source of truth.
14+
- **Video Conference Link**: https://zoom.us/j/760146252
15+
- _Password:_ graphiql
16+
- **Live Notes**: [Live Notes][]
17+
18+
[calendar]: https://calendar.google.com/calendar/embed?src=linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8%40group.calendar.google.com
19+
[google calendar]: https://calendar.google.com/calendar?cid=bGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBncm91cC5jYWxlbmRhci5nb29nbGUuY29t
20+
[ical file]: https://calendar.google.com/calendar/ical/linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8%40group.calendar.google.com/public/basic.ics
21+
[live notes]: https://docs.google.com/document/d/1AjbUDhfQV2TXn13RZqrmL7PfETTslzkbVZGtNl_SLcU/edit?usp=sharing
22+
23+
## Attendees
24+
25+
<!-- prettier-ignore -->
26+
| Name | GitHub | Organization | Location |
27+
| :------------------------- | :------------------- | :----------------- | :----------------------- |
28+
29+
30+
## Agenda
31+
32+
1. Agree to Membership Agreement, Participation & Contribution Guidelines and Code of Conduct (1m, Host)
33+
- [Specification Membership Agreement](https://github.com/graphql/foundation)
34+
- [Participation Guidelines](https://github.com/graphql/graphql-wg#participation-guidelines)
35+
- [Contribution Guide](https://github.com/graphql/graphql-spec/blob/main/CONTRIBUTING.md)
36+
- [Code of Conduct](https://github.com/graphql/foundation/blob/master/CODE-OF-CONDUCT.md)
37+
- Meetings are [published to YouTube](https://www.youtube.com/@GraphQLFoundation/videos) and we may use LLM/AI summary tools
38+
1. Introduction of attendees (5m, Host)
39+
1. Determine volunteers for note taking (1m, Host)
40+
1. Review agenda (2m, Host)
41+
1. Check for [ready for review agenda items](https://github.com/graphql/graphiql/issues?q=is%3Aissue+is%3Aopen+label%3A%22Ready+for+review+%F0%9F%99%8C%22+sort%3Aupdated-desc) (5m, Host)

0 commit comments

Comments
 (0)