Skip to content

Commit

Permalink
Update roborazzi to v1.23.0 (#1526)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[io.github.takahirom.roborazzi](https://togithub.com/takahirom/roborazzi)
| plugin | minor | `1.22.2` -> `1.23.0` |
|
[io.github.takahirom.roborazzi:roborazzi-junit-rule](https://togithub.com/takahirom/roborazzi)
| dependencies | minor | `1.22.2` -> `1.23.0` |
|
[io.github.takahirom.roborazzi:roborazzi-compose](https://togithub.com/takahirom/roborazzi)
| dependencies | minor | `1.22.2` -> `1.23.0` |
|
[io.github.takahirom.roborazzi:roborazzi](https://togithub.com/takahirom/roborazzi)
| dependencies | minor | `1.22.2` -> `1.23.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>takahirom/roborazzi (io.github.takahirom.roborazzi)</summary>

###
[`v1.23.0`](https://togithub.com/takahirom/roborazzi/releases/tag/1.23.0)

[Compare
Source](https://togithub.com/takahirom/roborazzi/compare/1.22.2...1.23.0)

##### Breaking Changes to
`roborazzi.generateComposePreviewRobolectricTests.customTestQualifiedClassName`
Gradle Extension

We released
`roborazzi.generateComposePreviewRobolectricTests.customTestQualifiedClassName`
in the previous release `1.22.0`, allowing customization of preview test
behavior. We have since discovered that the interface of
RobolectricPreviewTest cannot adapt to Compose Multiplatform Preview
because RobolectricPreviewTest uses `AndroidPreviewInfo` from
[ComposablePreviewScanner](https://togithub.com/sergio-sastre/ComposablePreviewScanner),
which represents Android Compose Preview. To address this, we have added
a generic parameter to handle the annotation and renamed
RobolectricPreviewTest to ComposePreviewTester.

The Gradle extension property has been renamed:


`roborazzi.generateComposePreviewRobolectricTests.customTestQualifiedClassName`
->
`roborazzi.generateComposePreviewRobolectricTests.testerQualifiedClassName`

Old interface:

```kotlin
interface RobolectricPreviewTest {
  fun previews(vararg packages: String): List<ComposablePreview<AndroidPreviewInfo>>

  fun test(
    preview: ComposablePreview<AndroidPreviewInfo>,
  )
}
```

New interface:

```kotlin
interface ComposePreviewTester<T : Any> {
  fun previews(vararg packages: String): List<ComposablePreview<T>>

  fun test(
    preview: ComposablePreview<T>,
  )
}
```

##### What's Changed

- Rename ComposePreviewRobolectricTest to ComposePreviewTester to
support custom Preview annotation tests in Experimental Compose Preview
Support by [@&#8203;takahirom](https://togithub.com/takahirom) in
[https://github.com/takahirom/roborazzi/pull/438](https://togithub.com/takahirom/roborazzi/pull/438)
- \[Idea Plugin]Adjust some idea plugin behaviors by
[@&#8203;takahirom](https://togithub.com/takahirom) in
[https://github.com/takahirom/roborazzi/pull/431](https://togithub.com/takahirom/roborazzi/pull/431)
We haven't released this feature yet. Stay tuned!

**Full Changelog**:
takahirom/roborazzi@1.22.2...1.23.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjQzMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
  • Loading branch information
slack-oss-bot authored Jul 19, 2024
1 parent 62853ca commit 3f9f090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ okio = "3.9.0"
paparazzi = "1.3.4"
picnic = "0.7.0"
robolectric = "4.13"
roborazzi = "1.22.2"
roborazzi = "1.23.0"
skie = "0.8.2"
spotless = "6.23.3"
sqldelight = "2.0.2"
Expand Down

0 comments on commit 3f9f090

Please sign in to comment.