diff --git a/.changeset/pre.json b/.changeset/pre.json index 62a9e0b580..19072259ca 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -33,10 +33,12 @@ "orange-rivers-draw", "pink-moose-shake", "poor-ghosts-jump", + "red-papayas-fly", "rich-jobs-kick", "spotty-bulldogs-confess", "thick-adults-leave", "thirty-spoons-call", - "weak-dancers-jog" + "weak-dancers-jog", + "wicked-seas-laugh" ] } diff --git a/examples/graphiql-webpack/package.json b/examples/graphiql-webpack/package.json index bb3767363c..e05a2e5d0f 100644 --- a/examples/graphiql-webpack/package.json +++ b/examples/graphiql-webpack/package.json @@ -12,8 +12,8 @@ "@graphiql/plugin-code-exporter": "^4.0.0-alpha.0", "@graphiql/plugin-explorer": "^4.0.0-alpha.0", "@graphiql/toolkit": "^0.10.0", - "@graphiql/react": "^1.0.0-alpha.1", - "graphiql": "^4.0.0-alpha.2", + "@graphiql/react": "^1.0.0-alpha.2", + "graphiql": "^4.0.0-alpha.3", "graphql": "^16.9.0", "graphql-ws": "^5.5.5", "react": "^18.2.0", diff --git a/packages/graphiql-react/CHANGELOG.md b/packages/graphiql-react/CHANGELOG.md index 280ce16fba..a472abfed1 100644 --- a/packages/graphiql-react/CHANGELOG.md +++ b/packages/graphiql-react/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphiql/react +## 1.0.0-alpha.2 + +### Patch Changes + +- [#3720](https://github.com/graphql/graphiql/pull/3720) [`79f3abf`](https://github.com/graphql/graphiql/commit/79f3abf9b697c448442e32eb5a21b7ff720bc242) Thanks [@dimaMachina](https://github.com/dimaMachina)! - replace `overflow-y: scroll` with `overflow-y: auto` + ## 1.0.0-alpha.1 ### Minor Changes diff --git a/packages/graphiql-react/package.json b/packages/graphiql-react/package.json index 1733f83f0d..9cc2c3764b 100644 --- a/packages/graphiql-react/package.json +++ b/packages/graphiql-react/package.json @@ -1,6 +1,6 @@ { "name": "@graphiql/react", - "version": "1.0.0-alpha.1", + "version": "1.0.0-alpha.2", "repository": { "type": "git", "url": "https://github.com/graphql/graphiql", diff --git a/packages/graphiql/CHANGELOG.md b/packages/graphiql/CHANGELOG.md index 1a6d8cfe52..0722f10036 100644 --- a/packages/graphiql/CHANGELOG.md +++ b/packages/graphiql/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## 4.0.0-alpha.3 + +### Patch Changes + +- [#3720](https://github.com/graphql/graphiql/pull/3720) [`79f3abf`](https://github.com/graphql/graphiql/commit/79f3abf9b697c448442e32eb5a21b7ff720bc242) Thanks [@dimaMachina](https://github.com/dimaMachina)! - replace `overflow-y: scroll` with `overflow-y: auto` + +- [#3720](https://github.com/graphql/graphiql/pull/3720) [`79f3abf`](https://github.com/graphql/graphiql/commit/79f3abf9b697c448442e32eb5a21b7ff720bc242) Thanks [@dimaMachina](https://github.com/dimaMachina)! - replace `Tooltip`s in tabs with html `title="..."` attribute + +- Updated dependencies [[`79f3abf`](https://github.com/graphql/graphiql/commit/79f3abf9b697c448442e32eb5a21b7ff720bc242)]: + - @graphiql/react@1.0.0-alpha.2 + ## 4.0.0-alpha.2 ### Patch Changes diff --git a/packages/graphiql/package.json b/packages/graphiql/package.json index ecee724261..a38ed80f8c 100644 --- a/packages/graphiql/package.json +++ b/packages/graphiql/package.json @@ -1,6 +1,6 @@ { "name": "graphiql", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "description": "An graphical interactive in-browser GraphQL IDE.", "contributors": [ "Hyohyeon Jeong ", @@ -41,7 +41,7 @@ "e2e-server": "start-server-and-test 'cross-env PORT=8080 node test/e2e-server' 'http-get://localhost:8080/graphql?query={test { id }}'" }, "dependencies": { - "@graphiql/react": "^1.0.0-alpha.1" + "@graphiql/react": "^1.0.0-alpha.2" }, "peerDependencies": { "graphql": "^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2",