Skip to content

Bump roborazzi from 1.46.1 to 1.47.0#1269

Merged
lihenggui merged 1 commit intomainfrom
dependabot/gradle/roborazzi-1.47.0
Aug 12, 2025
Merged

Bump roborazzi from 1.46.1 to 1.47.0#1269
lihenggui merged 1 commit intomainfrom
dependabot/gradle/roborazzi-1.47.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Aug 12, 2025

Bumps roborazzi from 1.46.1 to 1.47.0.
Updates io.github.takahirom.roborazzi:roborazzi from 1.46.1 to 1.47.0

Release notes

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

1.47.0

Compose Preview Tester Customization

Added Capturer interface to AndroidComposePreviewTester for customizing capture behavior (#716). This allows setting custom comparison thresholds and other RoborazziOptions for generated Compose preview tests.

import com.dropbox.differ.SimpleImageComparator
import com.github.takahirom.roborazzi.*
@​ExperimentalRoborazziApi
class MyCustomComposePreviewTester(
private val defaultCapturer: AndroidComposePreviewTester.Capturer = AndroidComposePreviewTester.DefaultCapturer()
) : AndroidComposePreviewTester(
capturer = { parameter ->
val customOptions = parameter.roborazziOptions.copy(
compareOptions = parameter.roborazziOptions.compareOptions.copy(
// Set custom comparison threshold (0.0 = exact match, 1.0 = ignore differences)
imageComparator = SimpleImageComparator(maxDistance = 0.01f)
)
)
defaultCapturer.capture(
parameter.copy(roborazziOptions = customOptions)
)
}
)

Fixes #703. Thanks @​pavel163 for the issue report and @​sergio-sastre for the review!

What's Changed

New Contributors

Full Changelog: takahirom/roborazzi@1.46.1...1.47.0

Commits
  • 0f085a2 1.47.0
  • b08fd9c Merge pull request #716 from takahirom/tm/add-compose-preview-tester-customiz...
  • 6b3b1f8 Merge branch 'main' into tm/add-compose-preview-tester-customization
  • ba8790b Update documentation to show DefaultCapturer constructor injection pattern
  • 627b475 Add Capturer interface for customizing AndroidComposePreviewTester
  • e5a5d16 Merge pull request #715 from smugleafdev/main
  • 6d6532f Update preview_support.md for Groovy
  • 7dc4c0e Update README.md note for Groovy
  • See full diff in compare view

Updates io.github.takahirom.roborazzi:roborazzi-accessibility-check from 1.46.1 to 1.47.0

Release notes

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

1.47.0

Compose Preview Tester Customization

Added Capturer interface to AndroidComposePreviewTester for customizing capture behavior (#716). This allows setting custom comparison thresholds and other RoborazziOptions for generated Compose preview tests.

import com.dropbox.differ.SimpleImageComparator
import com.github.takahirom.roborazzi.*
@​ExperimentalRoborazziApi
class MyCustomComposePreviewTester(
private val defaultCapturer: AndroidComposePreviewTester.Capturer = AndroidComposePreviewTester.DefaultCapturer()
) : AndroidComposePreviewTester(
capturer = { parameter ->
val customOptions = parameter.roborazziOptions.copy(
compareOptions = parameter.roborazziOptions.compareOptions.copy(
// Set custom comparison threshold (0.0 = exact match, 1.0 = ignore differences)
imageComparator = SimpleImageComparator(maxDistance = 0.01f)
)
)
defaultCapturer.capture(
parameter.copy(roborazziOptions = customOptions)
)
}
)

Fixes #703. Thanks @​pavel163 for the issue report and @​sergio-sastre for the review!

What's Changed

New Contributors

Full Changelog: takahirom/roborazzi@1.46.1...1.47.0

Commits
  • 0f085a2 1.47.0
  • b08fd9c Merge pull request #716 from takahirom/tm/add-compose-preview-tester-customiz...
  • 6b3b1f8 Merge branch 'main' into tm/add-compose-preview-tester-customization
  • ba8790b Update documentation to show DefaultCapturer constructor injection pattern
  • 627b475 Add Capturer interface for customizing AndroidComposePreviewTester
  • e5a5d16 Merge pull request #715 from smugleafdev/main
  • 6d6532f Update preview_support.md for Groovy
  • 7dc4c0e Update README.md note for Groovy
  • See full diff in compare view

Updates io.github.takahirom.roborazzi from 1.46.1 to 1.47.0

Release notes

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

1.47.0

Compose Preview Tester Customization

Added Capturer interface to AndroidComposePreviewTester for customizing capture behavior (#716). This allows setting custom comparison thresholds and other RoborazziOptions for generated Compose preview tests.

import com.dropbox.differ.SimpleImageComparator
import com.github.takahirom.roborazzi.*
@​ExperimentalRoborazziApi
class MyCustomComposePreviewTester(
private val defaultCapturer: AndroidComposePreviewTester.Capturer = AndroidComposePreviewTester.DefaultCapturer()
) : AndroidComposePreviewTester(
capturer = { parameter ->
val customOptions = parameter.roborazziOptions.copy(
compareOptions = parameter.roborazziOptions.compareOptions.copy(
// Set custom comparison threshold (0.0 = exact match, 1.0 = ignore differences)
imageComparator = SimpleImageComparator(maxDistance = 0.01f)
)
)
defaultCapturer.capture(
parameter.copy(roborazziOptions = customOptions)
)
}
)

Fixes #703. Thanks @​pavel163 for the issue report and @​sergio-sastre for the review!

What's Changed

New Contributors

Full Changelog: takahirom/roborazzi@1.46.1...1.47.0

Commits
  • 0f085a2 1.47.0
  • b08fd9c Merge pull request #716 from takahirom/tm/add-compose-preview-tester-customiz...
  • 6b3b1f8 Merge branch 'main' into tm/add-compose-preview-tester-customization
  • ba8790b Update documentation to show DefaultCapturer constructor injection pattern
  • 627b475 Add Capturer interface for customizing AndroidComposePreviewTester
  • e5a5d16 Merge pull request #715 from smugleafdev/main
  • 6d6532f Update preview_support.md for Groovy
  • 7dc4c0e Update README.md note for Groovy
  • See full diff 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)

Bumps `roborazzi` from 1.46.1 to 1.47.0.

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

Updates `io.github.takahirom.roborazzi:roborazzi-accessibility-check` from 1.46.1 to 1.47.0
- [Release notes](https://github.com/takahirom/roborazzi/releases)
- [Commits](takahirom/roborazzi@1.46.1...1.47.0)

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

---
updated-dependencies:
- dependency-name: io.github.takahirom.roborazzi:roborazzi
  dependency-version: 1.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.github.takahirom.roborazzi:roborazzi-accessibility-check
  dependency-version: 1.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.github.takahirom.roborazzi
  dependency-version: 1.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@lihenggui lihenggui merged commit f46c28a into main Aug 12, 2025
4 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/roborazzi-1.47.0 branch August 12, 2025 23:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant