Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all dependencies #1995

Merged
merged 2 commits into from
Jan 25, 2024
Merged

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Jan 19, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/cache action major v3 -> v4 age adoption passing confidence
androidx.compose:compose-bom dependencies major 2023.10.01 -> 2024.01.00 age adoption passing confidence
androidx.wear.compose:compose-ui-tooling (source) dependencies patch 1.3.0-rc01 -> 1.3.0 age adoption passing confidence
androidx.wear.compose:compose-navigation (source) dependencies patch 1.3.0-rc01 -> 1.3.0 age adoption passing confidence
androidx.wear.compose:compose-material (source) dependencies patch 1.3.0-rc01 -> 1.3.0 age adoption passing confidence
androidx.wear.compose:compose-foundation (source) dependencies patch 1.3.0-rc01 -> 1.3.0 age adoption passing confidence
com.google.truth:truth dependencies minor 1.2.0 -> 1.3.0 age adoption passing confidence
com.diffplug.spotless plugin minor 6.24.0 -> 6.25.0 age adoption passing confidence
com.android.tools.build:gradle (source) dependencies patch 8.2.1 -> 8.2.2 age adoption passing confidence
com.autonomousapps.dependency-analysis plugin minor 1.28.0 -> 1.29.0 age adoption passing confidence
androidx.compose.material3:material3 (source) dependencies patch 1.2.0-beta02 -> 1.2.0-rc01 age adoption passing confidence
androidx.compose.ui:ui-unit (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.compose.ui:ui-tooling-preview (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.compose.ui:ui-tooling (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.compose.ui:ui-text (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.compose.ui:ui-test-manifest (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.compose.ui:ui-test-junit4 (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.compose.ui:ui-test (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.compose.ui:ui-graphics (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.compose.ui:ui (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.compose.runtime:runtime (source) dependencies patch 1.6.0-rc01 -> 1.6.0 age adoption passing confidence
androidx.wear.watchface:watchface-complications-rendering (source) dependencies patch 1.2.0 -> 1.2.1 age adoption passing confidence
androidx.wear.watchface:watchface-complications-data-source-ktx (source) dependencies patch 1.2.0 -> 1.2.1 age adoption passing confidence
androidx.compose.ui:ui-util (source) dependencies minor 1.5.4 -> 1.6.0 age adoption passing confidence
androidx.compose.material:material-ripple (source) dependencies minor 1.5.4 -> 1.6.0 age adoption passing confidence
androidx.compose.material:material-icons-extended (source) dependencies minor 1.5.4 -> 1.6.0 age adoption passing confidence
androidx.compose.material:material-icons-core (source) dependencies minor 1.5.4 -> 1.6.0 age adoption passing confidence
androidx.compose.foundation:foundation-layout (source) dependencies minor 1.5.4 -> 1.6.0 age adoption passing confidence
androidx.compose.foundation:foundation (source) dependencies minor 1.5.4 -> 1.6.0 age adoption passing confidence
androidx.wear.watchface:watchface-complications-data (source) dependencies patch 1.2.0 -> 1.2.1 age adoption passing confidence
androidx.benchmark:benchmark-macro-junit4 (source) dependencies patch 1.2.2 -> 1.2.3 age adoption passing confidence
androidx.benchmark:benchmark-junit4 (source) dependencies patch 1.2.2 -> 1.2.3 age adoption passing confidence
com.google.accompanist:accompanist-testharness dependencies minor 0.32.0 -> 0.34.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

actions/cache (actions/cache)

v4

Compare Source

google/truth (com.google.truth:truth)

v1.3.0: 1.3.0

In this release, our assertions on Java 8 types begin to move from the truth-java8-extensions artifact and the Truth8 class to the main truth artifact and the Truth class. This change should not break compatibility for anyone, even users who test under old versions of Android without API desugaring. Additionally, we will never break binary compatibility, though some users will have to make changes to their source code in order for it to compile against newer versions.

This change will be routine for most users, but we're providing as much information as we can for any users who do encounter problems.

We will post fuller instructions for migration later on, once we've learned more from our internal migration efforts. For now, you may find that you need to make one kind of change, and you may elect to make others. (If we missed anything, please open an issue to report problems or request help.)

The change you might need to make:

  • By adding new overloads of Truth.assertThat, we cause some code to fail to compile because of an overload ambiguity. This is rare, but it can happen if you static import both Truth.assertThat and some other assertThat method that includes overloads for Optional or Stream. (It does not happen for Truth8.assertThat, though, except with the Eclipse compiler. Nor it does necessarily happen for other assertThat(Stream) and assertThat(Optional) methods.) If this happens to you, you'll need to remove one of the static imports, changing the corresponding call sites from "assertThat" to "FooSubject.assertThat."
    • Alternatively, you may choose to wait until we make further changes to the new Truth.assertThat overloads. Once we make those further changes, you may be able to simultaneously replace all your imports of Truth8.assertThat with imports of Truth.assertThat as you upgrade to the new version, likely without introducing overload ambiguities.

The changes you might elect to make:

  • If you use Truth8.assertThat(Stream) or Truth8.assertThat(Optional), you can migrate to the new overloads in Truth. If you static import Truth8.assertThat, you can usually make this change simply by replacing that static import with a static import of Truth.assertThat—or, if you already have an import of Truth.assertThat, by just removing the import of Truth8.assertThat. (If you additionally use less common assertion methods, like assertThat(OptionalInt), you'll want to use both imports for now. Later, we'll move assertThat(OptionalInt) and friends, too.) We recommend making this change now, since your calls to Truth8.assertThat will fail to compile against some future version of Truth, unless you plan to wait to update your Truth dependency until we've made all our changes for Java 8 types.

  • If you use assertWithMessage(...).about(streams()).that(...), expect.about(optionals()).that(...), or similar, you can remove your call to about. This change will never be necessary; it is just a simplification.

  • If you depend on truth-java8-extension, you may remove it. All its classes are now part of the main truth artifact. This change, too, is not necessary; it is just a simplification. (OK, if your build system has a concept of strict deps, there is a chance that you'll need to add deps on truth to replace your deps on truth-java8-extension.)

Finally, the changelog for this release:

  • Made StreamSubject avoid collecting the Stream until necessary, and made its isEqualTo and isNotEqualTo methods no longer always throw. (f8ecaec)
  • Added assertThat overloads for Optional and Stream to the main Truth class. (37fd8be)
  • Added that overloads to make it possible to write type-specific assertions when using expect.that(optional) and expect.that(stream). (ca7e8f4)
  • Moved the truth-java8-extension classes into the main truth artifact. There is no longer any need to depend on truth-java8-extension, which is now empty. (We've also removed the Truth8 GWT module.) (eb0426e)

Again, if you have any problems, please let us know.

google/accompanist (com.google.accompanist:accompanist-testharness)

v0.34.0: 🌈

What’s Changed

Configuration

📅 Schedule: Branch creation - "before 4am" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate-bot renovate-bot force-pushed the renovate/all branch 4 times, most recently from 6df315f to f797370 Compare January 24, 2024 18:42
@yschimke yschimke merged commit 8866876 into google:main Jan 25, 2024
4 checks passed
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.

2 participants