diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index 8c168fc1..53b7d8ae 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -7,12 +7,12 @@ pluginRepositoryUrl = https://github.com/%REPOSITORY% pluginVersion = 0.0.1 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html -pluginSinceBuild = 232 +pluginSinceBuild = 233 pluginUntilBuild = 242.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC -platformVersion = 2023.2.7 +platformVersion = 2023.3.7 # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c7a6cf5..5a0a0f1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ ## [Unreleased] +### Changed + +- Update `platformVersion` to `2023.3.7` +- Change since/until build to `233-242.*` (2023.3-2024.2.*) +- Cleanup registering the `runIdeForUiTests` task +- Dependencies - upgrade `org.jetbrains.intellij.platform` to `2.0.1` +- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `1.9.25` +- Dependencies - upgrade `org.jetbrains.kotlinx.kover` to `0.8.3` +- Dependencies - upgrade `org.jetbrains.qodana` to `2024.1.9` + ## [2.0.0] - 2024-07-30 ### Changed diff --git a/build.gradle.kts b/build.gradle.kts index 04132758..06816ad2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,6 +1,5 @@ import org.jetbrains.changelog.Changelog import org.jetbrains.changelog.markdownToHTML -import org.jetbrains.intellij.platform.gradle.Constants.Constraints import org.jetbrains.intellij.platform.gradle.TestFrameworkType plugins { @@ -136,19 +135,23 @@ tasks { } } -val runIdeForUiTests by intellijPlatformTesting.runIde.registering { - task { - jvmArgumentProviders += CommandLineArgumentProvider { - listOf( - "-Drobot-server.port=8082", - "-Dide.mac.message.dialogs.as.sheets=false", - "-Djb.privacy.policy.text=", - "-Djb.consents.confirmation.enabled=false", - ) - } - } +intellijPlatformTesting { + runIde { + register("runIdeForUiTests") { + task { + jvmArgumentProviders += CommandLineArgumentProvider { + listOf( + "-Drobot-server.port=8082", + "-Dide.mac.message.dialogs.as.sheets=false", + "-Djb.privacy.policy.text=", + "-Djb.consents.confirmation.enabled=false", + ) + } + } - plugins { - robotServerPlugin(Constraints.LATEST_VERSION) + plugins { + robotServerPlugin() + } + } } } diff --git a/gradle.properties b/gradle.properties index fb6767c6..999947d1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,15 +4,15 @@ pluginGroup = org.jetbrains.plugins.template pluginName = IntelliJ Platform Plugin Template pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-template # SemVer format -> https://semver.org -pluginVersion = 2.0.0 +pluginVersion = 2.0.1 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html -pluginSinceBuild = 232 +pluginSinceBuild = 233 pluginUntilBuild = 242.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC -platformVersion = 2023.2.7 +platformVersion = 2023.3.7 # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1d97bece..dfed70a8 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,10 +4,10 @@ junit = "4.13.2" # plugins changelog = "2.2.1" -intelliJPlatform = "2.0.0" -kotlin = "1.9.24" -kover = "0.8.1" -qodana = "2024.1.5" +intelliJPlatform = "2.0.1" +kotlin = "1.9.25" +kover = "0.8.3" +qodana = "2024.1.9" [libraries] junit = { group = "junit", name = "junit", version.ref = "junit" }