Skip to content

Bump the dependencies group with 2 updates#263

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/bazel/dependencies-c629697254
Closed

Bump the dependencies group with 2 updates#263
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/bazel/dependencies-c629697254

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 28, 2026

Bumps the dependencies group with 2 updates: rules_android and rules_jvm_external.

Updates rules_android from 0.7.1 to 0.7.2

Release notes

Sourced from rules_android's releases.

v0.7.2

Using Bzlmod with Bazel 6 or greater

  1. (Bazel 6 only) Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
# See examples/basicapp/MODULE.bazel.
bazel_dep(name = "rules_android", version = "0.7.2")
remote_android_extensions = use_extension(
    "@rules_android//bzlmod_extensions:android_extensions.bzl",
    "remote_android_tools_extensions")
use_repo(remote_android_extensions, "android_tools")
android_sdk_repository_extension = use_extension("@​rules_android//rules/android_sdk_repository:rule.bzl", "android_sdk_repository_extension")
use_repo(android_sdk_repository_extension, "androidsdk")
register_toolchains("@androidsdk//:sdk-toolchain", "@androidsdk//:all")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_android",
    sha256 = "0da7198c7c8bac7e11e08dca3c434617b8593075858716595672e9aeefbef2a7",
    strip_prefix = "rules_android-0.7.2",
    url = "https://github.com/bazelbuild/rules_android/releases/download/v0.7.2/rules_android-v0.7.2.tar.gz",
)
Android rules dependencies
load("@​rules_android//:prereqs.bzl", "rules_android_prereqs")
rules_android_prereqs()
load("@​bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()
load("@​rules_cc//cc:extensions.bzl", "compatibility_proxy_repo")
compatibility_proxy_repo()
rules_java setup for rules_android
load("@​rules_java//java:rules_java_deps.bzl", "rules_java_dependencies")
rules_java_dependencies()
note that the following line is what is minimally required from protobuf for the java rules
consider using the protobuf_deps() public API from @​com_google_protobuf//:protobuf_deps.bzl
load("@​com_google_protobuf//bazel/private:proto_bazel_features.bzl", "proto_bazel_features")  # buildifier: disable=bzl-visibility
</tr></table>

... (truncated)

Commits
  • 88fea8e Merge #483 by Bencodes: Fix R8 not processing META-INF/services
  • fc11fbd Use C1 JIT for three Android Build actions
  • a829baa Internal change
  • ace9a27 Internal change.
  • c663e55 Create and wire up new configuration option for bytecode transformer.
  • ff5c215 Internal change
  • 2c8568f Internal change
  • 8f67bfe Create Starlark flags defs for desugar_for_android
  • 189e943 Internal change
  • e0db9cf Merge #471 by Bencodes: Fix R8 --desugar_java8_libs support
  • Additional commits viewable in compare view

Updates rules_jvm_external from 6.10 to 7.0

Release notes

Sourced from rules_jvm_external's releases.

7.0

Please note The lock file format was changed in rules_jvm_external 5.1 and in 6.10. If you update and repin your dependencies, your lock file will use the new format.

Usage

This version of rules_jvm_external requires Bazel 7.7.1 or Bazel 8.6.0 or Bazel 9.

This release requires Java 11 or above to run, both as the host JDK and the build and tool JDK.

Bzlmod

In your MODULE.bazel file:

bazel_dep(name = "rules_jvm_external", version = "7.0")

To add dependencies, later in your MODULE.bazel file:

maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
artifacts = [
"org.seleniumhq.selenium:selenium-java:4.43.0",
],
lock_file = "//:maven_install.json",
)
use_repo(maven, "maven")

Using dependencies

In your BUILD.bazel file, reference the targets directly:

java_library(
    name = "example",
    exports = [
        "@maven//:org_seleniumhq_selenium_selenium_java",
    ],
)

What's Changed

... (truncated)

Commits
  • 5482558 Upload primary artifact before uploading hashes in MavenPublisher (#1548)
  • 170cafa Update deps before 7.0 release (#1561)
  • bc3fe5f fix: sort repositories in v3 lock file hash to match Java resolver order (#1557)
  • 8d5cd8b Fix problems with Windows CI builds (#1566)
  • ff03b57 Disable hash uploads for snapshot revisions (#1544)
  • 78ba950 Switch to toml.bzl for TOML parsing (#1540)
  • 4f497f0 Also handle the force_version field in the version catalog (#1542)
  • 68cee9c Remove workspace-based dependencies and ensure RJE works with Bazel 9 (#1536)
  • 917e31d Add a test for the extra toml field handling (#1541)
  • 7e89d20 fix: Handle email-style usernames in Coursier cache path credential stripping...
  • 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 dependencies group with 2 updates: [rules_android](https://github.com/bazelbuild/rules_android) and [rules_jvm_external](https://github.com/bazel-contrib/rules_jvm_external).


Updates `rules_android` from 0.7.1 to 0.7.2
- [Release notes](https://github.com/bazelbuild/rules_android/releases)
- [Commits](bazelbuild/rules_android@v0.7.1...v0.7.2)

Updates `rules_jvm_external` from 6.10 to 7.0
- [Release notes](https://github.com/bazel-contrib/rules_jvm_external/releases)
- [Commits](bazel-contrib/rules_jvm_external@6.10...7.0)

---
updated-dependencies:
- dependency-name: rules_android
  dependency-version: 0.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: rules_jvm_external
  dependency-version: '7.0'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added bazel Pull requests that update bazel code dependencies Pull requests that update a dependency file labels Apr 28, 2026
@cpovirk cpovirk self-assigned this Apr 28, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 28, 2026

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

@dependabot dependabot Bot deleted the dependabot/bazel/dependencies-c629697254 branch April 28, 2026 15:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bazel Pull requests that update bazel code dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant