Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump roborazzi from 1.28.0 to 1.32.2 in /zeapp #431

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 15, 2024

Bumps roborazzi from 1.28.0 to 1.32.2.
Updates io.github.takahirom.roborazzi:roborazzi from 1.28.0 to 1.32.2

Release notes

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

1.32.2

WebP Image Comparison Improvements

Improved handling for transparent pixels in WebP image comparisons. Previously, transparent pixels in WebP images were sometimes returned with unexpected color values (e.g., r = 1, g = 0, b = 0, a = 0), which caused inconsistencies in image comparisons. The comparison logic now correctly handles transparent pixels by interpreting them as fully transparent black (r = 0, g = 0, b = 0, a = 0) to ensure consistent results across comparisons.

Special thanks to @​ArcaNO93 for identifying and reporting this issue!

What's Changed

Full Changelog: takahirom/roborazzi@1.32.1...1.32.2

1.32.1

Experimental WebP support and other image formats

Now, you can set roborazzi.record.image.extension to webp in your gradle.properties file to generate WebP images.

roborazzi.record.image.extension=webp

To enable WebP support, add testImplementation("io.github.darkxanter:webp-imageio:0.3.3") to your build.gradle.kts file. WebP is a lossy image format by default, which can make managing image differences challenging. To address this, we provide a lossless WebP image feature. WebP lossless images are reported to be 26% smaller in size compared to PNGs.

onView(ViewMatchers.withId(R.id.textview_first))
  .captureRoboImage(
    roborazziOptions = RoborazziOptions(
      recordOptions = RoborazziOptions.RecordOptions(
        imageIoFormat = LosslessWebPImageIoFormat(),
      ),
    )
  )

You can also use other image formats by implementing your own AwtImageWriter and AwtImageLoader.

data class JvmImageIoFormat(
  val awtImageWriter: AwtImageWriter,
  val awtImageLoader: AwtImageLoader
) : ImageIoFormat

Thank you, @​ArcaNO93, for providing this suggestion and the code review!

Adjustments to AI-Powered Image Assertion

... (truncated)

Commits
  • 7e37f91 Merge pull request #543 from takahirom/renovate/gradle-8.x
  • d3ef32d 1.32.2
  • 48cd042 Merge pull request #547 from takahirom/takahirom/fix-webp-comparison/2024-11-08
  • 4343fc8 Fix WebP comparison issue with transparent colors
  • 62a9c21 Add a failing test with WebP comparison
  • 784b7d7 1.32.1
  • 5f0062d Merge pull request #545 from takahirom/takahirom/remove-api-key-from-log/2024...
  • cc4ae0b Remove API key from log when using loggingEnabled
  • 01f7df8 Merge pull request #544 from takahirom/takahirom/make-RoborazziContextImpl-op...
  • 21745fe Make RoborazziContextImpl.options ExperimentalRoborazziApi
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-compose from 1.28.0 to 1.32.2

Release notes

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

1.32.2

WebP Image Comparison Improvements

Improved handling for transparent pixels in WebP image comparisons. Previously, transparent pixels in WebP images were sometimes returned with unexpected color values (e.g., r = 1, g = 0, b = 0, a = 0), which caused inconsistencies in image comparisons. The comparison logic now correctly handles transparent pixels by interpreting them as fully transparent black (r = 0, g = 0, b = 0, a = 0) to ensure consistent results across comparisons.

Special thanks to @​ArcaNO93 for identifying and reporting this issue!

What's Changed

Full Changelog: takahirom/roborazzi@1.32.1...1.32.2

1.32.1

Experimental WebP support and other image formats

Now, you can set roborazzi.record.image.extension to webp in your gradle.properties file to generate WebP images.

roborazzi.record.image.extension=webp

To enable WebP support, add testImplementation("io.github.darkxanter:webp-imageio:0.3.3") to your build.gradle.kts file. WebP is a lossy image format by default, which can make managing image differences challenging. To address this, we provide a lossless WebP image feature. WebP lossless images are reported to be 26% smaller in size compared to PNGs.

onView(ViewMatchers.withId(R.id.textview_first))
  .captureRoboImage(
    roborazziOptions = RoborazziOptions(
      recordOptions = RoborazziOptions.RecordOptions(
        imageIoFormat = LosslessWebPImageIoFormat(),
      ),
    )
  )

You can also use other image formats by implementing your own AwtImageWriter and AwtImageLoader.

data class JvmImageIoFormat(
  val awtImageWriter: AwtImageWriter,
  val awtImageLoader: AwtImageLoader
) : ImageIoFormat

Thank you, @​ArcaNO93, for providing this suggestion and the code review!

Adjustments to AI-Powered Image Assertion

... (truncated)

Commits
  • 7e37f91 Merge pull request #543 from takahirom/renovate/gradle-8.x
  • d3ef32d 1.32.2
  • 48cd042 Merge pull request #547 from takahirom/takahirom/fix-webp-comparison/2024-11-08
  • 4343fc8 Fix WebP comparison issue with transparent colors
  • 62a9c21 Add a failing test with WebP comparison
  • 784b7d7 1.32.1
  • 5f0062d Merge pull request #545 from takahirom/takahirom/remove-api-key-from-log/2024...
  • cc4ae0b Remove API key from log when using loggingEnabled
  • 01f7df8 Merge pull request #544 from takahirom/takahirom/make-RoborazziContextImpl-op...
  • 21745fe Make RoborazziContextImpl.options ExperimentalRoborazziApi
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-compose-desktop from 1.28.0 to 1.32.2

Release notes

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

1.32.2

WebP Image Comparison Improvements

Improved handling for transparent pixels in WebP image comparisons. Previously, transparent pixels in WebP images were sometimes returned with unexpected color values (e.g., r = 1, g = 0, b = 0, a = 0), which caused inconsistencies in image comparisons. The comparison logic now correctly handles transparent pixels by interpreting them as fully transparent black (r = 0, g = 0, b = 0, a = 0) to ensure consistent results across comparisons.

Special thanks to @​ArcaNO93 for identifying and reporting this issue!

What's Changed

Full Changelog: takahirom/roborazzi@1.32.1...1.32.2

1.32.1

Experimental WebP support and other image formats

Now, you can set roborazzi.record.image.extension to webp in your gradle.properties file to generate WebP images.

roborazzi.record.image.extension=webp

To enable WebP support, add testImplementation("io.github.darkxanter:webp-imageio:0.3.3") to your build.gradle.kts file. WebP is a lossy image format by default, which can make managing image differences challenging. To address this, we provide a lossless WebP image feature. WebP lossless images are reported to be 26% smaller in size compared to PNGs.

onView(ViewMatchers.withId(R.id.textview_first))
  .captureRoboImage(
    roborazziOptions = RoborazziOptions(
      recordOptions = RoborazziOptions.RecordOptions(
        imageIoFormat = LosslessWebPImageIoFormat(),
      ),
    )
  )

You can also use other image formats by implementing your own AwtImageWriter and AwtImageLoader.

data class JvmImageIoFormat(
  val awtImageWriter: AwtImageWriter,
  val awtImageLoader: AwtImageLoader
) : ImageIoFormat

Thank you, @​ArcaNO93, for providing this suggestion and the code review!

Adjustments to AI-Powered Image Assertion

... (truncated)

Commits
  • 7e37f91 Merge pull request #543 from takahirom/renovate/gradle-8.x
  • d3ef32d 1.32.2
  • 48cd042 Merge pull request #547 from takahirom/takahirom/fix-webp-comparison/2024-11-08
  • 4343fc8 Fix WebP comparison issue with transparent colors
  • 62a9c21 Add a failing test with WebP comparison
  • 784b7d7 1.32.1
  • 5f0062d Merge pull request #545 from takahirom/takahirom/remove-api-key-from-log/2024...
  • cc4ae0b Remove API key from log when using loggingEnabled
  • 01f7df8 Merge pull request #544 from takahirom/takahirom/make-RoborazziContextImpl-op...
  • 21745fe Make RoborazziContextImpl.options ExperimentalRoborazziApi
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-junit-rule from 1.28.0 to 1.32.2

Release notes

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

1.32.2

WebP Image Comparison Improvements

Improved handling for transparent pixels in WebP image comparisons. Previously, transparent pixels in WebP images were sometimes returned with unexpected color values (e.g., r = 1, g = 0, b = 0, a = 0), which caused inconsistencies in image comparisons. The comparison logic now correctly handles transparent pixels by interpreting them as fully transparent black (r = 0, g = 0, b = 0, a = 0) to ensure consistent results across comparisons.

Special thanks to @​ArcaNO93 for identifying and reporting this issue!

What's Changed

Full Changelog: takahirom/roborazzi@1.32.1...1.32.2

1.32.1

Experimental WebP support and other image formats

Now, you can set roborazzi.record.image.extension to webp in your gradle.properties file to generate WebP images.

roborazzi.record.image.extension=webp

To enable WebP support, add testImplementation("io.github.darkxanter:webp-imageio:0.3.3") to your build.gradle.kts file. WebP is a lossy image format by default, which can make managing image differences challenging. To address this, we provide a lossless WebP image feature. WebP lossless images are reported to be 26% smaller in size compared to PNGs.

onView(ViewMatchers.withId(R.id.textview_first))
  .captureRoboImage(
    roborazziOptions = RoborazziOptions(
      recordOptions = RoborazziOptions.RecordOptions(
        imageIoFormat = LosslessWebPImageIoFormat(),
      ),
    )
  )

You can also use other image formats by implementing your own AwtImageWriter and AwtImageLoader.

data class JvmImageIoFormat(
  val awtImageWriter: AwtImageWriter,
  val awtImageLoader: AwtImageLoader
) : ImageIoFormat

Thank you, @​ArcaNO93, for providing this suggestion and the code review!

Adjustments to AI-Powered Image Assertion

... (truncated)

Commits
  • 7e37f91 Merge pull request #543 from takahirom/renovate/gradle-8.x
  • d3ef32d 1.32.2
  • 48cd042 Merge pull request #547 from takahirom/takahirom/fix-webp-comparison/2024-11-08
  • 4343fc8 Fix WebP comparison issue with transparent colors
  • 62a9c21 Add a failing test with WebP comparison
  • 784b7d7 1.32.1
  • 5f0062d Merge pull request #545 from takahirom/takahirom/remove-api-key-from-log/2024...
  • cc4ae0b Remove API key from log when using loggingEnabled
  • 01f7df8 Merge pull request #544 from takahirom/takahirom/make-RoborazziContextImpl-op...
  • 21745fe Make RoborazziContextImpl.options ExperimentalRoborazziApi
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi from 1.28.0 to 1.32.2

Release notes

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

1.32.2

WebP Image Comparison Improvements

Improved handling for transparent pixels in WebP image comparisons. Previously, transparent pixels in WebP images were sometimes returned with unexpected color values (e.g., r = 1, g = 0, b = 0, a = 0), which caused inconsistencies in image comparisons. The comparison logic now correctly handles transparent pixels by interpreting them as fully transparent black (r = 0, g = 0, b = 0, a = 0) to ensure consistent results across comparisons.

Special thanks to @​ArcaNO93 for identifying and reporting this issue!

What's Changed

Full Changelog: takahirom/roborazzi@1.32.1...1.32.2

1.32.1

Experimental WebP support and other image formats

Now, you can set roborazzi.record.image.extension to webp in your gradle.properties file to generate WebP images.

roborazzi.record.image.extension=webp

To enable WebP support, add testImplementation("io.github.darkxanter:webp-imageio:0.3.3") to your build.gradle.kts file. WebP is a lossy image format by default, which can make managing image differences challenging. To address this, we provide a lossless WebP image feature. WebP lossless images are reported to be 26% smaller in size compared to PNGs.

onView(ViewMatchers.withId(R.id.textview_first))
  .captureRoboImage(
    roborazziOptions = RoborazziOptions(
      recordOptions = RoborazziOptions.RecordOptions(
        imageIoFormat = LosslessWebPImageIoFormat(),
      ),
    )
  )

You can also use other image formats by implementing your own AwtImageWriter and AwtImageLoader.

data class JvmImageIoFormat(
  val awtImageWriter: AwtImageWriter,
  val awtImageLoader: AwtImageLoader
) : ImageIoFormat

Thank you, @​ArcaNO93, for providing this suggestion and the code review!

Adjustments to AI-Powered Image Assertion

... (truncated)

Commits
  • 7e37f91 Merge pull request #543 from takahirom/renovate/gradle-8.x
  • d3ef32d 1.32.2
  • 48cd042 Merge pull request #547 from takahirom/takahirom/fix-webp-comparison/2024-11-08
  • 4343fc8 Fix WebP comparison issue with transparent colors
  • 62a9c21 Add a failing test with WebP comparison
  • 784b7d7 1.32.1
  • 5f0062d Merge pull request #545 from takahirom/takahirom/remove-api-key-from-log/2024...
  • cc4ae0b Remove API key from log when using loggingEnabled
  • 01f7df8 Merge pull request #544 from takahirom/takahirom/make-RoborazziContextImpl-op...
  • 21745fe Make RoborazziContextImpl.options ExperimentalRoborazziApi
  • 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.28.0 to 1.32.2.

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

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

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

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

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

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 15, 2024
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.

0 participants