Skip to content

Bump roborazzi from 1.47.0 to 1.49.0#1276

Merged
lihenggui merged 1 commit intomainfrom
dependabot/gradle/roborazzi-1.49.0
Aug 24, 2025
Merged

Bump roborazzi from 1.47.0 to 1.49.0#1276
lihenggui merged 1 commit intomainfrom
dependabot/gradle/roborazzi-1.49.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Release notes

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

1.49.0

ComposablePreviewScanner 0.7.0 Compatibility Update

Breaking Change - Compatibility Update Required

This release addresses a breaking compatibility issue with ComposablePreviewScanner 0.7.0 that affects users of Roborazzi's Preview support feature.

The Problem

When using ComposablePreviewScanner 0.7.0 with previous versions of Roborazzi, you'll encounter NoSuchMethodError at runtime. This happens because:

  • Method relocation: ComposablePreviewScanner 0.7.0 moved methods from AndroidPreviewScreenshotIdBuilder to provide common PreviewScreenshotIdBuilder methods for Glance and Compose Multiplatform
  • Import mismatch: Previous Roborazzi versions contain generated code with outdated import statements
  • Runtime failure: Auto-generated Roborazzi tests from Previews crash when trying to execute methods at their old locations

The Solution

This Roborazzi update replaces the old method calls and import statements with new ones compatible with ComposablePreviewScanner 0.7.0+. However, since these new method locations don't exist in ComposablePreviewScanner 0.6.x, you must update both libraries together.

⚠️ Required Action

If you use Roborazzi's Preview support, you must:

  • Update Roborazzi to this version
  • Update ComposablePreviewScanner to 0.7.0 or later

Both updates are required - updating only one will cause build or runtime errors.

Migration Steps

// Update both dependencies together
implementation "io.github.takahirom.roborazzi:roborazzi:1.49.0"
implementation "io.github.sergio-sastre.ComposablePreviewScanner:android:0.7.0" // or newer

Improved Error Detection

We've added clear build-time error messages to help you identify when this compatibility issue occurs, so you'll know exactly what needs to be updated instead of encountering cryptic runtime errors.

Common Update Scenarios

Scenario 1: Update only ComposablePreviewScanner to 0.7.0
NoSuchMethodError with old Roborazzi. Update Roborazzi to resolve.

Scenario 2: Update only Roborazzi
→ Compile-time error with clear message to update ComposablePreviewScanner ✅

Acknowledgments

... (truncated)

Commits
  • 921a3c1 Update gradle.properties
  • 211e4a4 Merge pull request #728 from takahirom/tm/increase-ci-timeout-50min
  • 3ffa857 Increase CI timeout to 50 minutes
  • 5639017 Merge pull request #727 from takahirom/tm/add-profile-to-store-screenshot-ci/...
  • f9d2ca8 Add profile flag to CompareScreenshot workflow
  • 5047aaf Fix spacing in workflow
  • 55912aa Add profile flag to storescreenshot ci
  • daf3ac1 Merge pull request #723 from takahirom/tm/centralize-compilesdk-version
  • 90423ee Merge branch 'main' into tm/centralize-compilesdk-version
  • abb453f Complete SDK centralization in integration tests
  • Additional commits viewable in compare view

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

Release notes

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

1.49.0

ComposablePreviewScanner 0.7.0 Compatibility Update

Breaking Change - Compatibility Update Required

This release addresses a breaking compatibility issue with ComposablePreviewScanner 0.7.0 that affects users of Roborazzi's Preview support feature.

The Problem

When using ComposablePreviewScanner 0.7.0 with previous versions of Roborazzi, you'll encounter NoSuchMethodError at runtime. This happens because:

  • Method relocation: ComposablePreviewScanner 0.7.0 moved methods from AndroidPreviewScreenshotIdBuilder to provide common PreviewScreenshotIdBuilder methods for Glance and Compose Multiplatform
  • Import mismatch: Previous Roborazzi versions contain generated code with outdated import statements
  • Runtime failure: Auto-generated Roborazzi tests from Previews crash when trying to execute methods at their old locations

The Solution

This Roborazzi update replaces the old method calls and import statements with new ones compatible with ComposablePreviewScanner 0.7.0+. However, since these new method locations don't exist in ComposablePreviewScanner 0.6.x, you must update both libraries together.

⚠️ Required Action

If you use Roborazzi's Preview support, you must:

  • Update Roborazzi to this version
  • Update ComposablePreviewScanner to 0.7.0 or later

Both updates are required - updating only one will cause build or runtime errors.

Migration Steps

// Update both dependencies together
implementation "io.github.takahirom.roborazzi:roborazzi:1.49.0"
implementation "io.github.sergio-sastre.ComposablePreviewScanner:android:0.7.0" // or newer

Improved Error Detection

We've added clear build-time error messages to help you identify when this compatibility issue occurs, so you'll know exactly what needs to be updated instead of encountering cryptic runtime errors.

Common Update Scenarios

Scenario 1: Update only ComposablePreviewScanner to 0.7.0
NoSuchMethodError with old Roborazzi. Update Roborazzi to resolve.

Scenario 2: Update only Roborazzi
→ Compile-time error with clear message to update ComposablePreviewScanner ✅

Acknowledgments

... (truncated)

Commits
  • 921a3c1 Update gradle.properties
  • 211e4a4 Merge pull request #728 from takahirom/tm/increase-ci-timeout-50min
  • 3ffa857 Increase CI timeout to 50 minutes
  • 5639017 Merge pull request #727 from takahirom/tm/add-profile-to-store-screenshot-ci/...
  • f9d2ca8 Add profile flag to CompareScreenshot workflow
  • 5047aaf Fix spacing in workflow
  • 55912aa Add profile flag to storescreenshot ci
  • daf3ac1 Merge pull request #723 from takahirom/tm/centralize-compilesdk-version
  • 90423ee Merge branch 'main' into tm/centralize-compilesdk-version
  • abb453f Complete SDK centralization in integration tests
  • Additional commits viewable in compare view

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

Release notes

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

1.49.0

ComposablePreviewScanner 0.7.0 Compatibility Update

Breaking Change - Compatibility Update Required

This release addresses a breaking compatibility issue with ComposablePreviewScanner 0.7.0 that affects users of Roborazzi's Preview support feature.

The Problem

When using ComposablePreviewScanner 0.7.0 with previous versions of Roborazzi, you'll encounter NoSuchMethodError at runtime. This happens because:

  • Method relocation: ComposablePreviewScanner 0.7.0 moved methods from AndroidPreviewScreenshotIdBuilder to provide common PreviewScreenshotIdBuilder methods for Glance and Compose Multiplatform
  • Import mismatch: Previous Roborazzi versions contain generated code with outdated import statements
  • Runtime failure: Auto-generated Roborazzi tests from Previews crash when trying to execute methods at their old locations

The Solution

This Roborazzi update replaces the old method calls and import statements with new ones compatible with ComposablePreviewScanner 0.7.0+. However, since these new method locations don't exist in ComposablePreviewScanner 0.6.x, you must update both libraries together.

⚠️ Required Action

If you use Roborazzi's Preview support, you must:

  • Update Roborazzi to this version
  • Update ComposablePreviewScanner to 0.7.0 or later

Both updates are required - updating only one will cause build or runtime errors.

Migration Steps

// Update both dependencies together
implementation "io.github.takahirom.roborazzi:roborazzi:1.49.0"
implementation "io.github.sergio-sastre.ComposablePreviewScanner:android:0.7.0" // or newer

Improved Error Detection

We've added clear build-time error messages to help you identify when this compatibility issue occurs, so you'll know exactly what needs to be updated instead of encountering cryptic runtime errors.

Common Update Scenarios

Scenario 1: Update only ComposablePreviewScanner to 0.7.0
NoSuchMethodError with old Roborazzi. Update Roborazzi to resolve.

Scenario 2: Update only Roborazzi
→ Compile-time error with clear message to update ComposablePreviewScanner ✅

Acknowledgments

... (truncated)

Commits
  • 921a3c1 Update gradle.properties
  • 211e4a4 Merge pull request #728 from takahirom/tm/increase-ci-timeout-50min
  • 3ffa857 Increase CI timeout to 50 minutes
  • 5639017 Merge pull request #727 from takahirom/tm/add-profile-to-store-screenshot-ci/...
  • f9d2ca8 Add profile flag to CompareScreenshot workflow
  • 5047aaf Fix spacing in workflow
  • 55912aa Add profile flag to storescreenshot ci
  • daf3ac1 Merge pull request #723 from takahirom/tm/centralize-compilesdk-version
  • 90423ee Merge branch 'main' into tm/centralize-compilesdk-version
  • abb453f Complete SDK centralization in integration tests
  • 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)

Bumps `roborazzi` from 1.47.0 to 1.49.0.

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

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

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

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

Signed-off-by: dependabot[bot] <[email protected]>
@lihenggui lihenggui merged commit 458ac7e into main Aug 24, 2025
4 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/roborazzi-1.49.0 branch August 24, 2025 23:15
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