fix(deps): update dependency androidx.compose.material:material to v1.11.4 - #58
Open
renovate[bot] wants to merge 1 commit into
Open
fix(deps): update dependency androidx.compose.material:material to v1.11.4#58renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
from
September 10, 2024 19:45
7428150 to
e4f5492
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
2 times, most recently
from
September 17, 2024 23:28
f157e7f to
15c6afa
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
4 times, most recently
from
September 23, 2024 23:15
8db96d1 to
7cee93a
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
3 times, most recently
from
October 1, 2024 19:52
b8ab718 to
16c484a
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
3 times, most recently
from
October 4, 2024 13:31
f0146fb to
9521bbd
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
2 times, most recently
from
October 14, 2024 21:05
b30aa0d to
c22ac90
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
3 times, most recently
from
October 16, 2024 17:59
e27c5e0 to
932ff2f
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
5 times, most recently
from
October 31, 2024 20:16
8d5ff75 to
7d728ae
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
from
November 11, 2024 15:29
7d728ae to
2d82d45
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
from
November 20, 2024 18:31
2d82d45 to
cbdf08a
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
from
December 2, 2024 20:25
cbdf08a to
b54eb72
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
from
February 11, 2025 08:02
43789a2 to
3bcb09c
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
4 times, most recently
from
February 13, 2025 19:33
aa31e79 to
5360b7d
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
5 times, most recently
from
February 27, 2025 03:01
21318da to
e648dfd
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
2 times, most recently
from
March 4, 2025 23:36
820de61 to
f81e4bd
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
3 times, most recently
from
March 26, 2025 22:29
bb0c15b to
23922d7
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
3 times, most recently
from
April 21, 2025 23:18
136d9a2 to
cf0c462
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
2 times, most recently
from
April 25, 2025 12:34
b747f15 to
b740869
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
2 times, most recently
from
May 6, 2025 19:30
d37e44c to
c66168a
Compare
renovate
Bot
force-pushed
the
renovate/androidx.compose.material-material-1.x
branch
2 times, most recently
from
May 7, 2025 19:26
bceb2d9 to
66555b0
Compare
| dependencies { | ||
| implementation("androidx.activity:activity-compose:1.9.3") | ||
| implementation("androidx.compose.material:material:1.7.0") | ||
| implementation("androidx.compose.material:material:1.10.4") |
There was a problem hiding this comment.
Bug: The androidx.compose.material library is updated to 1.10.4 while androidx.compose.ui remains at 1.7.8. This version mismatch will likely cause runtime crashes due to binary incompatibility.
Severity: CRITICAL
Suggested Fix
Align the Jetpack Compose library versions. Update the composeUiVersion variable to a version compatible with Material 1.10.4, such as a corresponding 1.10.x release. Alternatively, implement a Compose Bill of Materials (BOM) to automatically manage compatible versions across all Compose modules.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.
Location: client/build.gradle.kts#L100
Potential issue: The pull request updates the `androidx.compose.material:material`
dependency to version `1.10.4` but leaves the related `androidx.compose.ui:ui`
dependency at version `1.7.8`. These Jetpack Compose libraries are not designed to be
compatible across such a significant version gap (1.7.x vs. 1.10.x). This mismatch will
likely lead to runtime crashes such as `ClassNotFoundException` or `NoSuchMethodError`
when the application attempts to render or interact with Material components. The errors
occur because the newer Material library expects APIs from the UI library that do not
exist or have different signatures in the older version.
Did we get this right? 👍 / 👎 to inform future reviews.
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.7.0→1.11.4Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.