Skip to content

Update dependencies to latest stable versions#875

Open
jaydeetay wants to merge 1 commit into
masterfrom
claude/issue-874-20260513-1914
Open

Update dependencies to latest stable versions#875
jaydeetay wants to merge 1 commit into
masterfrom
claude/issue-874-20260513-1914

Conversation

@jaydeetay
Copy link
Copy Markdown
Member

Update several outdated dependencies to their latest stable versions:

  • Kotlin plugins (android/kapt/parcelize): 2.0.20 → 2.1.21
  • Hilt/Dagger (plugin + deps): 2.48 → 2.56.2
  • protobuf: 3.13.0 → 4.28.3
  • guava (tools): 24.1-jre → 33.3.1-jre
  • truth (test): 1.0.1 → 1.4.4
  • constraintlayout: 2.1.4 → 2.2.1

Coil 2→3 and EasyMock 2→5 are left for separate migration work due to breaking API changes.

Fixes #874

Generated with Claude Code

- 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>
Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

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'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

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'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

The Hilt version 2.56.2 does not appear to be a valid stable release. The latest stable version is 2.55. Using a non-existent version will cause build failures.

    id 'com.google.dagger.hilt.android' version '2.55'

// Third-party
implementation 'com.google.guava:guava:33.3.1-jre'
def dagger_version = "2.48"
def dagger_version = "2.56.2"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

The Hilt version 2.56.2 does not appear to be a valid stable release. The latest stable version is 2.55. Using a non-existent version will cause build failures.

    def dagger_version = "2.55"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Update dependencies

1 participant