chore(deps): update dependency org.jetbrains.kotlin:kotlin-stdlib-jdk7 to v2 - #1388
Merged
gh-worker-dd-mergequeue-cf854d[bot] merged 1 commit intoAug 31, 2026
Conversation
|
PRApprover will approve and merge this PR, FAQ, #dx-source-code-management 🛠️ PRApproval Status
➡️ Current phase: ⏳ Merge via MergeQueue is already in progress... |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Android example apps’ Gradle dependency constraints to address a security-driven major upgrade of the Kotlin kotlin-stdlib-jdk7 artifact.
Changes:
- Bumped
org.jetbrains.kotlin:kotlin-stdlib-jdk7constraint from1.8.0to2.4.10in the example app. - Bumped
org.jetbrains.kotlin:kotlin-stdlib-jdk7constraint from1.8.0to2.4.10in the new-architecture example app.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| example/android/app/build.gradle | Updates Kotlin stdlib-jdk7 constraint version used by the example Android app. |
| example-new-architecture/android/app/build.gradle | Updates Kotlin stdlib-jdk7 constraint version used by the new-architecture example Android app. |
Suppressed comments (2)
example/android/app/build.gradle:116
- The Kotlin stdlib constraints are now mixing major versions:
kotlin-stdlib-jdk7is pinned to2.4.10whilekotlin-stdlib-jdk8remains1.8.0. Keeping these artifacts on different versions can lead to an inconsistent Kotlin stdlib dependency graph (e.g., multiple transitive stdlib versions / unexpected conflict resolution). Consider aligningkotlin-stdlib-jdk8to the same version askotlin-stdlib-jdk7(or removing both constraints if they’re no longer needed).
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.4.10") {
because("kotlin-stdlib-jdk7 is now a part of kotlin-stdlib")
}
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") {
because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib")
example-new-architecture/android/app/build.gradle:114
- The Kotlin stdlib constraints are now mixing major versions:
kotlin-stdlib-jdk7is pinned to2.4.10whilekotlin-stdlib-jdk8remains1.8.0. Keeping these artifacts on different versions can lead to an inconsistent Kotlin stdlib dependency graph (e.g., multiple transitive stdlib versions / unexpected conflict resolution). Consider aligningkotlin-stdlib-jdk8to the same version askotlin-stdlib-jdk7(or removing both constraints if they’re no longer needed).
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.4.10") {
because("kotlin-stdlib-jdk7 is now a part of kotlin-stdlib")
}
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") {
because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib")
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
gh-worker-dd-mergequeue-cf854d
Bot
deleted the
engraver-auto-version-upgrade/renovate/org.jetbrains.kotlin-kotlin-stdlib-jdk7-2.x
branch
August 31, 2026 19:44
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.8.0→2.4.10Warning
Some dependencies could not be looked up. Check the warning logs for more information.
🚨 Gradle Security Update (Major) - CRITICAL
This PR addresses critical severity security vulnerabilities in Gradle dependencies with major version changes.
Version Upgrader Overview
Questions or feedback? Ask in #adms-version-upgrades
🤖 Generated by ADMS (Automated Dependency Management System)
🚨 Gradle Security Update (Major) - HIGH
This PR addresses high severity security vulnerabilities in Gradle dependencies with major version changes.