From 9cc05052c0459ddb3e6e9d8a14262291dd671edb Mon Sep 17 00:00:00 2001 From: WarningImHack3r <43064022+WarningImHack3r@users.noreply.github.com> Date: Fri, 13 Sep 2024 23:47:34 +0200 Subject: [PATCH] 3.0.2 - Fix JSON module breaking compatibility with 2024.3 EAP (fixes #126) - Update Gradle --- CHANGELOG.md | 4 +++ gradle.properties | 4 +-- gradle/wrapper/gradle-wrapper.properties | 2 +- src/main/resources/META-INF/plugin.xml | 39 ++++++++++++------------ 4 files changed, 27 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fad6900..35d7d27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ ## [Unreleased] +### Fixed + +- Fix compatibility with 2024.3 IDEs + ## [3.0.1] - 2024-09-03 ### Fixed diff --git a/gradle.properties b/gradle.properties index 6db7804..fd69cc7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.github.warningimhack3r.npmupdatedependencies pluginName = npm-update-dependencies pluginRepositoryUrl = https://github.com/WarningImHack3r/npm-update-dependencies # SemVer format -> https://semver.org -pluginVersion = 3.0.1 +pluginVersion = 3.0.2 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 223 @@ -21,7 +21,7 @@ platformPlugins = platformBundledPlugins = # Gradle Releases -> https://github.com/gradle/gradle/releases -gradleVersion = 8.10 +gradleVersion = 8.10.1 # Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib kotlin.stdlib.default.dependency = false diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9355b41..0aaefbc 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 3d0602a..28f204e 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -5,6 +5,7 @@ WarningImHack3r com.intellij.modules.platform + com.intellij.modules.json @@ -15,9 +16,9 @@ description="Action group for npm-update-dependencies" icon="NUDIcons.Logo"> - + - + - + - + - + - + - + - + + icon="CollaborationToolsIcons.DeleteHovered"/> + icon="AllIcons.Debugger.Db_exception_breakpoint"/> + class="com.github.warningimhack3r.npmupdatedependencies.ui.listeners.OnSaveListener"/> + mappingFile="NUDIconMappings.json"/> + implementationClass="com.github.warningimhack3r.npmupdatedependencies.ui.annotation.DeprecationAnnotator"/> + implementationClass="com.github.warningimhack3r.npmupdatedependencies.ui.annotation.UpdatesAnnotator"/> + implementation="com.github.warningimhack3r.npmupdatedependencies.ui.statusbar.StatusBarFactory"/> + implementation="com.github.warningimhack3r.npmupdatedependencies.ui.banner.DeprecationBanner"/> + instance="com.github.warningimhack3r.npmupdatedependencies.settings.NUDSettingsConfigurable"/> + serviceImplementation="com.github.warningimhack3r.npmupdatedependencies.settings.NUDSettingsState"/> + implementation="com.github.warningimhack3r.npmupdatedependencies.errorsubmitter.GitHubErrorReportSubmitter"/>