Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 [@​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 [@​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