Skip to content

Commit 7634b40

Browse files
acaogithub-actions[bot]dimaMachina
authored
Version Packages (#4051)
* Version Packages * upd --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Dimitri POSTOLOV <[email protected]>
1 parent 002f133 commit 7634b40

File tree

10 files changed

+73
-47
lines changed

10 files changed

+73
-47
lines changed

.changeset/five-ghosts-bathe.md

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

.changeset/proud-bottles-punch.md

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

.changeset/yellow-pumas-itch.md

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

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.2",
6+
"graphiql": "^5.0.3",
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.0.0",
1313
"@graphiql/plugin-explorer": "^5.0.0",
14-
"@graphiql/react": "^0.35.3",
14+
"@graphiql/react": "^0.35.4",
1515
"@graphiql/toolkit": "^0.11.3",
16-
"graphiql": "^5.0.2",
16+
"graphiql": "^5.0.3",
1717
"graphql": "^16.9.0",
1818
"graphql-ws": "^5.5.5",
1919
"react": "^19.1.0",

packages/graphiql-react/CHANGELOG.md

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

3+
## 0.35.4
4+
5+
### Patch Changes
6+
7+
- [#4052](https://github.com/graphql/graphiql/pull/4052) [`9b54581`](https://github.com/graphql/graphiql/commit/9b54581e74a7e6c6354a810c2288869fb85f24eb) Thanks [@dimaMachina](https://github.com/dimaMachina)! - fix multiple GraphiQL instances, suffix a unique id for operation, request headers, variables and response URI.
8+
9+
E.g., the first GraphiQL instance will have:
10+
11+
- `1-operation.graphql`
12+
- `1-request-headers.json`
13+
- `1-variables.json`
14+
- `1-response.json`
15+
16+
The 2nd instance will have:
17+
18+
- `2-operation.graphql`
19+
- `2-request-headers.json`
20+
- `2-variables.json`
21+
- `2-response.json`
22+
23+
etc.
24+
25+
- [#4049](https://github.com/graphql/graphiql/pull/4049) [`2c0586d`](https://github.com/graphql/graphiql/commit/2c0586d1f3db8fe8dc604032010cc9840d10b72d) Thanks [@dimaMachina](https://github.com/dimaMachina)! - - use `allowTrailingComma` option in jsonc parser to make `tryParseJsonObject` sync
26+
27+
- parse introspection headers with jsonc parser
28+
- use prettier format for operation editor since we already use prettier for jsonc editors
29+
30+
- [#4050](https://github.com/graphql/graphiql/pull/4050) [`002f133`](https://github.com/graphql/graphiql/commit/002f1336db4bdafa01cff1964a1b56ba858699eb) Thanks [@dimaMachina](https://github.com/dimaMachina)! - fix can't access property "jsonDefaults"
31+
332
## 0.35.3
433

534
### Patch Changes

packages/graphiql-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/react",
3-
"version": "0.35.3",
3+
"version": "0.35.4",
44
"sideEffects": [
55
"dist/monaco-editor.js",
66
"dist/setup-workers/webpack.js",

packages/graphiql/CHANGELOG.md

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

3+
## 5.0.3
4+
5+
### Patch Changes
6+
7+
- [#4052](https://github.com/graphql/graphiql/pull/4052) [`9b54581`](https://github.com/graphql/graphiql/commit/9b54581e74a7e6c6354a810c2288869fb85f24eb) Thanks [@dimaMachina](https://github.com/dimaMachina)! - fix multiple GraphiQL instances, suffix a unique id for operation, request headers, variables and response URI.
8+
9+
E.g., the first GraphiQL instance will have:
10+
11+
- `1-operation.graphql`
12+
- `1-request-headers.json`
13+
- `1-variables.json`
14+
- `1-response.json`
15+
16+
The 2nd instance will have:
17+
18+
- `2-operation.graphql`
19+
- `2-request-headers.json`
20+
- `2-variables.json`
21+
- `2-response.json`
22+
23+
etc.
24+
25+
- [#4049](https://github.com/graphql/graphiql/pull/4049) [`2c0586d`](https://github.com/graphql/graphiql/commit/2c0586d1f3db8fe8dc604032010cc9840d10b72d) Thanks [@dimaMachina](https://github.com/dimaMachina)! - - use `allowTrailingComma` option in jsonc parser to make `tryParseJsonObject` sync
26+
27+
- parse introspection headers with jsonc parser
28+
- use prettier format for operation editor since we already use prettier for jsonc editors
29+
30+
- [#4050](https://github.com/graphql/graphiql/pull/4050) [`002f133`](https://github.com/graphql/graphiql/commit/002f1336db4bdafa01cff1964a1b56ba858699eb) Thanks [@dimaMachina](https://github.com/dimaMachina)! - fix can't access property "jsonDefaults"
31+
32+
- Updated dependencies [[`9b54581`](https://github.com/graphql/graphiql/commit/9b54581e74a7e6c6354a810c2288869fb85f24eb), [`2c0586d`](https://github.com/graphql/graphiql/commit/2c0586d1f3db8fe8dc604032010cc9840d10b72d), [`002f133`](https://github.com/graphql/graphiql/commit/002f1336db4bdafa01cff1964a1b56ba858699eb)]:
33+
- @graphiql/react@0.35.4
34+
335
## 5.0.2
436

537
### Patch 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.0.2",
3+
"version": "5.0.3",
44
"sideEffects": [
55
"dist/setup-workers/webpack.js",
66
"dist/setup-workers/vite.js"
@@ -52,7 +52,7 @@
5252
"dependencies": {
5353
"@graphiql/plugin-doc-explorer": "^0.3.0",
5454
"@graphiql/plugin-history": "^0.3.0",
55-
"@graphiql/react": "^0.35.3",
55+
"@graphiql/react": "^0.35.4",
5656
"react-compiler-runtime": "19.1.0-rc.1"
5757
},
5858
"peerDependencies": {

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3299,7 +3299,7 @@ __metadata:
32993299
languageName: unknown
33003300
linkType: soft
33013301

3302-
"@graphiql/react@npm:^0.35.0, @graphiql/react@npm:^0.35.3, @graphiql/react@workspace:packages/graphiql-react":
3302+
"@graphiql/react@npm:^0.35.0, @graphiql/react@npm:^0.35.4, @graphiql/react@workspace:packages/graphiql-react":
33033303
version: 0.0.0-use.local
33043304
resolution: "@graphiql/react@workspace:packages/graphiql-react"
33053305
dependencies:
@@ -12606,7 +12606,7 @@ __metadata:
1260612606
resolution: "example-graphiql-vite@workspace:examples/graphiql-vite"
1260712607
dependencies:
1260812608
"@vitejs/plugin-react": "npm:^4.4.1"
12609-
graphiql: "npm:^5.0.2"
12609+
graphiql: "npm:^5.0.3"
1261012610
graphql: "npm:^16.11.0"
1261112611
react: "npm:^19.1.0"
1261212612
react-dom: "npm:^19.1.0"
@@ -12625,15 +12625,15 @@ __metadata:
1262512625
"@babel/preset-react": "npm:^7.18.6"
1262612626
"@graphiql/plugin-code-exporter": "npm:^5.0.0"
1262712627
"@graphiql/plugin-explorer": "npm:^5.0.0"
12628-
"@graphiql/react": "npm:^0.35.3"
12628+
"@graphiql/react": "npm:^0.35.4"
1262912629
"@graphiql/toolkit": "npm:^0.11.3"
1263012630
ajv-formats: "npm:^3.0.1"
1263112631
babel-loader: "npm:^9.1.2"
1263212632
copy-webpack-plugin: "npm:11.0.0"
1263312633
cross-env: "npm:^7.0.2"
1263412634
css-loader: "npm:^6.7.3"
1263512635
file-loader: "npm:^6.2.0"
12636-
graphiql: "npm:^5.0.2"
12636+
graphiql: "npm:^5.0.3"
1263712637
graphql: "npm:^16.9.0"
1263812638
graphql-ws: "npm:^5.5.5"
1263912639
html-webpack-plugin: "npm:^5.5.0"
@@ -14350,13 +14350,13 @@ __metadata:
1435014350
languageName: unknown
1435114351
linkType: soft
1435214352

14353-
"graphiql@npm:^5.0.2, graphiql@workspace:packages/graphiql":
14353+
"graphiql@npm:^5.0.3, graphiql@workspace:packages/graphiql":
1435414354
version: 0.0.0-use.local
1435514355
resolution: "graphiql@workspace:packages/graphiql"
1435614356
dependencies:
1435714357
"@graphiql/plugin-doc-explorer": "npm:^0.3.0"
1435814358
"@graphiql/plugin-history": "npm:^0.3.0"
14359-
"@graphiql/react": "npm:^0.35.3"
14359+
"@graphiql/react": "npm:^0.35.4"
1436014360
"@graphiql/toolkit": "npm:^0.11.3"
1436114361
"@testing-library/dom": "npm:^10.4.0"
1436214362
"@testing-library/jest-dom": "npm:^6.6.3"

0 commit comments

Comments
 (0)