Skip to content

Commit

Permalink
Updated changelog and plugin.xml for the 2.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmeyer-els committed Jun 12, 2019
1 parent 330f0e0 commit ba18e9a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 2.1.1 (2019-06-12)

Changes:
- Fixed: Enum value of TRUE breaks schema (#244)
- Add support for generics in TypeScript GraphQL tagged template literals (#200)
- Store caret position for contextual queries when it changes to avoid using the Editor UI from non-UI thread in query context highlighter (#256)
- Recognize JSON files with top-level __schema field as GraphQL introspection result in GraphQLIdentifierIndex (#242)
- Compatibility fixes for 2019.2 EAP (#256, #259)

## 2.1.0 (2019-04-14)

Changes:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
}

group 'com.intellij.lang.jsgraphql'
version '2.1.0'
version '2.1.1'

apply plugin: 'java'

Expand Down
3 changes: 2 additions & 1 deletion resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<idea-plugin>
<id>com.intellij.lang.jsgraphql</id>
<name>JS GraphQL</name>
<version>2.1.0</version>
<version>2.1.1</version>
<vendor>Jim Kynde Meyer - [email protected]</vendor>

<description><![CDATA[
Expand All @@ -26,6 +26,7 @@

<change-notes><![CDATA[
<ul>
<li>2.1.1: Fixed enum value of true breaks schema. Added support for generics in TypeScript GraphQL tagged template literals. Recognize JSON files with top-level __schema field as GraphQL introspection result in GraphQLIdentifierIndex. Compatibility fixes for 2019.2 EAP.</li>
<li>2.1.0: Upgraded to graphql-java 12.0 to improve performance in very large schemas. Reintroduced contextual queries and automatically include referenced fragments across files. Detect manual injections using language=GraphQL comment to discover schema types and fragments. Don't clear the variables editor when the variables window is closed.</li>
<li>2.0.0: Support for the June 2018 GraphQL specification including SDL. Support for multiple schemas using graphql-config. Replaced Node.js based language service with native parser, lexer, and graphql-java to be compatible with all IDEs based on the IntelliJ Platform.</li>
<li>2.0.0-beta-2: Switched to SVG-based icons and added plugin icon. Updated document provider to use new style. Moved schema discovery in Schemas panel off the UI thread. Introduced dedicated GraphQL index to improve performance. Fixed various minor issues: Type scopes in arrays, custom scalars omitted by graphql-java, memory leak in query editor.</li>
Expand Down

0 comments on commit ba18e9a

Please sign in to comment.