diff --git a/.changeset/nine-elephants-retire.md b/.changeset/nine-elephants-retire.md deleted file mode 100644 index cca48d20cee..00000000000 --- a/.changeset/nine-elephants-retire.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphiql/react': minor ---- - -Allow passing introspection data to the `schema` prop of the `SchemaContextProvider` component diff --git a/.changeset/nine-eyes-relax.md b/.changeset/nine-eyes-relax.md deleted file mode 100644 index 5725859db2b..00000000000 --- a/.changeset/nine-eyes-relax.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'graphiql': minor ---- - -Allow passing introspection data to the `schema` prop of the `GraphiQL` component diff --git a/.changeset/serious-ties-compete.md b/.changeset/serious-ties-compete.md deleted file mode 100644 index 9103e55d775..00000000000 --- a/.changeset/serious-ties-compete.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphiql/react': patch ---- - -Set the schema correctly after refetching introspection (e.g. when the `fetcher` prop changes) diff --git a/examples/graphiql-webpack/package.json b/examples/graphiql-webpack/package.json index 41a78bf27a7..27d3d6d739d 100644 --- a/examples/graphiql-webpack/package.json +++ b/examples/graphiql-webpack/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@graphiql/toolkit": "^0.6.0", - "graphiql": "^1.9.13", + "graphiql": "^1.10.0", "graphql": "^16.4.0", "graphql-ws": "^5.5.5", "react": "^17.0.2" diff --git a/packages/graphiql-react/CHANGELOG.md b/packages/graphiql-react/CHANGELOG.md index 5fc56f3e83e..c14393c8784 100644 --- a/packages/graphiql-react/CHANGELOG.md +++ b/packages/graphiql-react/CHANGELOG.md @@ -1,5 +1,15 @@ # @graphiql/react +## 0.6.0 + +### Minor Changes + +- [#2574](https://github.com/graphql/graphiql/pull/2574) [`0c98fa59`](https://github.com/graphql/graphiql/commit/0c98fa5924eadaee33713ccd8a9be6419d50cab1) Thanks [@thomasheyenbrock](https://github.com/thomasheyenbrock)! - Allow passing introspection data to the `schema` prop of the `SchemaContextProvider` component + +### Patch Changes + +- [#2574](https://github.com/graphql/graphiql/pull/2574) [`0c98fa59`](https://github.com/graphql/graphiql/commit/0c98fa5924eadaee33713ccd8a9be6419d50cab1) Thanks [@thomasheyenbrock](https://github.com/thomasheyenbrock)! - Set the schema correctly after refetching introspection (e.g. when the `fetcher` prop changes) + ## 0.5.2 ### Patch Changes diff --git a/packages/graphiql-react/package.json b/packages/graphiql-react/package.json index acbf4d4adb7..802fb3f0df1 100644 --- a/packages/graphiql-react/package.json +++ b/packages/graphiql-react/package.json @@ -1,6 +1,6 @@ { "name": "@graphiql/react", - "version": "0.5.2", + "version": "0.6.0", "repository": { "type": "git", "url": "https://github.com/graphql/graphiql", diff --git a/packages/graphiql/CHANGELOG.md b/packages/graphiql/CHANGELOG.md index b7fd4a97485..638400609ad 100644 --- a/packages/graphiql/CHANGELOG.md +++ b/packages/graphiql/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## 1.10.0 + +### Minor Changes + +- [#2574](https://github.com/graphql/graphiql/pull/2574) [`0c98fa59`](https://github.com/graphql/graphiql/commit/0c98fa5924eadaee33713ccd8a9be6419d50cab1) Thanks [@thomasheyenbrock](https://github.com/thomasheyenbrock)! - Allow passing introspection data to the `schema` prop of the `GraphiQL` component + +### Patch Changes + +- Updated dependencies [[`0c98fa59`](https://github.com/graphql/graphiql/commit/0c98fa5924eadaee33713ccd8a9be6419d50cab1), [`0c98fa59`](https://github.com/graphql/graphiql/commit/0c98fa5924eadaee33713ccd8a9be6419d50cab1)]: + - @graphiql/react@0.6.0 + ## 1.9.13 ### Patch Changes diff --git a/packages/graphiql/package.json b/packages/graphiql/package.json index 2f65b57d448..c29126f683f 100644 --- a/packages/graphiql/package.json +++ b/packages/graphiql/package.json @@ -1,6 +1,6 @@ { "name": "graphiql", - "version": "1.9.13", + "version": "1.10.0", "description": "An graphical interactive in-browser GraphQL IDE.", "contributors": [ "Hyohyeon Jeong ", @@ -50,7 +50,7 @@ "webpack": "webpack --config resources/webpack.config.js" }, "dependencies": { - "@graphiql/react": "^0.5.2", + "@graphiql/react": "^0.6.0", "@graphiql/toolkit": "^0.6.0", "entities": "^2.0.0", "graphql-language-service": "^5.0.6",