Skip to content

Commit 536b4a6

Browse files
Support IntelliJ 2023.2 (#77)
* Depend on instrumentedJar * Add support for IntelliJ 2023.2
1 parent 34f6f44 commit 536b4a6

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.2]
9+
10+
### Added
11+
- Support for IntelliJ 2023.2
12+
813
## [0.6.1]
914

1015
### Added

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
version=0.6.1
1+
version=0.6.2
22

33
# Intellij SDK
4-
intellijSdkVersion=2023.1
4+
intellijSdkVersion=2023.2
55

66
# Versions
7-
versionGradleIntelliJ=1.13.0
7+
versionGradleIntelliJ=1.13.3
88
versionGradleChangelog=2.0.0
99
versionGradleGrammarKit=2021.2.2
1010
versionJunit=4.12
@@ -13,7 +13,7 @@ versionMockito=2.27.0
1313
versionPrefuse=1.0.0
1414
versionJacksonMapper=2.9.8
1515
# Official compatibility table https://neo4j.com/developer/kb/neo4j-supported-versions/
16-
versionNeo4jJavaBoltDriver=5.2.0
16+
versionNeo4jJavaBoltDriver=5.10.0
1717
versionTestcontainers=1.17.6
1818

1919
# Performance

graph-database-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ intellij {
3535
// See https://plugins.jetbrains.com/docs/intellij/configuring-plugin-project.html#patching-the-plugin-configuration-file
3636
patchPluginXml {
3737
sinceBuild = "223.0"
38-
untilBuild = "231.*"
38+
untilBuild = "232.*"
3939

4040
def allChanges = {
4141
changelog.getAll().values()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
updater.title=Graph Database plugin updated to v{0}
22
updater.notification=\
3-
Support IntelliJ 2023.1
3+
Support IntelliJ 2023.2

ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/ui/console/params/ParametersPanel.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ private void initializeUi() {
9292
// If file opened, fileOpenedSync->selectionChanged->fileOpened are called
9393
@Override
9494
public void selectionChanged(@NotNull FileEditorManagerEvent event) {
95-
releaseFileSpecificEditor(event.getOldFile());
95+
if (event.getOldFile() != null) {
96+
releaseFileSpecificEditor(event.getOldFile());
97+
}
9698
VirtualFile newFile = event.getNewFile();
9799
if (newFile != null && FileTypeExtensionUtil.isCypherFileTypeExtension(newFile.getExtension()) &&
98100
project.getService(DataSourcesComponent.class).getDataSourceContainer().isDataSourceExists(getTabTitle(newFile))) {

0 commit comments

Comments
 (0)