diff --git a/packages/codemirror-graphql/CHANGELOG.md b/packages/codemirror-graphql/CHANGELOG.md index c308cd67898..542a6e95ff9 100644 --- a/packages/codemirror-graphql/CHANGELOG.md +++ b/packages/codemirror-graphql/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 0.11.0 (2019-10-04) + + +### Features + +* convert LSP from flow to typescript ([#957](https://github.com/graphql/graphiql/issues/957)) [@acao](https://github.com/acao) @Neitch [@benjie](https://github.com/benjie) ([36ed669](https://github.com/graphql/graphiql/commit/36ed669)) + + + + + # 0.10.0 (2019-10-04) diff --git a/packages/codemirror-graphql/package.json b/packages/codemirror-graphql/package.json index f1f7654bfc9..cbe3cf13e6b 100644 --- a/packages/codemirror-graphql/package.json +++ b/packages/codemirror-graphql/package.json @@ -1,6 +1,6 @@ { "name": "codemirror-graphql", - "version": "0.10.0", + "version": "0.11.0", "description": "GraphQL mode and helpers for CodeMirror.", "contributors": [ "Hyohyeon Jeong ", diff --git a/packages/graphiql-examples/cdn/CHANGELOG.md b/packages/graphiql-examples/cdn/CHANGELOG.md new file mode 100644 index 00000000000..3f4966b2f47 --- /dev/null +++ b/packages/graphiql-examples/cdn/CHANGELOG.md @@ -0,0 +1,24 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 0.0.4 (2019-10-04) + +**Note:** Version bump only for package graphiql-example-cdn + + + + + +## 0.0.3 (2019-10-04) + +**Note:** Version bump only for package graphiql-example-cdn + + + + + +## 0.0.2 (2019-10-04) + +**Note:** Version bump only for package graphiql-example-cdn diff --git a/packages/graphiql-examples/cdn/package.json b/packages/graphiql-examples/cdn/package.json index 29c2612a37f..a686636b7ee 100644 --- a/packages/graphiql-examples/cdn/package.json +++ b/packages/graphiql-examples/cdn/package.json @@ -1,6 +1,6 @@ { "name": "graphiql-example-cdn", - "version": "0.0.3", + "version": "0.0.4", "private": true, "license": "MIT", "description": "An example using GraphiQL", diff --git a/packages/graphiql/CHANGELOG.md b/packages/graphiql/CHANGELOG.md index b71c217f23e..2ee7259a1a2 100644 --- a/packages/graphiql/CHANGELOG.md +++ b/packages/graphiql/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 0.15.0 (2019-10-04) + + +### Bug Fixes + +* check `window` is defined before using it ([#962](https://github.com/graphql/graphiql/issues/962)) ([e4866ad](https://github.com/graphql/graphiql/commit/e4866ad)) +* **graphiql:** prettify keybinding bug for Firefox. Fixes [#905](https://github.com/graphql/graphiql/issues/905) ([fdf98ba](https://github.com/graphql/graphiql/commit/fdf98ba)) +* check `this.editor` exist before `this.editor.off` in QueryEditor ([#669](https://github.com/graphql/graphiql/issues/669)) ([ca226ee](https://github.com/graphql/graphiql/commit/ca226ee)), closes [#665](https://github.com/graphql/graphiql/issues/665) +* extraKeys bugfix window regression ([f3d0427](https://github.com/graphql/graphiql/commit/f3d0427)) +* preserve ctrl-f key for macOS ([7c381f9](https://github.com/graphql/graphiql/commit/7c381f9)) + + +### Features + +* convert LSP from flow to typescript ([#957](https://github.com/graphql/graphiql/issues/957)) [@acao](https://github.com/acao) @Neitch [@benjie](https://github.com/benjie) ([36ed669](https://github.com/graphql/graphiql/commit/36ed669)) + + + +## 0.13.2 (2019-06-21) + + + + + ## 0.14.3 (2019-09-01) diff --git a/packages/graphiql/package.json b/packages/graphiql/package.json index 202c12c46a3..c46f422e831 100644 --- a/packages/graphiql/package.json +++ b/packages/graphiql/package.json @@ -1,6 +1,6 @@ { "name": "graphiql", - "version": "0.14.3", + "version": "0.15.0", "description": "An graphical interactive in-browser GraphQL IDE.", "contributors": [ "Hyohyeon Jeong ", diff --git a/packages/graphql-language-service-interface/CHANGELOG.md b/packages/graphql-language-service-interface/CHANGELOG.md index e1f610a22ff..264b190eb54 100644 --- a/packages/graphql-language-service-interface/CHANGELOG.md +++ b/packages/graphql-language-service-interface/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 2.3.0 (2019-10-04) + + +### Features + +* convert LSP from flow to typescript ([#957](https://github.com/graphql/graphiql/issues/957)) [@acao](https://github.com/acao) @Neitch [@benjie](https://github.com/benjie) ([36ed669](https://github.com/graphql/graphiql/commit/36ed669)) + + + +## 0.0.1 (2017-03-29) + + + + + # 2.2.0 (2019-10-04) diff --git a/packages/graphql-language-service-interface/package.json b/packages/graphql-language-service-interface/package.json index 461b120348a..33cbe1cfd48 100644 --- a/packages/graphql-language-service-interface/package.json +++ b/packages/graphql-language-service-interface/package.json @@ -1,6 +1,6 @@ { "name": "graphql-language-service-interface", - "version": "2.2.0", + "version": "2.3.0", "description": "Interface to the GraphQL Language Service", "contributors": [ "Greg Hurrell (https://greg.hurrell.net/)", diff --git a/packages/graphql-language-service-parser/CHANGELOG.md b/packages/graphql-language-service-parser/CHANGELOG.md index ded066b3db7..38054fd38ea 100644 --- a/packages/graphql-language-service-parser/CHANGELOG.md +++ b/packages/graphql-language-service-parser/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 1.5.0 (2019-10-04) + + +### Features + +* convert LSP from flow to typescript ([#957](https://github.com/graphql/graphiql/issues/957)) [@acao](https://github.com/acao) @Neitch [@benjie](https://github.com/benjie) ([36ed669](https://github.com/graphql/graphiql/commit/36ed669)) + + + +## 0.0.1 (2017-03-29) + + + + + # 1.4.0 (2019-10-04) diff --git a/packages/graphql-language-service-parser/package.json b/packages/graphql-language-service-parser/package.json index db4f636dc84..5abd9efee68 100644 --- a/packages/graphql-language-service-parser/package.json +++ b/packages/graphql-language-service-parser/package.json @@ -1,6 +1,6 @@ { "name": "graphql-language-service-parser", - "version": "1.4.0", + "version": "1.5.0", "description": "An online parser for GraphQL for use in syntax-highlighters and code intelligence tools", "contributors": [ "Greg Hurrell (https://greg.hurrell.net/)", diff --git a/packages/graphql-language-service-server/CHANGELOG.md b/packages/graphql-language-service-server/CHANGELOG.md index bd03ea3f317..d16f97bf04d 100644 --- a/packages/graphql-language-service-server/CHANGELOG.md +++ b/packages/graphql-language-service-server/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 2.3.0 (2019-10-04) + + +### Features + +* convert LSP from flow to typescript ([#957](https://github.com/graphql/graphiql/issues/957)) [@acao](https://github.com/acao) @Neitch [@benjie](https://github.com/benjie) ([36ed669](https://github.com/graphql/graphiql/commit/36ed669)) + + + +## 0.0.1 (2017-03-29) + + + + + # 2.2.0 (2019-10-04) diff --git a/packages/graphql-language-service-server/package.json b/packages/graphql-language-service-server/package.json index 77918d328d0..978f3398e6a 100644 --- a/packages/graphql-language-service-server/package.json +++ b/packages/graphql-language-service-server/package.json @@ -1,6 +1,6 @@ { "name": "graphql-language-service-server", - "version": "2.2.0", + "version": "2.3.0", "description": "Server process backing the GraphQL Language Service", "contributors": [ "Greg Hurrell (https://greg.hurrell.net/)", diff --git a/packages/graphql-language-service-types/CHANGELOG.md b/packages/graphql-language-service-types/CHANGELOG.md index 0b9015f87d5..f455e903d74 100644 --- a/packages/graphql-language-service-types/CHANGELOG.md +++ b/packages/graphql-language-service-types/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 1.5.0 (2019-10-04) + + +### Features + +* convert LSP from flow to typescript ([#957](https://github.com/graphql/graphiql/issues/957)) [@acao](https://github.com/acao) @Neitch [@benjie](https://github.com/benjie) ([36ed669](https://github.com/graphql/graphiql/commit/36ed669)) + + + +## 0.0.1 (2017-03-29) + + + + + # 1.4.0 (2019-10-04) diff --git a/packages/graphql-language-service-types/package.json b/packages/graphql-language-service-types/package.json index 0e4fe387629..d217d5c33ff 100644 --- a/packages/graphql-language-service-types/package.json +++ b/packages/graphql-language-service-types/package.json @@ -1,6 +1,6 @@ { "name": "graphql-language-service-types", - "version": "1.4.0", + "version": "1.5.0", "description": "Types for building GraphQL language services for IDEs", "contributors": [ "Greg Hurrell (https://greg.hurrell.net/)", diff --git a/packages/graphql-language-service-utils/CHANGELOG.md b/packages/graphql-language-service-utils/CHANGELOG.md index 81afd2db612..9e9aa1a0566 100644 --- a/packages/graphql-language-service-utils/CHANGELOG.md +++ b/packages/graphql-language-service-utils/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 2.3.0 (2019-10-04) + + +### Features + +* convert LSP from flow to typescript ([#957](https://github.com/graphql/graphiql/issues/957)) [@acao](https://github.com/acao) @Neitch [@benjie](https://github.com/benjie) ([36ed669](https://github.com/graphql/graphiql/commit/36ed669)) + + + +## 0.0.1 (2017-03-29) + + + + + # 2.2.0 (2019-10-04) diff --git a/packages/graphql-language-service-utils/package.json b/packages/graphql-language-service-utils/package.json index ad2a10c7f47..2fb9dd068bd 100644 --- a/packages/graphql-language-service-utils/package.json +++ b/packages/graphql-language-service-utils/package.json @@ -1,6 +1,6 @@ { "name": "graphql-language-service-utils", - "version": "2.2.0", + "version": "2.3.0", "description": "Utilities to support the GraphQL Language Service", "contributors": [ "Greg Hurrell (https://greg.hurrell.net/)", diff --git a/packages/graphql-language-service/CHANGELOG.md b/packages/graphql-language-service/CHANGELOG.md index 2d62e75673c..4db9dd0cba3 100644 --- a/packages/graphql-language-service/CHANGELOG.md +++ b/packages/graphql-language-service/CHANGELOG.md @@ -3,6 +3,117 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 2.3.0 (2019-10-04) + + +### Features + +* convert LSP from flow to typescript ([#957](https://github.com/graphql/graphiql/issues/957)) [@acao](https://github.com/acao) @Neitch [@benjie](https://github.com/benjie) ([36ed669](https://github.com/graphql/graphiql/commit/36ed669)) + + + +## 2.0.1 (2019-05-14) + + + +# 2.0.0 (2018-09-18) + + + +## 1.2.2 (2018-06-11) + + + +## 1.1.2 (2018-04-19) + + + +## 1.1.1 (2018-04-18) + + + +# 1.1.0 (2018-04-09) + + + +## 1.0.18 (2018-01-04) + + + +## 1.0.16 (2017-11-21) + + + +## 1.0.15 (2017-10-02) + + + +## 0.1.14 (2017-09-29) + + + +## 0.1.13 (2017-08-24) + + + +## 0.1.12 (2017-08-21) + + + +## 0.1.11 (2017-08-20) + + + +## 0.1.10 (2017-08-19) + + + +## 0.1.9 (2017-08-18) + + + +## 0.1.8 (2017-08-18) + + + +## 0.1.7 (2017-08-16) + + + +## 0.1.6 (2017-08-15) + + + +## 0.1.5 (2017-08-14) + + + +## 0.1.5-0 (2017-08-10) + + + +## 0.1.4-0 (2017-08-10) + + + +## 0.1.3-0 (2017-08-10) + + + +## 0.1.2-0 (2017-08-10) + + + +## 0.1.1-0 (2017-08-10) + + + +# 0.1.0-0 (2017-08-10) + + + + + # 2.2.0 (2019-10-04) diff --git a/packages/graphql-language-service/package.json b/packages/graphql-language-service/package.json index 17da99f9423..e6b409b97bd 100644 --- a/packages/graphql-language-service/package.json +++ b/packages/graphql-language-service/package.json @@ -1,6 +1,6 @@ { "name": "graphql-language-service", - "version": "2.2.0", + "version": "2.3.0", "description": "An interface for building GraphQL language services for IDEs", "contributors": [ "Hyohyeon Jeong ",