Skip to content

Commit cd4d15c

Browse files
committed
Updated changelog for the 2.2.0 release
1 parent 5bf0817 commit cd4d15c

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.2.0 (2019-06-16)
2+
3+
Changes:
4+
- Added Code Style settings page to control indentation (#258, #92)
5+
16
## 2.1.1 (2019-06-12)
27

38
Changes:

build.gradle

Lines changed: 6 additions & 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.1'
17+
version '2.2.0'
1818

1919
apply plugin: 'java'
2020

@@ -50,6 +50,11 @@ runIde {
5050
jvmArgs '-Xmx2G'
5151
}
5252

53+
buildSearchableOptions {
54+
// workaround for https://youtrack.jetbrains.com/issue/JBR-1550
55+
jbrVersion = '11_0_2b159'
56+
}
57+
5358
patchPluginXml {
5459

5560
}

js-graphql-intellij-plugin.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.id="js-graphql-intellij-plugin" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="com.intellij.lang.jsgraphql" external.system.module.version="2.1.0" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.id="js-graphql-intellij-plugin" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="com.intellij.lang.jsgraphql" external.system.module.version="2.2.0" type="JAVA_MODULE" version="4">
33
<component name="NewModuleRootManager" inherit-compiler-output="true">
44
<exclude-output />
55
<content url="file://$MODULE_DIR$">

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.1</version>
13+
<version>2.2.0</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.2.0: Added Code Style settings page to control indentation</li>
2930
<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>
3031
<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>
3132
<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>

0 commit comments

Comments
 (0)