From 9f0a0009d758116de5808ff5ba60e0536fe4cf99 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Fri, 22 May 2026 08:05:45 -0400 Subject: [PATCH] chore(android): bump detekt 1.23.7 -> 1.23.8 for JDK 25 compat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit detekt 1.23.7 choked on JDK 25 with an opaque "25.0.3" error (same shape as the original Gradle 8.10 failure). Per the detekt 1.23.8 release notes (Feb 2025), it's the first 1.23.x version tested with JDK 25. Still built against Kotlin 2.0.21 — fine for our small Phase 1 sources, no exotic Kotlin 2.3 syntax in use yet. The `tasks.withType { jvmTarget = "17" }` pin from the previous commit stays as belt-and-braces. Co-Authored-By: Claude Opus 4.7 (1M context) --- android/gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/gradle/libs.versions.toml b/android/gradle/libs.versions.toml index 871c64c0..38ce704c 100644 --- a/android/gradle/libs.versions.toml +++ b/android/gradle/libs.versions.toml @@ -31,7 +31,7 @@ turbine = "1.2.0" mockk = "1.13.13" compose-test = "1.7.5" ktlint-gradle = "12.1.1" -detekt = "1.23.7" +detekt = "1.23.8" [libraries] androidx-core-ktx = { module = "androidx.core:core-ktx", version = "1.13.1" }