Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 5, 2026

By approving this PR, you are confirming that you have adequately and effectively reviewed this change.

Searchable Hashes
  • 76a18703ed39c3827b9d1b803a6076b8
  • 21f32eba072e4ce088c55b8508f315e6
  • 97e8c25f97f22f7a9512e78cc2c58d64
  • b78d04350b93159faed3c3992610779e
  • 928d068eae121c98dceaf63b347a42eb
  • 20f56f46bfa2ebf9b75bc73f4b1b8041
  • a128161503456b9be126d7136723ec84
  • 2ef5a3ec42a262082c3a4b22d9348bad

The above information was added by dependabot-augmentor.

Bumps roborazzi from 1.52.0 to 1.54.0.
Updates io.github.takahirom.roborazzi:roborazzi-gradle-plugin from 1.52.0 to 1.54.0

Release notes

Sourced from io.github.takahirom.roborazzi:roborazzi-gradle-plugin's releases.

1.54.0

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.

@Preview
@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.

@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

1.53.0

... (truncated)

Commits
  • 216488b 1.54.0
  • 9666227 Merge pull request #770 from takahirom/tm/issue-768-fix-onsizechanged-recompo...
  • 3729a4c Merge pull request #749 from vladcudoidem/feature/issue-731-flavored-reports
  • ded9aaa Fix IntelliJ plugin to find results-summary.json in variant directories
  • d64859b Use roborazziSystemPropertyResultDirectory() in ContextDataTest
  • 90a7bd6 Remove deprecated constants and add clarifying comments
  • 95501ee Fix ContextDataTest result directory path to include /results subdirectory
  • 8e200ca Fix result directory path to include /results/ subdirectory
  • 5fdaf71 Merge pull request #769 from takahirom/tm/issue-768-onsizechanged-reproduction
  • 45b57a4 Fix onSizeChanged recomposition not completing before capture
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi from 1.52.0 to 1.54.0

Release notes

Sourced from io.github.takahirom.roborazzi:roborazzi's releases.

1.54.0

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.

@Preview
@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.

@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

1.53.0

... (truncated)

Commits
  • 216488b 1.54.0
  • 9666227 Merge pull request #770 from takahirom/tm/issue-768-fix-onsizechanged-recompo...
  • 3729a4c Merge pull request #749 from vladcudoidem/feature/issue-731-flavored-reports
  • ded9aaa Fix IntelliJ plugin to find results-summary.json in variant directories
  • d64859b Use roborazziSystemPropertyResultDirectory() in ContextDataTest
  • 90a7bd6 Remove deprecated constants and add clarifying comments
  • 95501ee Fix ContextDataTest result directory path to include /results subdirectory
  • 8e200ca Fix result directory path to include /results/ subdirectory
  • 5fdaf71 Merge pull request #769 from takahirom/tm/issue-768-onsizechanged-reproduction
  • 45b57a4 Fix onSizeChanged recomposition not completing before capture
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-compose from 1.52.0 to 1.54.0

Release notes

Sourced from io.github.takahirom.roborazzi:roborazzi-compose's releases.

1.54.0

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.

@Preview
@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.

@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

1.53.0

... (truncated)

Commits
  • 216488b 1.54.0
  • 9666227 Merge pull request #770 from takahirom/tm/issue-768-fix-onsizechanged-recompo...
  • 3729a4c Merge pull request #749 from vladcudoidem/feature/issue-731-flavored-reports
  • ded9aaa Fix IntelliJ plugin to find results-summary.json in variant directories
  • d64859b Use roborazziSystemPropertyResultDirectory() in ContextDataTest
  • 90a7bd6 Remove deprecated constants and add clarifying comments
  • 95501ee Fix ContextDataTest result directory path to include /results subdirectory
  • 8e200ca Fix result directory path to include /results/ subdirectory
  • 5fdaf71 Merge pull request #769 from takahirom/tm/issue-768-onsizechanged-reproduction
  • 45b57a4 Fix onSizeChanged recomposition not completing before capture
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-junit-rule from 1.52.0 to 1.54.0

Release notes

Sourced from io.github.takahirom.roborazzi:roborazzi-junit-rule's releases.

1.54.0

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.

@Preview
@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.

@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

1.53.0

... (truncated)

Commits
  • 216488b 1.54.0
  • 9666227 Merge pull request #770 from takahirom/tm/issue-768-fix-onsizechanged-recompo...
  • 3729a4c Merge pull request #749 from vladcudoidem/feature/issue-731-flavored-reports
  • ded9aaa Fix IntelliJ plugin to find results-summary.json in variant directories
  • d64859b Use roborazziSystemPropertyResultDirectory() in ContextDataTest
  • 90a7bd6 Remove deprecated constants and add clarifying comments
  • 95501ee Fix ContextDataTest result directory path to include /results subdirectory
  • 8e200ca Fix result directory path to include /results/ subdirectory
  • 5fdaf71 Merge pull request #769 from takahirom/tm/issue-768-onsizechanged-reproduction
  • 45b57a4 Fix onSizeChanged recomposition not completing before capture
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code minor A new & backwards compatible feature/component labels Jan 5, 2026
Copilot AI review requested due to automatic review settings January 5, 2026 19:03
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code minor A new & backwards compatible feature/component labels Jan 5, 2026
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.

@skyscanner-backpack-bot skyscanner-backpack-bot bot removed the minor A new & backwards compatible feature/component label Jan 5, 2026
@RichSutherSky RichSutherSky self-requested a review January 7, 2026 09:45
Bumps `roborazzi` from 1.52.0 to 1.54.0.

Updates `io.github.takahirom.roborazzi:roborazzi-gradle-plugin` from 1.52.0 to 1.54.0
- [Release notes](https://github.com/takahirom/roborazzi/releases)
- [Commits](takahirom/roborazzi@1.52.0...1.54.0)

Updates `io.github.takahirom.roborazzi:roborazzi` from 1.52.0 to 1.54.0
- [Release notes](https://github.com/takahirom/roborazzi/releases)
- [Commits](takahirom/roborazzi@1.52.0...1.54.0)

Updates `io.github.takahirom.roborazzi:roborazzi-compose` from 1.52.0 to 1.54.0
- [Release notes](https://github.com/takahirom/roborazzi/releases)
- [Commits](takahirom/roborazzi@1.52.0...1.54.0)

Updates `io.github.takahirom.roborazzi:roborazzi-junit-rule` from 1.52.0 to 1.54.0
- [Release notes](https://github.com/takahirom/roborazzi/releases)
- [Commits](takahirom/roborazzi@1.52.0...1.54.0)

---
updated-dependencies:
- dependency-name: io.github.takahirom.roborazzi:roborazzi-gradle-plugin
  dependency-version: 1.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.github.takahirom.roborazzi:roborazzi
  dependency-version: 1.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.github.takahirom.roborazzi:roborazzi-compose
  dependency-version: 1.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.github.takahirom.roborazzi:roborazzi-junit-rule
  dependency-version: 1.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@RichSutherSky RichSutherSky force-pushed the dependabot/gradle/roborazzi-1.54.0 branch from f28d20a to bd803fd Compare January 7, 2026 09:45
@RichSutherSky RichSutherSky merged commit 2e004d9 into main Jan 7, 2026
8 checks passed
@RichSutherSky RichSutherSky deleted the dependabot/gradle/roborazzi-1.54.0 branch January 7, 2026 10:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants