Skip to content

Commit 31006df

Browse files
committed
Bump platform version to 2016.3 and build number to 163
1 parent 8abfbc2 commit 31006df

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version=2.1.3-SNAPSHOT
22

33
# Intellij SDK
4-
intellijSdkVersion=2016.2
4+
intellijSdkVersion=2016.3
55

66
# Versions
77
versionJunit=4.12

graph-database-support-plugin/src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
]]></change-notes>
5959

6060
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
61-
<idea-version since-build="145"/>
61+
<idea-version since-build="163"/>
6262

6363
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
6464
on how to target different products -->
Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
updater.title=Graph Database Support plugin updated to v{0}
22
updater.notification=<br/>\
33
<b>Improvements:</b><br/>\
4-
- Data source metadata are now loaded on IDE startup.<br>\
4+
- Neo4j 3.1 support added (new parameter syntax, user functions, map projections, pattern comprehension)<br/>\
5+
- Cypher syntax highlight improved<br/>\
6+
- Provide documentation for Cypher built-in functions, stored procedures and user functions<br/>\
7+
- Show arguments and return type in autocompletion for functions and procedures<br/>\
58
<br/>\
69
<b>Bugfixes:</b><br/>\
7-
- No more exceptions on trying to execute query from a file.<br/>\
8-
- Delete data source query editor, when removing data source.<br/>\
10+
- Using keywords as variable name in Cypher query will not break parsing anymore<br/>\
11+
- Fix Cypher parsing: multiline expression, filter expression<br/>\
12+
- Allow to copy values from tree nodes in entity view<br/>\
913
<br/>\
1014
<a href="https://github.com/neueda/jetbrains-plugin-graph-database-support">Github</a> | \
15+
<a href="https://github.com/neueda/jetbrains-plugin-graph-database-support/releases">Releases</a> | \
1116
<a href="https://github.com/neueda/jetbrains-plugin-graph-database-support/issues">Issues</a>

ui/jetbrains/src/main/java/com/neueda/jetbrains/plugin/graphdb/jetbrains/component/datasource/state/container/DataSourceContainerV1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
public class DataSourceContainerV1 implements DataSourceContainer {
1111

12-
private List<DataSourceApi> dataSources = new ArrayList<>();
12+
public List<DataSourceApi> dataSources = new ArrayList<>();
1313

1414
@Override
1515
public List getGenericDataSources() {

0 commit comments

Comments
 (0)