Skip to content

build(deps): bump the all-in-one group across 1 directory with 11 updates#243

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bazel/all-in-one-b146cc1c86
Open

build(deps): bump the all-in-one group across 1 directory with 11 updates#243
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bazel/all-in-one-b146cc1c86

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 25, 2026

Bumps the all-in-one group with 11 updates in the / directory:

Package From To
rules_cc 0.2.14 0.2.18
platforms 1.0.0 1.1.0
rules_shell 0.5.0 0.8.0
rules_rust 0.61.0 0.70.0
rules_multitool 1.9.0 1.11.1
bazel_skylib 1.7.1 1.9.0
buildifier_prebuilt 8.2.0.2 8.5.1.2
flatbuffers 25.9.23 25.12.19
download_utils 1.2.2 1.2.3
grpc-java 1.75.0.bcr.1 1.78.0.bcr.1
lobster 0.0.0 0.13.2

Updates rules_cc from 0.2.14 to 0.2.18

Release notes

Sourced from rules_cc's releases.

0.2.18

Using bzlmod with Bazel 6 or later:

  1. [Bazel 6] Add common --enable_bzlmod to .bazelrc.

  2. Add to your MODULE.bazel file:

bazel_dep(name = "rules_cc", version = "0.2.18")

Using WORKSPACE:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_cc",
sha256 = "1de5b47721fce0af0dd453b3071228fdfc44bd18199826b3f0b03b423aae9f65",
strip_prefix = "rules_cc-0.2.18",
url = "https://github.com/bazelbuild/rules_cc/releases/download/0.2.18/rules_cc-0.2.18.tar.gz",
)
load("@​rules_cc//cc:extensions.bzl", "compatibility_proxy_repo")
compatibility_proxy_repo()

Full Changelog: bazelbuild/rules_cc@0.2.17...0.2.18

0.2.17

Using bzlmod with Bazel 6 or later:

  1. [Bazel 6] Add common --enable_bzlmod to .bazelrc.

  2. Add to your MODULE.bazel file:

bazel_dep(name = "rules_cc", version = "0.2.17")

Using WORKSPACE:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
</tr></table>

... (truncated)

Commits
  • 0850152 Centralize stamp injection between the cc toolchain and PostMark.
  • 8956a5b Fix interface library soname
  • f2cb3b4 Disable interface library -soname if already passed
  • ea015e6 Remove incompatible_use_specific_tool_files use
  • 9bf4119 Remove unnecessary requires for archiver_flags
  • 0b11998 cc_toolchain's tool_map should be cfg-exec-configured
  • 2993fd1 Remove uses of bazel_features ge
  • cab7071 Fix bazel_features usage in strip_include_prefix test
  • 72e42e7 Handle None shared_non_lto_backends in lto_index_action.
  • 6d26834 Refactor visibility to make it easier to add new packages without churn upstr...
  • Additional commits viewable in compare view

Updates platforms from 1.0.0 to 1.1.0

Release notes

Sourced from platforms's releases.

1.1.0

What's Changed

New Contributors

WORKSPACE setup

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "platforms",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/1.1.0/platforms-1.1.0.tar.gz",
        "https://github.com/bazelbuild/platforms/releases/download/1.1.0/platforms-1.1.0.tar.gz",
    ],
    sha256 = "dbad4a23abcca6171e47b79edc53bd6a41067a3b75f9e8b104656b459ff25046",
)

Full Changelog: bazelbuild/platforms@1.0.0...1.1.0

Commits

Updates rules_shell from 0.5.0 to 0.8.0

Release notes

Sourced from rules_shell's releases.

v0.8.0

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:
bazel_dep(name = "rules_shell", version = "0.8.0")

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_shell",
    sha256 = "20721f63908879c083f94869e618ea8d4ff5edb91ff9a72a2ebee357fdbc352d",
    strip_prefix = "rules_shell-0.8.0",
    url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.8.0/rules_shell-v0.8.0.tar.gz",
)
load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")
rules_shell_dependencies()
rules_shell_toolchains()

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_shell@v0.7.1...v0.8.0

v0.7.1

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:
bazel_dep(name = "rules_shell", version = "0.7.1")

Using WORKSPACE

... (truncated)

Commits
  • c02969a Add new repository entry to metadata template (#54)
  • 81e1eb9 Add providers.bzl to shell/private:private_bzl (#57)
  • 9d7cb08 Update CONTRIBUTING.md to simplify contribution process (#56)
  • 81c0071 Migrate from Publish to BCR app to workflow (#50)
  • 5132dd4 Add ShInfo and ShBinaryInfo providers (#47)
  • 1e8bab6 Don't emit a shebang with use_bash_launcher on Windows (#44)
  • e071f45 Fix docs for sh_test and sh_binary (#40)
  • 94c1e66 Use launcher wrapper to initialize runfiles (#38)
  • e6d8454 Update runfiles library label in setup instructions (#35)
  • 6501f73 fix: do not allow GREP_XXX env vars from breaking rlocation (#36)
  • Additional commits viewable in compare view

Updates rules_rust from 0.61.0 to 0.70.0

Release notes

Sourced from rules_rust's releases.

0.70.0

Additional documentation can be found at: https://bazelbuild.github.io/rules_rust/#setup

Bzlmod

bazel_dep(name = "rules_rust", version = "0.70.0")

WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_rust",
    integrity = "sha256-X/2f8fby8U8gV7fLqpGl5qzZpMve1ayB2tm+s2hZYB4=",
    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.70.0/rules_rust-0.70.0.tar.gz"],
)

Extensions

Bindgen

Bzlmod

bazel_dep(name = "rules_rust_bindgen", version = "0.70.0")

WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_rust_bindgen",
    integrity = "sha256-X/2f8fby8U8gV7fLqpGl5qzZpMve1ayB2tm+s2hZYB4=",
    strip_prefix = "extensions/bindgen",
    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.70.0/rules_rust-0.70.0.tar.gz"],
)

MdBook

... (truncated)

Commits
  • e890f0d Release 0.70.0 (#3959)
  • 9a137c3 Updated CrateInfo.data documentation (#3978)
  • 82506df Add unstable_rust_features attribute (#3963)
  • 325e942 Added Rust 1.95.0 (#3971)
  • 25fa202 Delete //cargo/settings:incompatible_runfiles_cargo_manifest_dir (#3881)
  • ad14c2b Fix parse_cargo_tree_output misclassifying dev-dependencies as host deps (#3976)
  • 01821fa crate_universe release 0.18.0 (#3969)
  • 4028aa7 crate_universe: error on empty host triples in cargo tree resolver (#3979)
  • ae1be23 cargo-bazel: fix binary targets of proc-macro crates using wrong dep attribut...
  • 85007f4 Wire rust_objcopy into the generated sysroot action inputs (#3972)
  • Additional commits viewable in compare view

Updates rules_multitool from 1.9.0 to 1.11.1

Release notes

Sourced from rules_multitool's releases.

v1.11.1

Using Bzlmod (preferred)

  1. Create a multitool.lock.json (schema)
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_multitool", version = "1.11.1")
multitool = use_extension("@​rules_multitool//multitool:extension.bzl", "multitool")
multitool.hub(lockfile = "//:multitool.lock.json")
use_repo(multitool, "multitool")

Using WORKSPACE

  1. Create a multitool.lock.json (schema)
  2. Add to your WORKSPACE file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_features",
sha256 = "06f02b97b6badb3227df2141a4b4622272cdcd2951526f40a888ab5f43897f14",
strip_prefix = "bazel_features-1.9.0",
url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.9.0/bazel_features-v1.9.0.tar.gz",
)
http_archive(
name = "rules_multitool",
sha256 = "6d0d9fb231eb450ffb3acec879a250e9dea69c7acfc94f138d53103aa5123f08",
strip_prefix = "rules_multitool-1.11.1",
url = "https://github.com/theoremlp/rules_multitool/releases/download/v1.11.1/rules_multitool-1.11.1.tar.gz",
)
load("@​bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()
load("@​rules_multitool//multitool:multitool.bzl", "multitool")
multitool(
name = "multitool",
lockfile = "//:multitool.lock.json",
)
required since 0.15.0 to enable only downloading tools used by this workspace
load("@multitool//:tools.bzl", "register_tools")
register_tools()
</tr></table>

... (truncated)

Commits
  • 0be566f Update release workflow to also publish to BCR
  • daa63a5 Add GitHub Actions workflow to publish to BCR
  • 359e4aa Update metadata.json
  • df59f62 Run autorelease on Fridays at 12pm ET
  • 0dc5ef9 Update actions/checkout action to v6 (#106)
  • b9fa2d7 chore(deps): upgrade to bazel_lib 3 (#102)
  • 112f577 Migrate renovate config (#100)
  • 2d426e4 feat: include generated API docs in release (#99)
  • 91533f6 Update bazel-contrib/.github action to v7 (#92)
  • bbaa197 fix example tests which depended on bazel run behavior (#95)
  • Additional commits viewable in compare view

Updates bazel_skylib from 1.7.1 to 1.9.0

Release notes

Sourced from bazel_skylib's releases.

1.9.0

MODULE.bazel setup

bazel_dep(name = "bazel_skylib", version = "1.9.0")

And for the Gazelle plugin:

bazel_dep(name = "bazel_skylib_gazelle_plugin", version = "1.9.0", dev_dependency = True)

WORKSPACE setup

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_skylib",
sha256 = "3b5b49006181f5f8ff626ef8ddceaa95e9bb8ad294f7b5d7b11ea9f7ddaf8c59",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.9.0/bazel-skylib-1.9.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.9.0/bazel-skylib-1.9.0.tar.gz",
],
)
load("@​bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()

Additional WORKSPACE setup for the Gazelle plugin

http_archive(
    name = "bazel_skylib_gazelle_plugin",
    sha256 = "e08ddabeabbcb93b92044df092292582d2b8cc28c2d81d74689c7d1b9d73b6b7",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.9.0/bazel-skylib-gazelle-plugin-1.9.0.tar.gz",
        "https://github.com/bazelbuild/bazel-skylib/releases/download/1.9.0/bazel-skylib-gazelle-plugin-1.9.0.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)

Changelog

Sourced from bazel_skylib's changelog.

Release 1.9.0

What's Changed

  • Optimize copy_file and set allow_symlink by default to True if is_executable is False (#565)
  • Give rules/private:is_windows an empty applicable_license (#600)
  • Bump rules_go dependency for compatibility with Bazel 9 (#601)

Contributors: @​fdinoff, @​fmeum, @​fweikert, @​susinmotion

Full Changelog: bazelbuild/bazel-skylib@1.8.2...1.9.0

Release 1.8.2

New Features

  • Introduce repeatable_string_flag (#593)

Other Changes

  • Migrate copy_directory away from deprecated host constraint (#588)

Contributors

  • fmeum@
  • susinmotion@

Release 1.8.1

What's Changed

Full Changelog: bazelbuild/bazel-skylib@1.8.0...1.8.1

Release 1.8.0

What's Changed

... (truncated)

Commits

Updates buildifier_prebuilt from 8.2.0.2 to 8.5.1.2

Release notes

Sourced from buildifier_prebuilt's releases.

8.5.1.2

What's Changed

Full Changelog: keith/buildifier-prebuilt@8.5.1.1...8.5.1.2

MODULE.bazel Snippet

bazel_dep(name = "buildifier_prebuilt", version = "8.5.1.2", dev_dependency = True)

WORKSPACE Snippet

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "buildifier_prebuilt",
sha256 = "d63c27b08ee68fa36f428fd9923eef0a4ee45048498d6e97e9838da4fb674860",
strip_prefix = "buildifier-prebuilt-8.5.1.2",
urls = [
"https://github.com/keith/buildifier-prebuilt/releases/download/8.5.1.2/buildifier-prebuilt.8.5.1.2.tar.gz",
],
)
load("@​buildifier_prebuilt//:deps.bzl", "buildifier_prebuilt_deps")
buildifier_prebuilt_deps()
load("@​bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
load("@​buildifier_prebuilt//:defs.bzl", "buildifier_prebuilt_register_toolchains")
buildifier_prebuilt_register_toolchains()

Release 8.5.1.1

What's Changed

Full Changelog: keith/buildifier-prebuilt@8.5.1...8.5.1.1

Bazel Module Snippet

... (truncated)

Commits

Updates flatbuffers from 25.9.23 to 25.12.19

Release notes

Sourced from flatbuffers's releases.

v25.12.19

What's Changed

... (truncated)

Changelog

Sourced from flatbuffers's changelog.

[25.12.19] (December 19 2025)(https://github.com/google/flatbuffers/releases/tag/v25.12.19)

  • [C++] Default emptry vector support (#8870)
  • [C++] Add --gen-absl-hash option (#8868)
  • [Kotlin] Upgrade to MacOS 15 (#8845)
  • [C++] Fix vector of table with naked ptrs (#8830)
  • [Python] Optimize Offset/Pad/Prep (#8808)
  • Implement --file-names-only (#8788)
  • [C++] Fix size verifer (#8740)
Commits

Updates download_utils from 1.2.2 to 1.2.3

Updates grpc-java from 1.75.0.bcr.1 to 1.78.0.bcr.1

Release notes

Sourced from grpc-java's releases.

V1.78.0

Bug Fixes

  • core: Fix shutdown failing accepted RPCs during channel startup (02e98a806). This fixes a race where RPCs could fail with "UNAVAILABLE: Channel shutdown invoked" even though they were created before channel.shutdown()
  • okhttp: Fix race condition overwriting MAX_CONCURRENT_STREAMS (#12548) (8d49dc1c9)
  • binder: Stop leaking this from BinderServerTransport's ctor (#12453) (89d77e062)
  • rls: Avoid missed config update from reentrancy (55ae1d054). This fixes a regression since 1.75.0 triggered by CdsLb being converted to XdsDepManager. Without this fix, a second channel to the same target may hang when starting, causing DEADLINE_EXCEEDED, and unhang when the control plane delivers an update (e.g., endpoint address update)

Improvements

  • xds: gRFC A88 - Changes to XdsClient Watcher APIs (#12446) (f385add31). We now have improved xDS error handling and this provides a clearer mechanism for the xDS server to report per-resource errors to the client, resulting in better error messages for debugging and faster detection of non-existent resources. This also improves the handling of all xDS-related data errors and the behavior of the xDS resource timer.
  • rls: Control plane channel monitor state and back off handling (#12460) (26c1c1341). Resets RLS request backoff timers when the Control plane channel state transitions to READY. Also when the backoff timer expires, instead of making a RLS request immediately, it just causes a picker update to allow making rpc again to the RLS target.
  • core: simplify DnsNameResolver.resolveAddresses() (4843256af)
  • netty: Run handshakeCompleteRunnable in success cases (283f1031f)
  • api,netty: Add custom header support for HTTP CONNECT proxy (bbc0aa369)
  • binder: Pre-factor out the guts of the BinderClientTransport handshake. (9313e87df)
  • compiler: Add RISC-V 64-bit architecture support to compiler build configuration (725ab22f3)
  • core: Release lock before closing shared resource (cb73f217e). Shared resources are internal to gRPC for sharing expensive objects across channels and servers, like threads. This reduces the chances of forming a deadlock, like seen with s2a in d50098f
  • Upgrade gson to 2.12.1 (6dab2ceab)
  • Upgrade dependencies (f36defa2d). proto-google-common-protos to 2.63.1, google-auth-library to 1.40.0, error-prone annotations to 2.44.0, guava to 33.5.0-android, opentelemetry to 1.56.0
  • compiler: Update maximum supported protobuf edition to EDITION_2024 (2f64092b8)
  • binder: Introduce server authorization strategy v2 (d9710725d). Adds support for android:isolatedProcess Services and moves all security checks to the handshake, making subsequent transactions more efficient.

New Features

  • compiler: Upgrade to C++ protobuf 33.1 (#12534) (58ae5f808).
  • util: Add gRFC A68 random subsetting LB (48a42889d). The policy uses the name random_subsetting_experimental. If it is working for you, tell us so we can gauge marking it stable. While the xDS portions haven’t yet landed, it is possible to use with xDS with JSON-style Structs as supported by gRFC A52
  • xds: Support for System Root Certs (#12499) (51611bad1). Most service mesh workloads use mTLS, as described in gRFC A29. However, there are cases where it is useful for applications to use normal TLS rather than using certificates for workload identity, such as when a mesh wants to move some workloads behind a reverse proxy. The xDS CertificateValidationContext message (see envoyproxy/envoy#34235) has a system_root_certs field. In the gRPC client, if this field is present and the ca_certificate_provider_instance field is unset, system root certificates will be used for validation. This implements gRFC A82.
  • xds: Support for GCP Authentication Filter (#12499) (51611bad1). In service mesh environments, there are cases where intermediate proxies make it impossible to rely on mTLS for end-to-end authentication. These cases can be addressed instead by the use of service account identity JWT tokens. The xDS GCP Authentication filter provides a mechanism for attaching such JWT tokens as gRPC call credentials on GCP. gRPC already supports a framework for xDS HTTP filters, as described in gRFC A39. This release supports the GCP Authentication filter under this framework as described in gRFC A83.
  • xds: Support for xDS-based authority rewriting (#12499) (51611bad1). gRPC supports getting routing configuration from an xDS server, as described in gRFCs A27 and A28. The xDS configuration can configure the client to rewrite the authority header on requests. This functionality can be useful in cases where the server is using the authority header to make decisions about how to process the request, such as when multiple hosts are handled via a reverse proxy. Note that this feature is solely about rewriting the authority header on data plane RPCs; it does not affect the authority used in the TLS handshake.
    As mentioned in gRFC A29Description has been truncated

…ates

Bumps the all-in-one group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [rules_cc](https://github.com/bazelbuild/rules_cc) | `0.2.14` | `0.2.18` |
| [platforms](https://github.com/bazelbuild/platforms) | `1.0.0` | `1.1.0` |
| [rules_shell](https://github.com/bazel-contrib/rules_shell) | `0.5.0` | `0.8.0` |
| [rules_rust](https://github.com/bazelbuild/rules_rust) | `0.61.0` | `0.70.0` |
| [rules_multitool](https://github.com/bazel-contrib/rules_multitool) | `1.9.0` | `1.11.1` |
| [bazel_skylib](https://github.com/bazelbuild/bazel-skylib) | `1.7.1` | `1.9.0` |
| [buildifier_prebuilt](https://github.com/keith/buildifier-prebuilt) | `8.2.0.2` | `8.5.1.2` |
| [flatbuffers](https://github.com/google/flatbuffers) | `25.9.23` | `25.12.19` |
| download_utils | `1.2.2` | `1.2.3` |
| [grpc-java](https://github.com/grpc/grpc-java) | `1.75.0.bcr.1` | `1.78.0.bcr.1` |
| [lobster](https://github.com/bmw-software-engineering/lobster) | `0.0.0` | `0.13.2` |



Updates `rules_cc` from 0.2.14 to 0.2.18
- [Release notes](https://github.com/bazelbuild/rules_cc/releases)
- [Commits](bazelbuild/rules_cc@0.2.14...0.2.18)

Updates `platforms` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/bazelbuild/platforms/releases)
- [Commits](bazelbuild/platforms@1.0.0...1.1.0)

Updates `rules_shell` from 0.5.0 to 0.8.0
- [Release notes](https://github.com/bazel-contrib/rules_shell/releases)
- [Commits](bazel-contrib/rules_shell@v0.5.0...v0.8.0)

Updates `rules_rust` from 0.61.0 to 0.70.0
- [Release notes](https://github.com/bazelbuild/rules_rust/releases)
- [Commits](bazelbuild/rules_rust@0.61.0...0.70.0)

Updates `rules_multitool` from 1.9.0 to 1.11.1
- [Release notes](https://github.com/bazel-contrib/rules_multitool/releases)
- [Commits](bazel-contrib/rules_multitool@v1.9.0...v1.11.1)

Updates `bazel_skylib` from 1.7.1 to 1.9.0
- [Release notes](https://github.com/bazelbuild/bazel-skylib/releases)
- [Changelog](https://github.com/bazelbuild/bazel-skylib/blob/main/CHANGELOG.md)
- [Commits](bazelbuild/bazel-skylib@1.7.1...1.9.0)

Updates `buildifier_prebuilt` from 8.2.0.2 to 8.5.1.2
- [Release notes](https://github.com/keith/buildifier-prebuilt/releases)
- [Commits](keith/buildifier-prebuilt@8.2.0.2...8.5.1.2)

Updates `flatbuffers` from 25.9.23 to 25.12.19
- [Release notes](https://github.com/google/flatbuffers/releases)
- [Changelog](https://github.com/google/flatbuffers/blob/master/CHANGELOG.md)
- [Commits](google/flatbuffers@v25.9.23...v25.12.19)

Updates `download_utils` from 1.2.2 to 1.2.3

Updates `grpc-java` from 1.75.0.bcr.1 to 1.78.0.bcr.1
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](https://github.com/grpc/grpc-java/commits)

Updates `lobster` from 0.0.0 to 0.13.2
- [Release notes](https://github.com/bmw-software-engineering/lobster/releases)
- [Changelog](https://github.com/bmw-software-engineering/lobster/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bmw-software-engineering/lobster/commits/lobster-0.13.2)

---
updated-dependencies:
- dependency-name: rules_cc
  dependency-version: 0.2.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-in-one
- dependency-name: platforms
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: rules_shell
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: rules_rust
  dependency-version: 0.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: rules_multitool
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: bazel_skylib
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: buildifier_prebuilt
  dependency-version: 8.5.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: flatbuffers
  dependency-version: 25.12.19
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: download_utils
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-in-one
- dependency-name: grpc-java
  dependency-version: 1.78.0.bcr.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: lobster
  dependency-version: 0.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
...

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 May 25, 2026
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

Status: Backlog

Development

Successfully merging this pull request may close these issues.

0 participants