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
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ 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.10"
kotlin("plugin.serialization") version "2.4.10"
// 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
// number nobody measured, pointing at a requirement that did not exist.)
id("org.jetbrains.kotlinx.kover") version "0.9.2"
id("org.jetbrains.kotlinx.kover") version "0.9.9"
// Static analysis (detekt) and formatting (ktlint via Spotless). Added in 5.0.0: until then the whole
// 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".
Expand Down
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.6.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