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 buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
`kotlin-dsl`
kotlin("jvm") version "1.9.20"
kotlin("jvm") version "2.4.10"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Keep both Kotlin plugin declarations on the reviewed version

This upgrades only the plugin used to compile buildSrc; the implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.20") dependency still supplies Kotlin 1.9.20 to the openai.kotlin convention plugin used by SDK subprojects. Consequently every build now loads two KGP versions while the production compiler remains unchanged. This also contradicts the upgrade procedure in SECURITY.md:96-104, which identifies 2.4.10 as below the first fixed release and requires upgrading both declarations together after compatibility review. Revert this partial bump, or update both declarations to an eligible version and run the prescribed compatibility matrices.

AGENTS.md reference: AGENTS.md:L34-L36

Useful? React with 👍 / 👎.

id("com.vanniktech.maven.publish") version "0.28.0"
}

Expand Down
Loading