Skip to content

Commit 595525c

Browse files
github-actions[bot]acao
authored andcommitted
Version Packages
1 parent 59a898c commit 595525c

File tree

11 files changed

+46
-30
lines changed

11 files changed

+46
-30
lines changed

.changeset/pink-mails-occur.md

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

.changeset/proud-ads-hope.md

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

examples/graphiql-webpack/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"start": "NODE_ENV=development webpack-dev-server"
1010
},
1111
"dependencies": {
12-
"@graphiql/plugin-code-exporter": "^0.3.0",
13-
"@graphiql/plugin-explorer": "^0.3.0",
12+
"@graphiql/plugin-code-exporter": "^1.0.0",
13+
"@graphiql/plugin-explorer": "^1.0.0",
1414
"@graphiql/toolkit": "^0.8.4",
15-
"graphiql": "^3.0.0",
15+
"graphiql": "^3.0.1",
1616
"graphql": "^16.4.0",
1717
"graphql-ws": "^5.5.5",
1818
"react": "^18.2.0",

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

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

3+
## 1.0.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9a38de29`](https://github.com/graphql/graphiql/commit/9a38de29fddf174ba9e793ac5852407537244f87)]:
8+
- @graphiql/react@0.19.0
9+
310
## 0.3.0
411

512
### Minor Changes

packages/graphiql-plugin-code-exporter/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/plugin-code-exporter",
3-
"version": "0.3.0",
3+
"version": "1.0.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/graphql/graphiql",
@@ -35,10 +35,10 @@
3535
"graphql": "^15.5.0 || ^16.0.0",
3636
"react": "^16.8.0 || ^17 || ^18",
3737
"react-dom": "^16.8.0 || ^17 || ^18",
38-
"@graphiql/react": "^0.18.0"
38+
"@graphiql/react": "^0.19.0"
3939
},
4040
"devDependencies": {
41-
"@graphiql/react": "^0.18.0",
41+
"@graphiql/react": "^0.19.0",
4242
"@vitejs/plugin-react": "^4.0.1",
4343
"postcss-nesting": "^10.1.7",
4444
"typescript": "^4.6.3",

packages/graphiql-plugin-explorer/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @graphiql/plugin-explorer
22

3+
## 1.0.0
4+
5+
### Patch Changes
6+
7+
- [#3340](https://github.com/graphql/graphiql/pull/3340) [`59a898c0`](https://github.com/graphql/graphiql/commit/59a898c0ac5c7c78a4b81bb5d520bf18e10c880a) Thanks [@acao](https://github.com/acao)! - handle null editor in explorer plugin
8+
9+
- Updated dependencies [[`9a38de29`](https://github.com/graphql/graphiql/commit/9a38de29fddf174ba9e793ac5852407537244f87)]:
10+
- @graphiql/react@0.19.0
11+
312
## 0.3.0
413

514
### Minor Changes

packages/graphiql-plugin-explorer/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphiql/plugin-explorer",
3-
"version": "0.3.0",
3+
"version": "1.0.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/graphql/graphiql",
@@ -34,10 +34,10 @@
3434
"graphql": "^15.5.0 || ^16.0.0",
3535
"react": "^16.8.0 || ^17 || ^18",
3636
"react-dom": "^16.8.0 || ^17 || ^18",
37-
"@graphiql/react": "^0.18.0"
37+
"@graphiql/react": "^0.19.0"
3838
},
3939
"devDependencies": {
40-
"@graphiql/react": "^0.18.0",
40+
"@graphiql/react": "^0.19.0",
4141
"@vitejs/plugin-react": "^4.0.1",
4242
"typescript": "^4.6.3",
4343
"vite": "^4.3.9"

packages/graphiql-react/CHANGELOG.md

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

3+
## 0.19.0
4+
5+
### Minor Changes
6+
7+
- [#3130](https://github.com/graphql/graphiql/pull/3130) [`9a38de29`](https://github.com/graphql/graphiql/commit/9a38de29fddf174ba9e793ac5852407537244f87) Thanks [@lesleydreyer](https://github.com/lesleydreyer)! - - Add a "clear history" button to clear all history as well as trash icons to clear individual history items
8+
9+
- Change so item is in history items or history favorites, not both
10+
- Fix history label editing so if the same item is in the list more than once it edits the correct label
11+
- Pass the entire history item in history functions (addToHistory, editLabel, toggleFavorite, etc.) so users building their own HistoryContext.Provider will get any additional props they added to the item in their customized functions
12+
- Adds a "setActive" callback users can use to customize their UI when the history item is clicked
13+
314
## 0.18.0
415

516
### Minor 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.18.0",
3+
"version": "0.19.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/graphql/graphiql",

packages/graphiql/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+
## 3.0.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9a38de29`](https://github.com/graphql/graphiql/commit/9a38de29fddf174ba9e793ac5852407537244f87)]:
8+
- @graphiql/react@0.19.0
9+
310
## 3.0.0
411

512
### Major Changes

0 commit comments

Comments
 (0)