Skip to content
Open
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
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ java {

object Versions {
const val launchdarklyLogging = "1.1.1"
const val okhttp = "4.12.0"
const val okhttp = "5.3.2"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kotlin plugin version not updated to match OkHttp 5

High Severity

Bumping OkHttp to 5.3.2 without updating the Kotlin plugin version from 1.6.10 (line 21) creates a major version mismatch. OkHttp 5.3.2 depends on kotlin-stdlib 2.2.21 and requires Kotlin 2.2.0+ to read its metadata. The build file's own comment (lines 32–34) explicitly warns that the Kotlin plugin version must match OkHttp's Kotlin version to avoid extra Kotlin runtime dependencies in the published pom. This mismatch may cause build failures or incorrect transitive dependencies for consumers of this library.

Fix in Cursor Fix in Web

}

dependencies {
Expand Down