diff --git a/CHANGELOG.md b/CHANGELOG.md index ceb346d8..b469bb40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.0] + +### Added +- Support for IntelliJ 2023.3 + ## [0.6.2] ### Added diff --git a/gradle.properties b/gradle.properties index 6527d6f8..39dd792a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ -version=0.7.0 +version=0.8.0 # Intellij SDK -intellijSdkVersion=2023.2 +intellijSdkVersion=2023.3 # Versions versionGradleIntelliJ=1.15.0 diff --git a/graph-database-plugin/build.gradle b/graph-database-plugin/build.gradle index a3e49f6e..16fd6b9f 100644 --- a/graph-database-plugin/build.gradle +++ b/graph-database-plugin/build.gradle @@ -35,7 +35,8 @@ intellij { // See https://plugins.jetbrains.com/docs/intellij/configuring-plugin-project.html#patching-the-plugin-configuration-file patchPluginXml { sinceBuild = "223.0" - untilBuild = "232.*" + //untilBuild = "233.*" + untilBuild = "999.0" def allChanges = { changelog.getAll().values() diff --git a/platform/src/main/resources/graphdb/messages/GraphBundle.properties b/platform/src/main/resources/graphdb/messages/GraphBundle.properties index 8b9f8e0a..c88fffc5 100644 --- a/platform/src/main/resources/graphdb/messages/GraphBundle.properties +++ b/platform/src/main/resources/graphdb/messages/GraphBundle.properties @@ -1,3 +1,3 @@ updater.title=Graph Database plugin updated to v{0} updater.notification=\ - Support IntelliJ 2023.2 + Support IntelliJ 2023.3 diff --git a/ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/ui/console/log/LogPanel.java b/ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/ui/console/log/LogPanel.java index e5bfe698..b3e9498e 100644 --- a/ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/ui/console/log/LogPanel.java +++ b/ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/ui/console/log/LogPanel.java @@ -34,8 +34,8 @@ import java.awt.*; import java.util.Map; -import static org.apache.commons.lang.exception.ExceptionUtils.getCause; -import static org.apache.commons.lang.exception.ExceptionUtils.getStackTrace; +import static org.codehaus.plexus.util.ExceptionUtils.getCause; +import static org.codehaus.plexus.util.ExceptionUtils.getStackTrace; public class LogPanel implements Disposable { private static final String SHOW_DETAILS = "Details..."; diff --git a/ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/ui/datasource/interactions/DataSourceDialog.java b/ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/ui/datasource/interactions/DataSourceDialog.java index 18319a82..b0dc65d3 100644 --- a/ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/ui/datasource/interactions/DataSourceDialog.java +++ b/ui/jetbrains/src/main/java/com/albertoventurini/graphdbplugin/jetbrains/ui/datasource/interactions/DataSourceDialog.java @@ -29,7 +29,7 @@ import java.awt.*; import java.util.Optional; -import static org.apache.commons.lang.exception.ExceptionUtils.getCause; +import static org.codehaus.plexus.util.ExceptionUtils.getCause; public abstract class DataSourceDialog extends DialogWrapper { public static final int THICKNESS = 10;