Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 3, 2026

This PR contains the following updates:

Package Change Age Confidence
io.github.takahirom.roborazzi 1.53.01.54.0 age confidence
io.github.takahirom.roborazzi:roborazzi-junit-rule 1.53.01.54.0 age confidence
io.github.takahirom.roborazzi:roborazzi-compose 1.53.01.54.0 age confidence
io.github.takahirom.roborazzi:roborazzi 1.53.01.54.0 age confidence

Warning

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


Release Notes

takahirom/roborazzi (io.github.takahirom.roborazzi)

v1.54.0

Compare Source

Breaking change: Report HTML and JSON paths have changed

The HTML report used to be at build/reports/roborazzi/index.html but is now located at build/reports/roborazzi/<build_variant>/index.html. This is a first step toward fixing a long-standing issue where running recordRoborazzi (instead of recordRoborazziDebug) could break test results; further work is still needed to make it fully reliable.

You should be able to fix it by adding /debug/ (or your build variant) to the path in your CI script. I believe the change is straightforward, but if you run into any cases where it's difficult please let me know.

Note: This change does not affect the paths of the generated screenshot images, so most users will not be impacted.

Thank you for your contribution, @​vladcudoidem!

Behavioral change: Fixed screenshot timing for Compose Preview Support

Previously, we used Espresso.onIdle() and ShadowLooper.idle(), but these APIs are not suitable for Compose. Consequently, screenshots could not be captured after onSizeChanged completed.

@&#8203;Preview
@&#8203;Composable
fun PreviewOnSizeChanged() {
  var size by remember { mutableStateOf("unknown") }
  Box(
    modifier = Modifier
      .size(100.dp)
      .background(Color.Blue)
      .onSizeChanged { size = "${it.width}x${it.height}" } // Now invoked! (It used to be skipped.)
  ) {
    Text(text = size, color = Color.White)
  }
}

If you encounter issues with infinite animations—such as CircularProgressIndicator—you can configure frame-based captures using @RoboComposePreviewOptions.

@&#8203;RoboComposePreviewOptions(
  manualClockOptions = [ManualClockOptions(advanceTimeMillis = 0L)]
)

Thank you for reporting this issue, @​savvasenok!

What's Changed

Full Changelog: takahirom/roborazzi@1.53.0...1.54.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the PR-Dependencies Pull requests that update a dependency file label Jan 3, 2026
@renovate renovate bot requested a review from a team as a code owner January 3, 2026 09:26
@renovate renovate bot requested review from bmarty and removed request for a team January 3, 2026 09:26
@github-actions
Copy link
Contributor

github-actions bot commented Jan 3, 2026

📱 Scan the QR code below to install the build (arm64 only) for this PR.
QR code
If you can't scan the QR code you can install the build via this link: https://i.diawi.com/MWti3m

@sonarqubecloud
Copy link

sonarqubecloud bot commented Jan 3, 2026

@ElementBot
Copy link
Collaborator

Warnings
⚠️

gradle/libs.versions.toml#L25 - A newer version of androidx.compose:compose-bom than 2025.12.00 is available: 2025.12.01

⚠️

gradle/libs.versions.toml#L55 - A newer version of dev.zacsweers.metro:runtime than 0.9.2 is available: 0.9.3

⚠️

gradle/libs.versions.toml#L193 - A newer version of org.jsoup:jsoup than 1.21.2 is available: 1.22.1

Generated by 🚫 dangerJS against 4d45a9d

@codecov
Copy link

codecov bot commented Jan 3, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 81.40%. Comparing base (f47b913) to head (4d45a9d).
⚠️ Report is 1 commits behind head on develop.

Additional details and impacted files
@@             Coverage Diff             @@
##           develop    #5970      +/-   ##
===========================================
+ Coverage    81.36%   81.40%   +0.03%     
===========================================
  Files         2535     2535              
  Lines        67626    67626              
  Branches      8669     8669              
===========================================
+ Hits         55022    55048      +26     
+ Misses        9394     9367      -27     
- Partials      3210     3211       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@bmarty bmarty merged commit 2b826c6 into develop Jan 5, 2026
36 of 37 checks passed
@bmarty bmarty deleted the renovate/roborazzi branch January 5, 2026 07:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

PR-Dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants