Skip to content

chore(deps): bump the android-test-tooling group with 4 updates#11

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/gradle/android-test-tooling-203a9171af
Closed

chore(deps): bump the android-test-tooling group with 4 updates#11
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/gradle/android-test-tooling-203a9171af

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown

Bumps the android-test-tooling group with 4 updates: io.github.takahirom.roborazzi:roborazzi, io.github.takahirom.roborazzi:roborazzi-compose, io.github.takahirom.roborazzi:roborazzi-junit-rule and io.github.takahirom.roborazzi.

Updates io.github.takahirom.roborazzi:roborazzi from 1.63.0 to 1.64.0

Release notes

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

1.64.0

New feature - Filtering previews by annotation

You can now control which Compose Previews are captured with annotationFilter.

To use the built-in @RoboPreviewExclude / @RoboPreviewInclude annotations, add the roborazzi-annotations dependency:

implementation("io.github.takahirom.roborazzi:roborazzi-annotations:[version]")

By default, previews annotated with @RoboPreviewExclude are skipped and everything else is captured:

@RoboPreviewExclude
@Preview
@Composable
fun WorkInProgressPreview() { /* not captured */ }

Set annotationFilter to RoboPreviewInclude to instead capture only previews annotated with @RoboPreviewInclude:

roborazzi {
  @OptIn(ExperimentalRoborazziApi::class)
  generateComposePreviewRobolectricTests {
    enable = true
    packages = listOf("com.example")
    annotationFilter = AnnotationFilter.Filter.RoboPreviewInclude
  }
}

You can also filter by your own annotations by passing their fully qualified class names:

// Set either one, not both
annotationFilter = AnnotationFilter.Exclude("com.example.MyExcludeAnnotation")
annotationFilter = AnnotationFilter.Include("com.example.MyIncludeAnnotation")

Thanks, @​sergio-sastre for your contribution. Thank you, @​alecarnevale, @​as6o for reporting this issue.

Bugfix - filter test image input to known extensions

What: Restrict the test task's tracked image input (roborazziImageInput) to known image extensions (png, gif, jpg, jpeg, webp), so unrelated files (e.g. .DS_Store) written by an OS indexer/IDE mid-snapshot can't trip Gradle 9's stricter input validation. Why: Gradle 9 hardened input-snapshot validation so that a file disappearing from a tracked directory between the listing and the content-hashing phases now hard-fails with Cannot access input property '$N' of task ... java.nio.file.NoSuchFileException. Thanks, @​boiler23 for letting me know this issue.

Bugfix - Fix z-order of same-type windows in captureScreenRoboImage

... (truncated)

Commits
  • 6cb9dbd Merge pull request #843 from takahirom/tm/fix-stacked-dialog-z-order
  • 916ccfd Update VERSION_NAME to 1.64.0
  • 52c7aa2 Fix z-order of same-type windows in captureScreenRoboImage
  • cc90b60 Merge pull request #818 from sergio-sastre/feature/issue_#785
  • fa2ee01 Merge branch 'main' into feature/issue_#785
  • 097e6e7 Merge pull request #841 from takahirom/tm/fix-dependency-diff-head-ref
  • f7ea3d2 Pin dependency-diff action to fork with base64 newline fix
  • 5977f12 Merge branch 'main' into feature/issue_#785
  • 9463a24 Document annotationFilter for preview test generation
  • 6ef531f Clarify AnnotationFilter KDoc and remove stray asterisk
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-compose from 1.63.0 to 1.64.0

Release notes

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

1.64.0

New feature - Filtering previews by annotation

You can now control which Compose Previews are captured with annotationFilter.

To use the built-in @RoboPreviewExclude / @RoboPreviewInclude annotations, add the roborazzi-annotations dependency:

implementation("io.github.takahirom.roborazzi:roborazzi-annotations:[version]")

By default, previews annotated with @RoboPreviewExclude are skipped and everything else is captured:

@RoboPreviewExclude
@Preview
@Composable
fun WorkInProgressPreview() { /* not captured */ }

Set annotationFilter to RoboPreviewInclude to instead capture only previews annotated with @RoboPreviewInclude:

roborazzi {
  @OptIn(ExperimentalRoborazziApi::class)
  generateComposePreviewRobolectricTests {
    enable = true
    packages = listOf("com.example")
    annotationFilter = AnnotationFilter.Filter.RoboPreviewInclude
  }
}

You can also filter by your own annotations by passing their fully qualified class names:

// Set either one, not both
annotationFilter = AnnotationFilter.Exclude("com.example.MyExcludeAnnotation")
annotationFilter = AnnotationFilter.Include("com.example.MyIncludeAnnotation")

Thanks, @​sergio-sastre for your contribution. Thank you, @​alecarnevale, @​as6o for reporting this issue.

Bugfix - filter test image input to known extensions

What: Restrict the test task's tracked image input (roborazziImageInput) to known image extensions (png, gif, jpg, jpeg, webp), so unrelated files (e.g. .DS_Store) written by an OS indexer/IDE mid-snapshot can't trip Gradle 9's stricter input validation. Why: Gradle 9 hardened input-snapshot validation so that a file disappearing from a tracked directory between the listing and the content-hashing phases now hard-fails with Cannot access input property '$N' of task ... java.nio.file.NoSuchFileException. Thanks, @​boiler23 for letting me know this issue.

Bugfix - Fix z-order of same-type windows in captureScreenRoboImage

... (truncated)

Commits
  • 6cb9dbd Merge pull request #843 from takahirom/tm/fix-stacked-dialog-z-order
  • 916ccfd Update VERSION_NAME to 1.64.0
  • 52c7aa2 Fix z-order of same-type windows in captureScreenRoboImage
  • cc90b60 Merge pull request #818 from sergio-sastre/feature/issue_#785
  • fa2ee01 Merge branch 'main' into feature/issue_#785
  • 097e6e7 Merge pull request #841 from takahirom/tm/fix-dependency-diff-head-ref
  • f7ea3d2 Pin dependency-diff action to fork with base64 newline fix
  • 5977f12 Merge branch 'main' into feature/issue_#785
  • 9463a24 Document annotationFilter for preview test generation
  • 6ef531f Clarify AnnotationFilter KDoc and remove stray asterisk
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-junit-rule from 1.63.0 to 1.64.0

Release notes

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

1.64.0

New feature - Filtering previews by annotation

You can now control which Compose Previews are captured with annotationFilter.

To use the built-in @RoboPreviewExclude / @RoboPreviewInclude annotations, add the roborazzi-annotations dependency:

implementation("io.github.takahirom.roborazzi:roborazzi-annotations:[version]")

By default, previews annotated with @RoboPreviewExclude are skipped and everything else is captured:

@RoboPreviewExclude
@Preview
@Composable
fun WorkInProgressPreview() { /* not captured */ }

Set annotationFilter to RoboPreviewInclude to instead capture only previews annotated with @RoboPreviewInclude:

roborazzi {
  @OptIn(ExperimentalRoborazziApi::class)
  generateComposePreviewRobolectricTests {
    enable = true
    packages = listOf("com.example")
    annotationFilter = AnnotationFilter.Filter.RoboPreviewInclude
  }
}

You can also filter by your own annotations by passing their fully qualified class names:

// Set either one, not both
annotationFilter = AnnotationFilter.Exclude("com.example.MyExcludeAnnotation")
annotationFilter = AnnotationFilter.Include("com.example.MyIncludeAnnotation")

Thanks, @​sergio-sastre for your contribution. Thank you, @​alecarnevale, @​as6o for reporting this issue.

Bugfix - filter test image input to known extensions

What: Restrict the test task's tracked image input (roborazziImageInput) to known image extensions (png, gif, jpg, jpeg, webp), so unrelated files (e.g. .DS_Store) written by an OS indexer/IDE mid-snapshot can't trip Gradle 9's stricter input validation. Why: Gradle 9 hardened input-snapshot validation so that a file disappearing from a tracked directory between the listing and the content-hashing phases now hard-fails with Cannot access input property '$N' of task ... java.nio.file.NoSuchFileException. Thanks, @​boiler23 for letting me know this issue.

Bugfix - Fix z-order of same-type windows in captureScreenRoboImage

... (truncated)

Commits
  • 6cb9dbd Merge pull request #843 from takahirom/tm/fix-stacked-dialog-z-order
  • 916ccfd Update VERSION_NAME to 1.64.0
  • 52c7aa2 Fix z-order of same-type windows in captureScreenRoboImage
  • cc90b60 Merge pull request #818 from sergio-sastre/feature/issue_#785
  • fa2ee01 Merge branch 'main' into feature/issue_#785
  • 097e6e7 Merge pull request #841 from takahirom/tm/fix-dependency-diff-head-ref
  • f7ea3d2 Pin dependency-diff action to fork with base64 newline fix
  • 5977f12 Merge branch 'main' into feature/issue_#785
  • 9463a24 Document annotationFilter for preview test generation
  • 6ef531f Clarify AnnotationFilter KDoc and remove stray asterisk
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi from 1.63.0 to 1.64.0

Release notes

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

1.64.0

New feature - Filtering previews by annotation

You can now control which Compose Previews are captured with annotationFilter.

To use the built-in @RoboPreviewExclude / @RoboPreviewInclude annotations, add the roborazzi-annotations dependency:

implementation("io.github.takahirom.roborazzi:roborazzi-annotations:[version]")

By default, previews annotated with @RoboPreviewExclude are skipped and everything else is captured:

@RoboPreviewExclude
@Preview
@Composable
fun WorkInProgressPreview() { /* not captured */ }

Set annotationFilter to RoboPreviewInclude to instead capture only previews annotated with @RoboPreviewInclude:

roborazzi {
  @OptIn(ExperimentalRoborazziApi::class)
  generateComposePreviewRobolectricTests {
    enable = true
    packages = listOf("com.example")
    annotationFilter = AnnotationFilter.Filter.RoboPreviewInclude
  }
}

You can also filter by your own annotations by passing their fully qualified class names:

// Set either one, not both
annotationFilter = AnnotationFilter.Exclude("com.example.MyExcludeAnnotation")
annotationFilter = AnnotationFilter.Include("com.example.MyIncludeAnnotation")

Thanks, @​sergio-sastre for your contribution. Thank you, @​alecarnevale, @​as6o for reporting this issue.

Bugfix - filter test image input to known extensions

What: Restrict the test task's tracked image input (roborazziImageInput) to known image extensions (png, gif, jpg, jpeg, webp), so unrelated files (e.g. .DS_Store) written by an OS indexer/IDE mid-snapshot can't trip Gradle 9's stricter input validation. Why: Gradle 9 hardened input-snapshot validation so that a file disappearing from a tracked directory between the listing and the content-hashing phases now hard-fails with Cannot access input property '$N' of task ... java.nio.file.NoSuchFileException. Thanks, @​boiler23 for letting me know this issue.

Bugfix - Fix z-order of same-type windows in captureScreenRoboImage

... (truncated)

Commits
  • 6cb9dbd Merge pull request #843 from takahirom/tm/fix-stacked-dialog-z-order
  • 916ccfd Update VERSION_NAME to 1.64.0
  • 52c7aa2 Fix z-order of same-type windows in captureScreenRoboImage
  • cc90b60 Merge pull request #818 from sergio-sastre/feature/issue_#785
  • fa2ee01 Merge branch 'main' into feature/issue_#785
  • 097e6e7 Merge pull request #841 from takahirom/tm/fix-dependency-diff-head-ref
  • f7ea3d2 Pin dependency-diff action to fork with base64 newline fix
  • 5977f12 Merge branch 'main' into feature/issue_#785
  • 9463a24 Document annotationFilter for preview test generation
  • 6ef531f Clarify AnnotationFilter KDoc and remove stray asterisk
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-compose from 1.63.0 to 1.64.0

Release notes

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

1.64.0

New feature - Filtering previews by annotation

You can now control which Compose Previews are captured with annotationFilter.

To use the built-in @RoboPreviewExclude / @RoboPreviewInclude annotations, add the roborazzi-annotations dependency:

implementation("io.github.takahirom.roborazzi:roborazzi-annotations:[version]")

By default, previews annotated with @RoboPreviewExclude are skipped and everything else is captured:

@RoboPreviewExclude
@Preview
@Composable
fun WorkInProgressPreview() { /* not captured */ }

Set annotationFilter to RoboPreviewInclude to instead capture only previews annotated with @RoboPreviewInclude:

roborazzi {
  @OptIn(ExperimentalRoborazziApi::class)
  generateComposePreviewRobolectricTests {
    enable = true
    packages = listOf("com.example")
    annotationFilter = AnnotationFilter.Filter.RoboPreviewInclude
  }
}

You can also filter by your own annotations by passing their fully qualified class names:

// Set either one, not both
annotationFilter = AnnotationFilter.Exclude("com.example.MyExcludeAnnotation")
annotationFilter = AnnotationFilter.Include("com.example.MyIncludeAnnotation")

Thanks, @​sergio-sastre for your contribution. Thank you, @​alecarnevale, @​as6o for reporting this issue.

Bugfix - filter test image input to known extensions

What: Restrict the test task's tracked image input (roborazziImageInput) to known image extensions (png, gif, jpg, jpeg, webp), so unrelated files (e.g. .DS_Store) written by an OS indexer/IDE mid-snapshot can't trip Gradle 9's stricter input validation. Why: Gradle 9 hardened input-snapshot validation so that a file disappearing from a tracked directory between the listing and the content-hashing phases now hard-fails with Cannot access input property '$N' of task ... java.nio.file.NoSuchFileException. Thanks, @​boiler23 for letting me know this issue.

Bugfix - Fix z-order of same-type windows in captureScreenRoboImage

... (truncated)

Commits
  • 6cb9dbd Merge pull request #843 from takahirom/tm/fix-stacked-dialog-z-order
  • 916ccfd Update VERSION_NAME to 1.64.0
  • 52c7aa2 Fix z-order of same-type windows in captureScreenRoboImage
  • cc90b60 Merge pull request #818 from sergio-sastre/feature/issue_#785
  • fa2ee01 Merge branch 'main' into feature/issue_#785
  • 097e6e7 Merge pull request #841 from takahirom/tm/fix-dependency-diff-head-ref
  • f7ea3d2 Pin dependency-diff action to fork with base64 newline fix
  • 5977f12 Merge branch 'main' into feature/issue_#785
  • 9463a24 Document annotationFilter for preview test generation
  • 6ef531f Clarify AnnotationFilter KDoc and remove stray asterisk
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi:roborazzi-junit-rule from 1.63.0 to 1.64.0

Release notes

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

1.64.0

New feature - Filtering previews by annotation

You can now control which Compose Previews are captured with annotationFilter.

To use the built-in @RoboPreviewExclude / @RoboPreviewInclude annotations, add the roborazzi-annotations dependency:

implementation("io.github.takahirom.roborazzi:roborazzi-annotations:[version]")

By default, previews annotated with @RoboPreviewExclude are skipped and everything else is captured:

@RoboPreviewExclude
@Preview
@Composable
fun WorkInProgressPreview() { /* not captured */ }

Set annotationFilter to RoboPreviewInclude to instead capture only previews annotated with @RoboPreviewInclude:

roborazzi {
  @OptIn(ExperimentalRoborazziApi::class)
  generateComposePreviewRobolectricTests {
    enable = true
    packages = listOf("com.example")
    annotationFilter = AnnotationFilter.Filter.RoboPreviewInclude
  }
}

You can also filter by your own annotations by passing their fully qualified class names:

// Set either one, not both
annotationFilter = AnnotationFilter.Exclude("com.example.MyExcludeAnnotation")
annotationFilter = AnnotationFilter.Include("com.example.MyIncludeAnnotation")

Thanks, @​sergio-sastre for your contribution. Thank you, @​alecarnevale, @​as6o for reporting this issue.

Bugfix - filter test image input to known extensions

What: Restrict the test task's tracked image input (roborazziImageInput) to known image extensions (png, gif, jpg, jpeg, webp), so unrelated files (e.g. .DS_Store) written by an OS indexer/IDE mid-snapshot can't trip Gradle 9's stricter input validation. Why: Gradle 9 hardened input-snapshot validation so that a file disappearing from a tracked directory between the listing and the content-hashing phases now hard-fails with Cannot access input property '$N' of task ... java.nio.file.NoSuchFileException. Thanks, @​boiler23 for letting me know this issue.

Bugfix - Fix z-order of same-type windows in captureScreenRoboImage

... (truncated)

Commits
  • 6cb9dbd Merge pull request #843 from takahirom/tm/fix-stacked-dialog-z-order
  • 916ccfd Update VERSION_NAME to 1.64.0
  • 52c7aa2 Fix z-order of same-type windows in captureScreenRoboImage
  • cc90b60 Merge pull request #818 from sergio-sastre/feature/issue_#785
  • fa2ee01 Merge branch 'main' into feature/issue_#785
  • 097e6e7 Merge pull request #841 from takahirom/tm/fix-dependency-diff-head-ref
  • f7ea3d2 Pin dependency-diff action to fork with base64 newline fix
  • 5977f12 Merge branch 'main' into feature/issue_#785
  • 9463a24 Document annotationFilter for preview test generation
  • 6ef531f Clarify AnnotationFilter KDoc and remove stray asterisk
  • Additional commits viewable in compare view

Updates io.github.takahirom.roborazzi from 1.63.0 to 1.64.0

Release notes

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

1.64.0

New feature - Filtering previews by annotation

You can now control which Compose Previews are captured with annotationFilter.

To use the built-in @RoboPreviewExclude / @RoboPreviewInclude annotations, add the roborazzi-annotations dependency:

implementation("io.github.takahirom.roborazzi:roborazzi-annotations:[version]")

By default, previews annotated with @RoboPreviewExclude are skipped and everything else is captured:

@RoboPreviewExclude
@Preview
@Composable
fun WorkInProgressPreview() { /* not captured */ }

Set annotationFilter to RoboPreviewInclude to instead capture only previews annotated with @RoboPreviewInclude:

roborazzi {
  @OptIn(ExperimentalRoborazziApi::class)
  generateComposePreviewRobolectricTests {
    enable = true
    packages = listOf("com.example")
    annotationFilter = AnnotationFilter.Filter.RoboPreviewInclude
  }
}

You can also filter by your own annotations by passing their fully qualified class names:

// Set either one, not both
annotationFilter = AnnotationFilter.Exclude("com.example.MyExcludeAnnotation")
annotationFilter = AnnotationFilter.Include("com.example.MyIncludeAnnotation")

Thanks, @​sergio-sastre for your contribution. Thank you, @​alecarnevale, @​as6o for reporting this issue.

Bugfix - filter test image input to known extensions

What: Restrict the test task's tracked image input (roborazziImageInput) to known image extensions (png, gif, jpg, jpeg, webp), so unrelated files (e.g. .DS_Store) written by an OS indexer/IDE mid-snapshot can't trip Gradle 9's stricter input validation. Why: Gradle 9 hardened input-snapshot validation so that a file disappearing from a tracked directory between the listing and the content-hashing phases now hard-fails with Cannot access input property '$N' of task ... java.nio.file.NoSuchFileException. Thanks, @​boiler23 for letting me know this issue.

Bugfix - Fix z-order of same-type windows in captureScreenRoboImage

... (truncated)

Commits
  • 6cb9dbd Merge pull request #843 from takahirom/tm/fix-stacked-dialog-z-order
  • 916ccfd Update VERSION_NAME to 1.64.0
  • 52c7aa2 Fix z-order of same-type windows in captureScreenRoboImage
  • cc90b60 Merge pull request #818 from sergio-sastre/feature/issue_#785
  • fa2ee01 Merge branch 'main' into feature/issue_#785
  • 097e6e7 Merge pull request #841 from takahirom/tm/fix-dependency-diff-head-ref
  • f7ea3d2 Pin dependency-diff action to fork with base64 newline fix
  • 5977f12 Merge branch 'main' into feature/issue_#785
  • 9463a24 Document annotationFilter for preview test generation
  • 6ef531f Clarify AnnotationFilter KDoc and remove stray asterisk
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the android-test-tooling group with 4 updates: [io.github.takahirom.roborazzi:roborazzi](https://github.com/takahirom/roborazzi), [io.github.takahirom.roborazzi:roborazzi-compose](https://github.com/takahirom/roborazzi), [io.github.takahirom.roborazzi:roborazzi-junit-rule](https://github.com/takahirom/roborazzi) and [io.github.takahirom.roborazzi](https://github.com/takahirom/roborazzi).


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

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

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

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

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

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

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

---
updated-dependencies:
- dependency-name: io.github.takahirom.roborazzi:roborazzi
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: android-test-tooling
- dependency-name: io.github.takahirom.roborazzi:roborazzi-compose
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: android-test-tooling
- dependency-name: io.github.takahirom.roborazzi:roborazzi-junit-rule
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: android-test-tooling
- dependency-name: io.github.takahirom.roborazzi
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: android-test-tooling
- dependency-name: io.github.takahirom.roborazzi:roborazzi-compose
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: android-test-tooling
- dependency-name: io.github.takahirom.roborazzi:roborazzi-junit-rule
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: android-test-tooling
- dependency-name: io.github.takahirom.roborazzi
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: android-test-tooling
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jun 15, 2026
@SysAdminDoc SysAdminDoc deleted the dependabot/gradle/android-test-tooling-203a9171af branch June 15, 2026 14:08
@dependabot @github

dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

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.

1 participant