-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7915d8
commit a4515ce
Showing
35 changed files
with
216 additions
and
81 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
# cm6-graphql | ||
|
||
## 0.2.0 | ||
|
||
### Minor Changes | ||
|
||
- [#3762](https://github.com/graphql/graphiql/pull/3762) [`76b3cc8`](https://github.com/graphql/graphiql/commit/76b3cc872dedd667504f58c9313a86bada7688d6) Thanks [@mavenskylab](https://github.com/mavenskylab)! - The cm6-graphql package currently specifies exact versions for its peer dependencies on @codemirror packages. This is causing conflicts when projects use newer versions of these packages, leading to multiple instances being installed. | ||
|
||
- [#3782](https://github.com/graphql/graphiql/pull/3782) [`6b88593`](https://github.com/graphql/graphiql/commit/6b88593310b863e31679c3cc1b5c6dc85f04b9a6) Thanks [@acao](https://github.com/acao)! - officially deprecate graphql@15 support, as our types and other runtime capabilities ceased to be compatible in 2022 or 2023, but the regression tests were disabled | ||
`graphql-language-service` is where the bug is, which is used by all of the libraries and applications in `graphiql` monorepo. | ||
|
||
### Patch Changes | ||
|
||
- [#3773](https://github.com/graphql/graphiql/pull/3773) [`31edfab`](https://github.com/graphql/graphiql/commit/31edfab441304d8eb3358acebc475c51e5646e8b) Thanks [@yaacovCR](https://github.com/yaacovCR)! - use latest stable version of graphql 16.9.0 | ||
|
||
- Updated dependencies [[`6b88593`](https://github.com/graphql/graphiql/commit/6b88593310b863e31679c3cc1b5c6dc85f04b9a6), [`31edfab`](https://github.com/graphql/graphiql/commit/31edfab441304d8eb3358acebc475c51e5646e8b)]: | ||
- [email protected] | ||
|
||
## 0.1.1 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
# Change Log | ||
|
||
## 2.2.0 | ||
|
||
### Minor Changes | ||
|
||
- [#3782](https://github.com/graphql/graphiql/pull/3782) [`6b88593`](https://github.com/graphql/graphiql/commit/6b88593310b863e31679c3cc1b5c6dc85f04b9a6) Thanks [@acao](https://github.com/acao)! - officially deprecate graphql@15 support, as our types and other runtime capabilities ceased to be compatible in 2022 or 2023, but the regression tests were disabled | ||
`graphql-language-service` is where the bug is, which is used by all of the libraries and applications in `graphiql` monorepo. | ||
|
||
### Patch Changes | ||
|
||
- [#3773](https://github.com/graphql/graphiql/pull/3773) [`31edfab`](https://github.com/graphql/graphiql/commit/31edfab441304d8eb3358acebc475c51e5646e8b) Thanks [@yaacovCR](https://github.com/yaacovCR)! - use latest stable version of graphql 16.9.0 | ||
|
||
- Updated dependencies [[`6b88593`](https://github.com/graphql/graphiql/commit/6b88593310b863e31679c3cc1b5c6dc85f04b9a6), [`31edfab`](https://github.com/graphql/graphiql/commit/31edfab441304d8eb3358acebc475c51e5646e8b)]: | ||
- [email protected] | ||
|
||
## 2.1.1 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "codemirror-graphql", | ||
"version": "2.1.1", | ||
"version": "2.2.0", | ||
"description": "GraphQL mode and helpers for CodeMirror.", | ||
"contributors": [ | ||
"Hyohyeon Jeong <[email protected]>", | ||
|
@@ -45,7 +45,7 @@ | |
"// TEMPORARILY PINNED until we fix graphql 15 support": "", | ||
"dependencies": { | ||
"@types/codemirror": "^0.0.90", | ||
"graphql-language-service": "5.3.0" | ||
"graphql-language-service": "5.4.0" | ||
}, | ||
"devDependencies": { | ||
"@codemirror/language": "^6.0.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
# @graphiql/react | ||
|
||
## 0.27.0 | ||
|
||
### Minor Changes | ||
|
||
- [#3782](https://github.com/graphql/graphiql/pull/3782) [`6b88593`](https://github.com/graphql/graphiql/commit/6b88593310b863e31679c3cc1b5c6dc85f04b9a6) Thanks [@acao](https://github.com/acao)! - officially deprecate graphql@15 support, as our types and other runtime capabilities ceased to be compatible in 2022 or 2023, but the regression tests were disabled | ||
`graphql-language-service` is where the bug is, which is used by all of the libraries and applications in `graphiql` monorepo. | ||
|
||
### Patch Changes | ||
|
||
- [#3773](https://github.com/graphql/graphiql/pull/3773) [`31edfab`](https://github.com/graphql/graphiql/commit/31edfab441304d8eb3358acebc475c51e5646e8b) Thanks [@yaacovCR](https://github.com/yaacovCR)! - use latest stable version of graphql 16.9.0 | ||
|
||
- Updated dependencies [[`6b88593`](https://github.com/graphql/graphiql/commit/6b88593310b863e31679c3cc1b5c6dc85f04b9a6), [`31edfab`](https://github.com/graphql/graphiql/commit/31edfab441304d8eb3358acebc475c51e5646e8b)]: | ||
- [email protected] | ||
- [email protected] | ||
- @graphiql/toolkit@0.12.0 | ||
|
||
## 0.26.2 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@graphiql/toolkit", | ||
"version": "0.11.0", | ||
"version": "0.12.0", | ||
"description": "Utility to build a fetcher for GraphiQL", | ||
"contributors": [ | ||
"Rikki Schulte <[email protected]> (https://rikki.dev)" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "graphiql", | ||
"version": "3.7.1", | ||
"version": "3.8.0", | ||
"description": "An graphical interactive in-browser GraphQL IDE.", | ||
"contributors": [ | ||
"Hyohyeon Jeong <[email protected]>", | ||
|
@@ -47,15 +47,15 @@ | |
"webpack": "webpack-cli --config resources/webpack.config.js" | ||
}, | ||
"dependencies": { | ||
"@graphiql/react": "^0.26.2" | ||
"@graphiql/react": "^0.27.0" | ||
}, | ||
"peerDependencies": { | ||
"graphql": "^16.0.0", | ||
"react": "^16.8.0 || ^17 || ^18", | ||
"react-dom": "^16.8.0 || ^17 || ^18" | ||
}, | ||
"devDependencies": { | ||
"@graphiql/toolkit": "^0.11.0", | ||
"@graphiql/toolkit": "^0.12.0", | ||
"@testing-library/jest-dom": "5.16.5", | ||
"@testing-library/react": "14.0.0", | ||
"@types/testing-library__jest-dom": "5.14.5", | ||
|
Oops, something went wrong.