From f5bca7df6098bef507a587e977360cbefe0b2f8b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 23:36:07 +0000 Subject: [PATCH] build(deps): bump org.junit:junit-bom from 5.11.4 to 6.1.2 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 5.11.4 to 6.1.2. - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r5.11.4...r6.1.2) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.1.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index a166de0a..610c3b6f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -77,7 +77,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:5.11.4")) + testImplementation(platform("org.junit:junit-bom:6.1.2")) 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 @@ -93,7 +93,7 @@ dependencies { } // --- uiTest: RemoteRobot end-to-end (Layer D), gated by -PuiTest.enabled=true --- - "uiTestImplementation"(platform("org.junit:junit-bom:5.11.4")) + "uiTestImplementation"(platform("org.junit:junit-bom:6.1.2")) "uiTestImplementation"("org.junit.jupiter:junit-jupiter") "uiTestRuntimeOnly"("org.junit.platform:junit-platform-launcher") "uiTestImplementation"("com.intellij.remoterobot:remote-robot:0.11.23")