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

Bump roborazzi from 1.5.0 to 1.6.0 #1894

Merged
merged 1 commit into from
Oct 13, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 12, 2023

Bumps roborazzi from 1.5.0 to 1.6.0.
Updates io.github.takahirom.roborazzi:roborazzi-gradle-plugin from 1.5.0 to 1.6.0

Release notes

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

1.6.0

Experimental feature: Compose Desktop support

Roborazzi supports Compose Desktop. You can use Roborazzi with Compose Desktop as follows:

Gradle settings

plugins {
  kotlin("multiplatform")
  id("org.jetbrains.compose")
  id("io.github.takahirom.roborazzi")
}
kotlin {
// You can use your source set name
jvm("desktop")
sourceSets {
...
val desktopTest by getting {
dependencies {
implementation(project("io.github.takahirom.roborazzi:roborazzi-compose-desktop:[1.6.0-alpha-2 or higher]"))
implementation(kotlin("test"))
}
}
...
// Roborazzi Desktop support uses Context Receivers
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
freeCompilerArgs += "-Xcontext-receivers"
}
}

Test target Composable function

@Composable
fun App() {
  var text by remember { mutableStateOf("Hello, World!") }
MaterialTheme {
Button(
modifier = Modifier.testTag("button"),
onClick = {
text = "Hello, Desktop!"
}) {
Text(
style = MaterialTheme.typography.h2,
</tr></table>

... (truncated)

Commits
  • 41f7572 1.6.0
  • 840c110 1.6.0-rc-1
  • c380089 1.6.0-alpha-3
  • 05116d6 Merge pull request #141 from takahirom/takahirom/fix-the-issue-that-roborazzi...
  • 6b37b51 Fix the issue where Roborazzi changes the timing of the configuration
  • 67d7ef0 Add image for README
  • bac7a7a Fix order of script in README
  • e16fdaf Add explanation about JVM plugin for README
  • 0f082f0 Fix README
  • 7b240ca Merge pull request #138 from takahirom/takahirom/support-kmp-plugin/2023-08-12
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi from 1.5.0 to 1.6.0

Release notes

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

1.6.0

Experimental feature: Compose Desktop support

Roborazzi supports Compose Desktop. You can use Roborazzi with Compose Desktop as follows:

Gradle settings

plugins {
  kotlin("multiplatform")
  id("org.jetbrains.compose")
  id("io.github.takahirom.roborazzi")
}
kotlin {
// You can use your source set name
jvm("desktop")
sourceSets {
...
val desktopTest by getting {
dependencies {
implementation(project("io.github.takahirom.roborazzi:roborazzi-compose-desktop:[1.6.0-alpha-2 or higher]"))
implementation(kotlin("test"))
}
}
...
// Roborazzi Desktop support uses Context Receivers
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
freeCompilerArgs += "-Xcontext-receivers"
}
}

Test target Composable function

@Composable
fun App() {
  var text by remember { mutableStateOf("Hello, World!") }
MaterialTheme {
Button(
modifier = Modifier.testTag("button"),
onClick = {
text = "Hello, Desktop!"
}) {
Text(
style = MaterialTheme.typography.h2,
</tr></table>

... (truncated)

Commits
  • 41f7572 1.6.0
  • 840c110 1.6.0-rc-1
  • c380089 1.6.0-alpha-3
  • 05116d6 Merge pull request #141 from takahirom/takahirom/fix-the-issue-that-roborazzi...
  • 6b37b51 Fix the issue where Roborazzi changes the timing of the configuration
  • 67d7ef0 Add image for README
  • bac7a7a Fix order of script in README
  • e16fdaf Add explanation about JVM plugin for README
  • 0f082f0 Fix README
  • 7b240ca Merge pull request #138 from takahirom/takahirom/support-kmp-plugin/2023-08-12
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-compose from 1.5.0 to 1.6.0

Release notes

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

1.6.0

Experimental feature: Compose Desktop support

Roborazzi supports Compose Desktop. You can use Roborazzi with Compose Desktop as follows:

Gradle settings

plugins {
  kotlin("multiplatform")
  id("org.jetbrains.compose")
  id("io.github.takahirom.roborazzi")
}
kotlin {
// You can use your source set name
jvm("desktop")
sourceSets {
...
val desktopTest by getting {
dependencies {
implementation(project("io.github.takahirom.roborazzi:roborazzi-compose-desktop:[1.6.0-alpha-2 or higher]"))
implementation(kotlin("test"))
}
}
...
// Roborazzi Desktop support uses Context Receivers
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
freeCompilerArgs += "-Xcontext-receivers"
}
}

Test target Composable function

@Composable
fun App() {
  var text by remember { mutableStateOf("Hello, World!") }
MaterialTheme {
Button(
modifier = Modifier.testTag("button"),
onClick = {
text = "Hello, Desktop!"
}) {
Text(
style = MaterialTheme.typography.h2,
</tr></table>

... (truncated)

Commits
  • 41f7572 1.6.0
  • 840c110 1.6.0-rc-1
  • c380089 1.6.0-alpha-3
  • 05116d6 Merge pull request #141 from takahirom/takahirom/fix-the-issue-that-roborazzi...
  • 6b37b51 Fix the issue where Roborazzi changes the timing of the configuration
  • 67d7ef0 Add image for README
  • bac7a7a Fix order of script in README
  • e16fdaf Add explanation about JVM plugin for README
  • 0f082f0 Fix README
  • 7b240ca Merge pull request #138 from takahirom/takahirom/support-kmp-plugin/2023-08-12
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-junit-rule from 1.5.0 to 1.6.0

Release notes

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

1.6.0

Experimental feature: Compose Desktop support

Roborazzi supports Compose Desktop. You can use Roborazzi with Compose Desktop as follows:

Gradle settings

plugins {
  kotlin("multiplatform")
  id("org.jetbrains.compose")
  id("io.github.takahirom.roborazzi")
}
kotlin {
// You can use your source set name
jvm("desktop")
sourceSets {
...
val desktopTest by getting {
dependencies {
implementation(project("io.github.takahirom.roborazzi:roborazzi-compose-desktop:[1.6.0-alpha-2 or higher]"))
implementation(kotlin("test"))
}
}
...
// Roborazzi Desktop support uses Context Receivers
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
freeCompilerArgs += "-Xcontext-receivers"
}
}

Test target Composable function

@Composable
fun App() {
  var text by remember { mutableStateOf("Hello, World!") }
MaterialTheme {
Button(
modifier = Modifier.testTag("button"),
onClick = {
text = "Hello, Desktop!"
}) {
Text(
style = MaterialTheme.typography.h2,
</tr></table>

... (truncated)

Commits
  • 41f7572 1.6.0
  • 840c110 1.6.0-rc-1
  • c380089 1.6.0-alpha-3
  • 05116d6 Merge pull request #141 from takahirom/takahirom/fix-the-issue-that-roborazzi...
  • 6b37b51 Fix the issue where Roborazzi changes the timing of the configuration
  • 67d7ef0 Add image for README
  • bac7a7a Fix order of script in README
  • e16fdaf Add explanation about JVM plugin for README
  • 0f082f0 Fix README
  • 7b240ca Merge pull request #138 from takahirom/takahirom/support-kmp-plugin/2023-08-12
  • 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.5.0 to 1.6.0.

Updates `io.github.takahirom.roborazzi:roborazzi-gradle-plugin` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/takahirom/roborazzi/releases)
- [Commits](takahirom/roborazzi@1.5.0...1.6.0)

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

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

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

---
updated-dependencies:
- dependency-name: io.github.takahirom.roborazzi:roborazzi-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
- 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-junit-rule
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@colinrtwhite colinrtwhite merged commit eb86ecf into main Oct 13, 2023
7 checks passed
@colinrtwhite colinrtwhite deleted the dependabot/gradle/roborazzi-1.6.0 branch October 13, 2023 18:04
colinrtwhite added a commit that referenced this pull request Oct 19, 2023
* main:
  Bump compose from 1.5.3 to 1.5.4 (#1900)
  Bump androidx.benchmark:benchmark-macro-junit4 from 1.2.0-rc02 to 1.2.0 (#1901)
  Bump androidx.recyclerview:recyclerview from 1.3.1 to 1.3.2 (#1902)
  Bump org.jetbrains.dokka from 1.9.0 to 1.9.10 (#1896)
  Bump okhttp from 4.11.0 to 4.12.0 (#1899)
  Bump roborazzi from 1.5.0 to 1.6.0 (#1894)
  Bump androidx.benchmark:benchmark-macro-junit4 (#1887)
  Bump com.google.android.material:material from 1.9.0 to 1.10.0 (#1886)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant