Skip to content

build(deps): bump roborazzi from 1.71.0 to 1.72.0 - #21550

Open
dependabot[bot] wants to merge 1 commit into
dependency-updatesfrom
dependabot/gradle/dependency-updates/roborazzi-1.72.0
Open

build(deps): bump roborazzi from 1.71.0 to 1.72.0#21550
dependabot[bot] wants to merge 1 commit into
dependency-updatesfrom
dependabot/gradle/dependency-updates/roborazzi-1.72.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps roborazzi from 1.71.0 to 1.72.0.
Updates io.github.takahirom.roborazzi:roborazzi from 1.71.0 to 1.72.0

Release notes

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

1.72.0

New: Subdirectory naming strategies for screenshot paths

Two new roborazzi.record.namingStrategy options organize screenshots into directories instead of one flat folder of fully-qualified file names (#909, fixes #801):

# com.example.myapp.ui/SomeClass.method.png — the package as a single directory level
roborazzi.record.namingStrategy=testPackageDirAndClassAndMethod
com/example/myapp/ui/SomeClass.method.png — the package as nested directories
roborazzi.record.namingStrategy=testNestedPackageDirAndClassAndMethod

Why: with generateComposePreviewRobolectricTests, projects with hundreds of previews end up with a single flat directory that is hard to navigate. Both directory styles requested in the issue discussion are supported.

_compare / _actual images mirror the golden's subdirectory. This matters because the package no longer appears in the leaf file name with the *Dir strategies — without mirroring, two classes with the same simple name in different packages would collapse onto a single flat comparison image. The mirroring also works when the compare output directory is a separate directory, and when the output directory is overridden via RoborazziRule. The three existing strategies produce byte-for-byte identical paths as before, so nothing changes unless you opt in.

Fixes

  • Wrong screenshot path on Windows. With roborazzi.record.filePathStrategy=relativePathFromRoborazziContextOutputDirectory, the output directory was prepended twice on Windows (D:\...\screenshots\D:\...\screenshots\Test.png), because the absolute-path guard only recognized Unix-style paths — D:\... fell through and was joined to the output directory again. Windows drive-absolute and UNC paths are now detected as absolute; on Unix, : and \ remain valid file name characters, so nothing changes there (#916, fixes #915). Thank you @​MGaetan89 for the report with a minimal reproducer while re-enabling the Roborazzi integration tests on Robolectric!

What's Changed

Full Changelog: takahirom/roborazzi@1.71.0...1.72.0

Commits
  • 92249fb 1.72.0
  • cf5a975 Merge pull request #916 from takahirom/tm/915-windows-output-path
  • 7b6b88a Merge pull request #909 from takahirom/tm/subdirectory-naming-strategy
  • 9e81573 Harden compare subtree mirroring test state restoration and assertions
  • 76c7fbe Use rule override output directory for compare subtree mirroring
  • 0509e4a Fix doubled screenshot path for Windows absolute paths
  • adbedcf Test nested compare paths stay distinct with separate compare dir
  • 60206da Mirror golden subdirectory into a separate compare output dir
  • a4685b4 Sync skill reference docs with subdirectory naming strategies
  • 8ece538 Test nested compare paths stay distinct across packages
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-junit-rule from 1.71.0 to 1.72.0

Release notes

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

1.72.0

New: Subdirectory naming strategies for screenshot paths

Two new roborazzi.record.namingStrategy options organize screenshots into directories instead of one flat folder of fully-qualified file names (#909, fixes #801):

# com.example.myapp.ui/SomeClass.method.png — the package as a single directory level
roborazzi.record.namingStrategy=testPackageDirAndClassAndMethod
com/example/myapp/ui/SomeClass.method.png — the package as nested directories
roborazzi.record.namingStrategy=testNestedPackageDirAndClassAndMethod

Why: with generateComposePreviewRobolectricTests, projects with hundreds of previews end up with a single flat directory that is hard to navigate. Both directory styles requested in the issue discussion are supported.

_compare / _actual images mirror the golden's subdirectory. This matters because the package no longer appears in the leaf file name with the *Dir strategies — without mirroring, two classes with the same simple name in different packages would collapse onto a single flat comparison image. The mirroring also works when the compare output directory is a separate directory, and when the output directory is overridden via RoborazziRule. The three existing strategies produce byte-for-byte identical paths as before, so nothing changes unless you opt in.

Fixes

  • Wrong screenshot path on Windows. With roborazzi.record.filePathStrategy=relativePathFromRoborazziContextOutputDirectory, the output directory was prepended twice on Windows (D:\...\screenshots\D:\...\screenshots\Test.png), because the absolute-path guard only recognized Unix-style paths — D:\... fell through and was joined to the output directory again. Windows drive-absolute and UNC paths are now detected as absolute; on Unix, : and \ remain valid file name characters, so nothing changes there (#916, fixes #915). Thank you @​MGaetan89 for the report with a minimal reproducer while re-enabling the Roborazzi integration tests on Robolectric!

What's Changed

Full Changelog: takahirom/roborazzi@1.71.0...1.72.0

Commits
  • 92249fb 1.72.0
  • cf5a975 Merge pull request #916 from takahirom/tm/915-windows-output-path
  • 7b6b88a Merge pull request #909 from takahirom/tm/subdirectory-naming-strategy
  • 9e81573 Harden compare subtree mirroring test state restoration and assertions
  • 76c7fbe Use rule override output directory for compare subtree mirroring
  • 0509e4a Fix doubled screenshot path for Windows absolute paths
  • adbedcf Test nested compare paths stay distinct with separate compare dir
  • 60206da Mirror golden subdirectory into a separate compare output dir
  • a4685b4 Sync skill reference docs with subdirectory naming strategies
  • 8ece538 Test nested compare paths stay distinct across packages
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi from 1.71.0 to 1.72.0

Release notes

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

1.72.0

New: Subdirectory naming strategies for screenshot paths

Two new roborazzi.record.namingStrategy options organize screenshots into directories instead of one flat folder of fully-qualified file names (#909, fixes #801):

# com.example.myapp.ui/SomeClass.method.png — the package as a single directory level
roborazzi.record.namingStrategy=testPackageDirAndClassAndMethod
com/example/myapp/ui/SomeClass.method.png — the package as nested directories
roborazzi.record.namingStrategy=testNestedPackageDirAndClassAndMethod

Why: with generateComposePreviewRobolectricTests, projects with hundreds of previews end up with a single flat directory that is hard to navigate. Both directory styles requested in the issue discussion are supported.

_compare / _actual images mirror the golden's subdirectory. This matters because the package no longer appears in the leaf file name with the *Dir strategies — without mirroring, two classes with the same simple name in different packages would collapse onto a single flat comparison image. The mirroring also works when the compare output directory is a separate directory, and when the output directory is overridden via RoborazziRule. The three existing strategies produce byte-for-byte identical paths as before, so nothing changes unless you opt in.

Fixes

  • Wrong screenshot path on Windows. With roborazzi.record.filePathStrategy=relativePathFromRoborazziContextOutputDirectory, the output directory was prepended twice on Windows (D:\...\screenshots\D:\...\screenshots\Test.png), because the absolute-path guard only recognized Unix-style paths — D:\... fell through and was joined to the output directory again. Windows drive-absolute and UNC paths are now detected as absolute; on Unix, : and \ remain valid file name characters, so nothing changes there (#916, fixes #915). Thank you @​MGaetan89 for the report with a minimal reproducer while re-enabling the Roborazzi integration tests on Robolectric!

What's Changed

Full Changelog: takahirom/roborazzi@1.71.0...1.72.0

Commits
  • 92249fb 1.72.0
  • cf5a975 Merge pull request #916 from takahirom/tm/915-windows-output-path
  • 7b6b88a Merge pull request #909 from takahirom/tm/subdirectory-naming-strategy
  • 9e81573 Harden compare subtree mirroring test state restoration and assertions
  • 76c7fbe Use rule override output directory for compare subtree mirroring
  • 0509e4a Fix doubled screenshot path for Windows absolute paths
  • adbedcf Test nested compare paths stay distinct with separate compare dir
  • 60206da Mirror golden subdirectory into a separate compare output dir
  • a4685b4 Sync skill reference docs with subdirectory naming strategies
  • 8ece538 Test nested compare paths stay distinct across packages
  • 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 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)

Bumps `roborazzi` from 1.71.0 to 1.72.0.

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

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

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

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies used for automated dependency PRs label Aug 17, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Snapshot diff report vs dependency-updates. Open screenshot-diff for diffs.

  • AllActivitiesScreenshotTest: 2 changes
  • PreferencesScreenshotTest: 4 changes
All 6 changed screenshots

AllActivitiesScreenshotTest

  • Info_compare.png
  • Info_edgeToEdge_compare.png

PreferencesScreenshotTest

  • AboutFragment_compare.png
  • AdvancedSettingsFragment_compare.png
  • AppearanceSettingsFragment_compare.png
  • ReviewerOptionsFragment_compare.png

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies used for automated dependency PRs Needs Review

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants