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:
8.13
->8.14.3
v1.7.1
->v1.7.2
v5
->v6
1.2.0
->1.2.1
1.39.0
->1.46.1
1.39.0
->1.46.1
1.39.0
->1.46.1
4.14.1
->4.15.1
2.11.0
->3.0.0
2.11.0
->3.0.0
0.9.4
->0.9.5
4.29.2
->4.31.1
4.29.2
->4.31.1
4.12.0
->5.1.0
2.7.1
->2.9.0
2.1.10-1.0.31
->2.2.0-2.0.2
2.1.10-1.0.31
->2.2.0-2.0.2
1.8.0
->1.9.0
0.6.1
->0.7.1-0.6.x-compat
1.10.1
->1.10.2
1.10.1
->1.10.2
1.10.1
->1.10.2
1.10.1
->1.10.2
2.1.10
->2.2.0
2.1.10
->2.2.0
2.1.10
->2.2.0
2.1.10
->2.2.0
2.1.10
->2.2.0
2.1.10
->2.2.0
2.1.10
->2.2.0
2.56
->2.57
2.56
->2.57
2.56
->2.57
2.56
->2.57
2.56
->2.57
17.1.0
->17.2.1
4.4.2
->4.4.3
1.4.2
->2.0.0
1.4.2
->2.0.0
3.0.2
->3.0.5
3.0.2
->3.0.5
33.7.0
->34.0.0
2.10.0
->2.10.2
2.10.0
->2.10.2
1.3.0
->1.4.0
1.3.0-alpha02
->1.3.0
2.8.5
->2.9.2
2.8.5
->2.9.2
6.25.0
->7.2.1
1.0.0-beta01
->1.0.0-beta02
1.0.0-alpha03
->1.0.0-alpha05
2.8.7
->2.9.2
2.8.7
->2.9.2
2.8.7
->2.9.2
1.1.1
->1.1.7
1.1.1
->1.1.7
1.15.0
->1.16.0
1.7.6
->1.8.3
1.1.0-rc01
->1.1.0
1.1.0-rc01
->1.1.0
1.1.0-rc01
->1.1.0
1.8.0-alpha07
->1.8.3
2025.02.00
->2025.07.00
1.7.0
->1.7.1
1.9.3
->1.10.1
31.9.0
->31.11.1
31.9.0
->31.11.1
31.9.0
->31.11.1
31.9.0
->31.11.1
8.9.0
->8.11.1
8.9.0
->8.11.1
8.9.0
->8.11.1
8.9.0
->8.11.1
8.9.0
->8.11.1
2.1.4
->2.1.5
0.37.0
->0.37.3
Release Notes
gradle/gradle (gradle)
v8.14.3
: 8.14.3Compare Source
The Gradle team is excited to announce Gradle 8.14.3.
This is a patch release for 8.14. We recommend using 8.14.3 instead of 8.14.
Here are the highlights of this release:
Read the Release Notes
We would like to thank the following community members for their contributions to this release of Gradle:
Aurimas,
Ben Bader,
Björn Kautler,
chandre92,
Daniel Hammer,
Danish Nawab,
Florian Dreier,
Ivy Chen,
Jendrik Johannes,
jimmy1995-gu,
Madalin Valceleanu,
Na Minhyeok.
Upgrade instructions
Switch your build to use Gradle 8.14.3 by updating your wrapper:
See the Gradle 8.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.
For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.
Reporting problems
If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.
We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.
v8.14.2
Compare Source
v8.14.1
Compare Source
v8.14
Compare Source
madrapps/jacoco-report (madrapps/jacoco-report)
v1.7.2
Compare Source
What's Changed
Full Changelog: Madrapps/jacoco-report@v1.7.1...v1.7.2
stefanzweifel/git-auto-commit-action (stefanzweifel/git-auto-commit-action)
v6
Compare Source
Fixed
cashapp/turbine (app.cash.turbine:turbine)
v1.2.1
Compare Source
Changed
Fixed
testIn
with aCoroutineScope
that does not contain aJob
no longer throwsIllegalStateException
.takahirom/roborazzi (io.github.takahirom.roborazzi)
v1.46.1
Compare Source
Bugfix: Fix screenshot sizing for RoborazziComposeSizeOption and Previews on Robolectric 4.15+
This release finally resolves a complex screenshot sizing issue that occurred after the Robolectric 4.15 update. Version 1.46.0 was never released as we discovered additional edge cases during the pre-release phase. This version, 1.46.1, addresses all known issues.
Initially, we migrated to using
RuntimeEnvironment.setQualifiers()
to configure the screen size, following the recommended approach for recent Robolectric versions. However, this change introduced new problems, especially when awidthDp
andheightDp
with different values were specified, or when used in combination with thedevice
parameter in@Preview
.After extensive investigation and discussion, we've implemented a more robust solution. Roborazzi now automatically adds the correct orientation qualifier (
-land
or-port
) based on the provided dimensions and ensures the qualifiers are applied in the correct order to avoid conflicts with other configurations. This fixes sizing for all Compose screenshot tests, making them reliable and predictable again.Acknowledgements
A huge thank you to everyone who contributed to resolving this challenging issue! This fix would not have been possible without the collaborative effort of the community.
setQualifiers
and orientation work were crucial in pointing us toward the correct and final solution.What's Changed
Full Changelog: takahirom/roborazzi@1.46.0...1.46.1
v1.45.1
Compare Source
Please refer to https://github.com/takahirom/roborazzi/releases/tag/1.45.0
v1.45.0
: (Publishing Failed)Compare Source
The attempt to publish version 1.45.0 to the Maven Central repository appears to have failed. The release status is showing as "FAILED," so I will publish version 1.45.1 instead.
(This issue has since been resolved by contacting Maven Central support. Please use 1.45.1)
Bug fixes
The dialog's background dimming is now visible, just as it would be on a real device. Thank you for investigating this. @jeppeman

There was a bug that caused Roborazzi to crash when using BoxWithConstraints with a Dialog. Thank you, @matsudamper, for the report and the sample code.
What's Changed
Full Changelog: takahirom/roborazzi@1.44.0...1.45.0
v1.44.0
Compare Source
Please refer to https://github.com/takahirom/roborazzi/releases/tag/1.44.0-alpha01 to see the main changes in version 1.44.0. We are still seeking feedback on RoboComposePreviewOptions. RoboComposePreviewOptions is still experimental, and we may introduce breaking changes.
New feature: Added JUnit
@Category
to auto-generated tests from Compose PreviewYou can now filter tests using JUnit4's
RoborazziComposePreviewTestCategory
. Thanks to @hellohj for the suggestion.Bugfix: Subdirectory screenshots are now removed when
roborazzi.cleanupOldScreenshots=true
Previously, when
roborazzi.cleanupOldScreenshots=true
was used, subdirectory screenshots were not removed as intended. Thanks to @pacoalface-jt for reporting the bug.What's Changed
4d78a74
by @renovate in https://github.com/takahirom/roborazzi/pull/660Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (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.
This PR was generated by Mend Renovate. View the repository job log.