Skip to content

Commit d5df91d

Browse files
committed
Updated changelog for the 2.5.0 release
1 parent ca9b670 commit d5df91d

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.5.0 (2020-05-30)
2+
Changes:
3+
- Upgraded to graphql-java 15.0 (#341)
4+
- Interfaces can implement other interfaces
5+
- Directive support on variable definitions
6+
- New specifiedBy scalar
7+
- Allow nullable arguments to be introduced on fields from interfaces when implemented in types (#338)
8+
19
## 2.4.0 (2020-03-13)
210
Changes:
311
- Allow keywords to be used as field names (#239) (#264)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group 'com.intellij.lang.jsgraphql'
8-
version '2.4.0'
8+
version '2.5.0'
99

1010
apply plugin: 'org.jetbrains.grammarkit'
1111
apply plugin: 'java'

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.4.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.5.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.4.0</version>
13+
<version>2.5.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.5.0: Upgraded to graphql-java 15.0: Interfaces can implement other interfaces. Directive support on variable definitions. New specifiedBy scalar. Allow nullable arguments to be introduced on fields from interfaces when implemented in types.</li>
2930
<li>2.4.0: Upgraded to graphql-java 14.0 to allow keywords to be used as field names</li>
3031
<li>2.3.0: Various fixes: Incompatible API changes in the upcoming IntelliJ Platform 2020.1, Nashorn deprecation warning, Go to Definition always scrolls to the top of the schema, Handle escaped backticks in gql tagged template literals, Assertion error when clicking settings tool button in injected GraphQL fragment editor window</li>
3132
<li>2.2.0: Added Code Style settings page to control indentation</li>

0 commit comments

Comments
 (0)