Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ import org.jetbrains.intellij.platform.gradle.models.ProductRelease
import org.jetbrains.intellij.platform.gradle.tasks.VerifyPluginTask

plugins {
kotlin("jvm") version "2.1.20"
kotlin("plugin.serialization") version "2.1.20"
kotlin("jvm") version "2.4.20"
kotlin("plugin.serialization") version "2.4.20"
// PINNED AT 2.16.0 DELIBERATELY. 2.18.1 exists and the build warns about it on every run, but bumping it
// hangs the headless suite: `ChatSessionManagerHeadlessTest` never starts, because
// BasePlatformTestCase.setUp → LightPlatformTestCase.doSetup → IndexingTestUtil.waitUntilIndexesAreReady
// waits forever (confirmed by thread dump — the EDT sits in that frame; our code is never reached). The
// bump changes which platform test-framework is resolved, so this is a fixture-level regression, not ours
// to fix from here. Re-attempt as its own change, with the headless suite as the acceptance test — NOT as
// a drive-by inside a release branch, which is exactly how it got in and straight back out.
id("org.jetbrains.intellij.platform") version "2.16.0"
id("org.jetbrains.intellij.platform") version "2.18.1"
// Coverage, gated per package — see the `kover { }` block near the bottom for the thresholds and why they
// differ by package. (Until 5.0.0 this comment claimed a "≥90% target documented in
// docs/RELEASE_CHECKLIST.md". That document says nothing about coverage, and the real figure was 53%. A
Expand All @@ -24,7 +24,7 @@ plugins {
// quality bar rested on review, which is exactly the thing the standards say to mechanise — "if format
// is being discussed in a review, a formatter is missing".
id("io.gitlab.arturbosch.detekt") version "1.23.8"
id("com.diffplug.spotless") version "8.9.0"
id("com.diffplug.spotless") version "8.10.2"
}

group = "dev.lain"
Expand Down Expand Up @@ -119,7 +119,7 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")

// Unit tests (pure JVM: protocol parsing/building, no IntelliJ Platform fixtures needed).
testImplementation(platform("org.junit:junit-bom:6.1.2"))
testImplementation(platform("org.junit:junit-bom:6.1.3"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
// JUnit4/3 on the COMPILE classpath: the plugin's test executor references JUnit4 API, and
Expand All @@ -135,7 +135,7 @@ dependencies {
}

// --- uiTest: RemoteRobot end-to-end (Layer D), gated by -PuiTest.enabled=true ---
"uiTestImplementation"(platform("org.junit:junit-bom:6.1.2"))
"uiTestImplementation"(platform("org.junit:junit-bom:6.1.3"))
"uiTestImplementation"("org.junit.jupiter:junit-jupiter")
"uiTestRuntimeOnly"("org.junit.platform:junit-platform-launcher")
"uiTestImplementation"("com.intellij.remoterobot:remote-robot:0.11.23")
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
6 changes: 3 additions & 3 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

164 changes: 82 additions & 82 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading