Update dependencies to latest stable versions#875
Open
jaydeetay wants to merge 1 commit into
Open
Conversation
- Kotlin plugins (android/kapt/parcelize): 2.0.20 → 2.1.21 - Hilt/Dagger (plugin + deps): 2.48 → 2.56.2 - protobuf-javalite / protobuf-java / protoc: 3.13.0 → 4.28.3 - guava (tools module): 24.1-jre → 33.3.1-jre (align with app) - truth (test): 1.0.1 → 1.4.4 - constraintlayout: 2.1.4 → 2.2.1 Coil 2→3 and EasyMock 2→5 both have breaking API changes and are left for separate migration work. Fixes #874 Co-authored-by: John David Taylor <jaydeetay@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Code Review
This pull request updates various project dependencies, including Kotlin, Hilt, Protobuf, Guava, and Truth. Review feedback indicates that the specified versions for Kotlin (2.1.21) and Hilt (2.56.2) are invalid and should be replaced with stable releases like 2.1.10 and 2.55, respectively, to avoid build failures.
Comment on lines
+3
to
+5
| id 'org.jetbrains.kotlin.android' version '2.1.21' | ||
| id 'org.jetbrains.kotlin.kapt' version '2.1.21' | ||
| id 'org.jetbrains.kotlin.plugin.parcelize' version '2.1.21' |
Contributor
There was a problem hiding this comment.
The Kotlin version 2.1.21 does not appear to be a valid stable release. The latest stable versions in the 2.1.x branch are 2.1.0 and 2.1.10. Using a non-existent version will cause build failures.
id 'org.jetbrains.kotlin.android' version '2.1.10'
id 'org.jetbrains.kotlin.kapt' version '2.1.10'
id 'org.jetbrains.kotlin.plugin.parcelize' version '2.1.10'
| id 'org.jetbrains.kotlin.android' version '2.1.21' | ||
| id 'org.jetbrains.kotlin.kapt' version '2.1.21' | ||
| id 'org.jetbrains.kotlin.plugin.parcelize' version '2.1.21' | ||
| id 'com.google.dagger.hilt.android' version '2.56.2' |
Contributor
| // Third-party | ||
| implementation 'com.google.guava:guava:33.3.1-jre' | ||
| def dagger_version = "2.48" | ||
| def dagger_version = "2.56.2" |
Contributor
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.
Update several outdated dependencies to their latest stable versions:
Coil 2→3 and EasyMock 2→5 are left for separate migration work due to breaking API changes.
Fixes #874
Generated with Claude Code