build(deps): bump kotlin from 2.3.21 to 2.4.10#1087
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Conversation
Bumps `kotlin` from 2.3.21 to 2.4.10. Updates `org.jetbrains.kotlin:kotlin-metadata-jvm` from 2.3.21 to 2.4.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.3.21...v2.4.10) Updates `org.jetbrains.kotlin:kotlin-stdlib` from 2.3.21 to 2.4.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.3.21...v2.4.10) Updates `org.jetbrains.kotlin:kotlin-reflect` from 2.3.21 to 2.4.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.3.21...v2.4.10) Updates `org.jetbrains.kotlin:kotlin-test-junit` from 2.3.21 to 2.4.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.3.21...v2.4.10) Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 2.3.21 to 2.4.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.3.21...v2.4.10) Updates `org.jetbrains.kotlin:compose-compiler-gradle-plugin` from 2.3.21 to 2.4.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.3.21...v2.4.10) Updates `org.jetbrains.kotlin:kotlin-serialization` from 2.3.21 to 2.4.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.3.21...v2.4.10) Updates `org.jetbrains.kotlin.android` from 2.3.21 to 2.4.10 Updates `org.jetbrains.kotlin.plugin.parcelize` from 2.3.21 to 2.4.10 Updates `org.jetbrains.kotlin.plugin.serialization` from 2.3.21 to 2.4.10 Updates `org.jetbrains.kotlin.plugin.compose` from 2.3.21 to 2.4.10 --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-metadata-jvm dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-stdlib dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-reflect dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-test-junit dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:compose-compiler-gradle-plugin dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-serialization dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin.android dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin.plugin.parcelize dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin.plugin.serialization dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin.plugin.compose dependency-version: 2.4.10 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
bmc08gt
added a commit
that referenced
this pull request
Jul 20, 2026
* build(deps): bump kotlin to 2.4.10 and coil to 3.5.0 Combines Dependabot PRs #1087 (kotlin 2.3.21 -> 2.4.10) and #947 (compose-coil 3.4.0 -> 3.5.0), which were held back individually. Kotlin 2.4.0 promotes the Compose compiler plugin's singular `stabilityConfigurationFile` (RegularFileProperty) to an ERROR-level deprecation in favor of the plural `stabilityConfigurationFiles` (ListProperty). Migrate both usages accordingly. KSP is left at 2.3.10: it compiles cleanly under Kotlin 2.4.10 across all kspDebugKotlin tasks (Hilt, Room, FeatureFlagProcessor) with no compatibility warning. Coil 3.5.0 needs no source changes. Verified: :apps:flipcash:app:assembleDebug succeeds and the debug APK launches and renders on-device (Maestro launch + login navigation). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DgP1XtH7buYQ5bFPN9uU3v * test: fix always-false `is` checks rejected by Kotlin 2.4 Kotlin 2.4's control-flow analysis promotes "Check for instance is always 'false'" from a warning to a compile error. Two tests assert that specific sealed-error leaf types are NOT NotifiableError, using an `is` check the compiler can now prove is statically false (the leaf types don't implement the interface). Widen the reference to the sealed parent (which does have a notifiable variant) so the check is legal while still verifying the runtime contract. No behavior change. - SwapErrorTest: Timeout / Terminal are not NotifiableError - CoinbaseOnRampEventHandlerTest: RegionMismatch / PaymentSheetTimeout are not NotifiableError Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DgP1XtH7buYQ5bFPN9uU3v --------- Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
Contributor
Author
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
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.
Bumps
kotlinfrom 2.3.21 to 2.4.10.Updates
org.jetbrains.kotlin:kotlin-metadata-jvmfrom 2.3.21 to 2.4.10Release notes
Sourced from org.jetbrains.kotlin:kotlin-metadata-jvm's releases.
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-metadata-jvm's changelog.
... (truncated)
Commits
5687445Add Changelog for 2.4.10-RC2ba30392[Wasm] Support regenerate unchanged modules flag on KGP6307e73[Wasm] Implement Xwasm-IC-generate-unchanged-modules flag39d7aeeAdd ChangeLog for 2.4.10-RC2a2956be[Gradle] Update karma.conf.js to use 'require(...)' instead plain strings9b1361c[Gradle] KT-87223: Updated regression testa4c153a[Gradle] KT-87223: Fix toochain to 2.4.0 for abiValidation compat configbc04b90Add ChangeLog for 2.4.10-RCbbcb94b[CRI] explicitly disable CRI generation for non-JVM targets to avoid false-po...6c2c458Scripting: fix jvmTarget processing from script annotationsUpdates
org.jetbrains.kotlin:kotlin-stdlibfrom 2.3.21 to 2.4.10Release notes
Sourced from org.jetbrains.kotlin:kotlin-stdlib's releases.
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-stdlib's changelog.
... (truncated)
Commits
5687445Add Changelog for 2.4.10-RC2ba30392[Wasm] Support regenerate unchanged modules flag on KGP6307e73[Wasm] Implement Xwasm-IC-generate-unchanged-modules flag39d7aeeAdd ChangeLog for 2.4.10-RC2a2956be[Gradle] Update karma.conf.js to use 'require(...)' instead plain strings9b1361c[Gradle] KT-87223: Updated regression testa4c153a[Gradle] KT-87223: Fix toochain to 2.4.0 for abiValidation compat configbc04b90Add ChangeLog for 2.4.10-RCbbcb94b[CRI] explicitly disable CRI generation for non-JVM targets to avoid false-po...6c2c458Scripting: fix jvmTarget processing from script annotationsUpdates
org.jetbrains.kotlin:kotlin-reflectfrom 2.3.21 to 2.4.10Release notes
Sourced from org.jetbrains.kotlin:kotlin-reflect's releases.
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-reflect's changelog.
... (truncated)
Commits
5687445Add Changelog for 2.4.10-RC2ba30392[Wasm] Support regenerate unchanged modules flag on KGP6307e73[Wasm] Implement Xwasm-IC-generate-unchanged-modules flag39d7aeeAdd ChangeLog for 2.4.10-RC2a2956be[Gradle] Update karma.conf.js to use 'require(...)' instead plain strings9b1361c[Gradle] KT-87223: Updated regression testa4c153a[Gradle] KT-87223: Fix toochain to 2.4.0 for abiValidation compat configbc04b90Add ChangeLog for 2.4.10-RCbbcb94b[CRI] explicitly disable CRI generation for non-JVM targets to avoid false-po...6c2c458Scripting: fix jvmTarget processing from script annotationsUpdates
org.jetbrains.kotlin:kotlin-test-junitfrom 2.3.21 to 2.4.10Release notes
Sourced from org.jetbrains.kotlin:kotlin-test-junit's releases.
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-test-junit's changelog.
... (truncated)
Commits
5687445Add Changelog for 2.4.10-RC2ba30392[Wasm] Support regenerate unchanged modules flag on KGP6307e73[Wasm] Implement Xwasm-IC-generate-unchanged-modules flag39d7aeeAdd ChangeLog for 2.4.10-RC2a2956be[Gradle] Update karma.conf.js to use 'require(...)' instead plain strings9b1361c[Gradle] KT-87223: Updated regression testa4c153a[Gradle] KT-87223: Fix toochain to 2.4.0 for abiValidation compat configbc04b90Add ChangeLog for 2.4.10-RCbbcb94b[CRI] explicitly disable CRI generation for non-JVM targets to avoid false-po...6c2c458Scripting: fix jvmTarget processing from script annotationsUpdates
org.jetbrains.kotlin:kotlin-gradle-pluginfrom 2.3.21 to 2.4.10Release notes
Sourced from org.jetbrains.kotlin:kotlin-gradle-plugin's releases.
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-gradle-plugin's changelog.
... (truncated)
Commits
5687445Add Changelog for 2.4.10-RC2ba30392[Wasm] Support regenerate unchanged modules flag on KGP6307e73[Wasm] Implement Xwasm-IC-generate-unchanged-modules flag39d7aeeAdd ChangeLog for 2.4.10-RC2a2956be[Gradle] Update karma.conf.js to use 'require(...)' instead plain strings9b1361c[Gradle] KT-87223: Updated regression testa4c153a[Gradle] KT-87223: Fix toochain to 2.4.0 for abiValidation compat configbc04b90Add ChangeLog for 2.4.10-RCbbcb94b[CRI] explicitly disable CRI generation for non-JVM targets to avoid false-po...6c2c458Scripting: fix jvmTarget processing from script annotationsUpdates
org.jetbrains.kotlin:compose-compiler-gradle-pluginfrom 2.3.21 to 2.4.10Release notes
Sourced from org.jetbrains.kotlin:compose-compiler-gradle-plugin's releases.
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:compose-compiler-gradle-plugin's changelog.
... (truncated)
Commits
5687445Add Changelog for 2.4.10-RC2ba30392[Wasm] Support regenerate unchanged modules flag on KGP6307e73[Wasm] Implement Xwasm-IC-generate-unchanged-modules flag39d7aeeAdd ChangeLog for 2.4.10-RC2a2956be[Gradle] Update karma.conf.js to use 'require(...)' instead plain strings9b1361c[Gradle] KT-87223: Updated regression testa4c153a[Gradle] KT-87223: Fix toochain to 2.4.0 for abiValidation compat configbc04b90Add ChangeLog for 2.4.10-RCbbcb94b[CRI] explicitly disable CRI generation for non-JVM targets to avoid false-po...6c2c458Scripting: fix jvmTarget processing from script annotationsUpdates
org.jetbrains.kotlin:kotlin-serializationfrom 2.3.21 to 2.4.10Release notes
Sourced from org.jetbrains.kotlin:kotlin-serialization's releases.
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-serialization's changelog.
... (truncated)
Commits
5687445Add Changelog for 2.4.10-RC2ba30392[Wasm] Support regenerate unchanged modules flag on KGP6307e73[Wasm] Implement Xwasm-IC-generate-unchanged-modules flag39d7aeeAdd ChangeLog for 2.4.10-RC2a2956be[Gradle] Update karma.conf.js to use 'require(...)' instead plain strings9b1361c[Gradle] KT-87223: Updated regression testa4c153a[Gradle] KT-87223: Fix toochain to 2.4.0 for abiValidation compat configbc04b90Add ChangeLog for 2.4.10-RCbbcb94b[CRI] explicitly disable CRI generation for non-JVM targets to avoid false-po...6c2c458Scripting: fix jvmTarget processi...Description has been truncated