From 768dbe0b3247e2e5def0b9ac6c4cde95e214f18a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 4 Aug 2026 11:11:37 -0700
Subject: [PATCH] Bump the dependencies group with 2 updates
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps the dependencies group with 2 updates: [bazel_skylib](https://github.com/bazelbuild/bazel-skylib) and [rules_jvm_external](https://github.com/bazel-contrib/rules_jvm_external).
Updates `bazel_skylib` from 1.9.0 to 1.9.2
Sourced from bazel_skylib's releases. MODULE.bazel setup And for the Gazelle plugin: WORKSPACE setup http_archive( load(" bazel_skylib_workspace()Release notes
1.9.2
bazel_dep(name = "bazel_skylib", version = "1.9.2")
bazel_dep(name = "bazel_skylib_gazelle_plugin", version = "1.9.2", dev_dependency = True)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
name = "bazel_skylib",
sha256 = "37cdfbc6faefea94f7b37760a305c98c08981116c2bc9e821e3b423221fad8c8",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.9.2/bazel-skylib-1.9.2.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.9.2/bazel-skylib-1.9.2.tar.gz",
],
)@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
Additional WORKSPACE setup for the Gazelle plugin
http_archive(
name = "bazel_skylib_gazelle_plugin",
sha256 = "ebcbf7bc491b28332c40b2db524d0a37e2e8feebbf099ad51561531c1efbba47",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.9.2/bazel-skylib-gazelle-plugin-1.9.2.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.9.2/bazel-skylib-gazelle-plugin-1.9.2.tar.gz",
],
)
load("@bazel_skylib_gazelle_plugin//:workspace.bzl", "bazel_skylib_gazelle_plugin_workspace")
bazel_skylib_gazelle_plugin_workspace()
load("@bazel_skylib_gazelle_plugin//:setup.bzl", "bazel_skylib_gazelle_plugin_setup")
</tr></table>
... (truncated)
Sourced from bazel_skylib's changelog.
Release 1.9.2
What's Changed
- Revert allow_symlink = True by default for non-executables
- Change from stamp to some other boolean flag
- Update Bazel versions in CI: drop Bazel 6, add Bazel 9
- Change Starlark flag default propagation from "universal" to "target"
Contributors:
@gzm0,@kotlaja,@susinmotion,@justinhorvitzRelease 1.9.1
Skipped due to CI failure
3de43ed Create release 1.9.2 (#630)bac104b Remove private visibility on "always_true" conditions (#629)72291d1 Create release 1.9.1 (#620)390ecf8 No-op: change written default scope from 'universal' to 'target' (#608)f7718b7 Change from stamp to some other boolean flag (#611)7b2f6de Update Bazel versions in CI: drop Bazel 6, add Bazel 9 (#613)ea054fc Revert allow_symlink = True by default for non-executables (#605)Sourced from rules_jvm_external's releases.
7.1
Please note The lock file format was changed in
rules_jvm_external5.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_externalrequires Bazel 7.7.1 or Bazel 8.7.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.bazelfile:bazel_dep(name = "rules_jvm_external", version = "7.1")To add dependencies, later in your
MODULE.bazelfile:maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")maven.install(
artifacts = [
"org.seleniumhq.selenium:selenium-java:4.46.0",
],
lock_file = "//:maven_install.json",
)use_repo(maven, "maven")
Using dependencies
In your
BUILD.bazelfile, reference the targets directly:java_library( name = "example", exports = [ "@maven//:org_seleniumhq_selenium_selenium_java", ], )What's Changed
- Prefer getenv to env.get by
@Andrius-Bin bazel-contrib/rules_jvm_external#1568- update environment variable handling for pinning by
@titusfortnerin bazel-contrib/rules_jvm_external#1573- Fix MavenPublisher to support POM-only publications by
@titusfortnerin bazel-contrib/rules_jvm_external#1574- Update Gradle to 9.5.0 by
@shs96cin bazel-contrib/rules_jvm_external#1569
... (truncated)
b234733 Prepare for 7.1 release (#1593)fd9185f fix: force a single version per Gradle module when pinning (#1608)30e29da Use a UTF-8 locale for jvm_import jar actions (#1610)5eb595d BOM/POM coordinates condition marked as skipped must not be turned into `ht...c1b3e5e fix: honour pinned versions in external resolvers (#1606)60611a9 feat: Support pluggable dependency download and metadata caching SPIs (#1589)2c8e8ac Preserve Gradle variant identity in the lock graph (#1576)97d4d4f fix: make :outdated work when runfiles trees are disabled (#1602)06db7d7 Enable RJE_UNSAFE_CACHE by default (#1584)b6dd5dc Don't deduplicate additional_coursier_options (#1596)