Skip to content

Commit ba18e9a

Browse files
committed
Updated changelog and plugin.xml for the 2.1.1 release
1 parent 330f0e0 commit ba18e9a

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 2.1.1 (2019-06-12)
2+
3+
Changes:
4+
- Fixed: Enum value of TRUE breaks schema (#244)
5+
- Add support for generics in TypeScript GraphQL tagged template literals (#200)
6+
- Store caret position for contextual queries when it changes to avoid using the Editor UI from non-UI thread in query context highlighter (#256)
7+
- Recognize JSON files with top-level __schema field as GraphQL introspection result in GraphQLIdentifierIndex (#242)
8+
- Compatibility fixes for 2019.2 EAP (#256, #259)
9+
110
## 2.1.0 (2019-04-14)
211

312
Changes:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
}
1515

1616
group 'com.intellij.lang.jsgraphql'
17-
version '2.1.0'
17+
version '2.1.1'
1818

1919
apply plugin: 'java'
2020

resources/META-INF/plugin.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<idea-plugin>
1111
<id>com.intellij.lang.jsgraphql</id>
1212
<name>JS GraphQL</name>
13-
<version>2.1.0</version>
13+
<version>2.1.1</version>
1414
<vendor>Jim Kynde Meyer - [email protected]</vendor>
1515

1616
<description><![CDATA[
@@ -26,6 +26,7 @@
2626

2727
<change-notes><![CDATA[
2828
<ul>
29+
<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>
2930
<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>
3031
<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>
3132
<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>

0 commit comments

Comments
 (0)