Skip to content

Bump the all-in-one group with 9 updates#30

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bazel/all-in-one-970d158f04
Open

Bump the all-in-one group with 9 updates#30
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bazel/all-in-one-970d158f04

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2026

Bumps the all-in-one group with 9 updates:

Package From To
rules_python 1.4.1 1.8.4
google_benchmark 1.9.4 1.9.5
rules_cc 0.2.14 0.2.16
rules_rust 0.63.0 0.68.1
rules_pkg 1.1.0 1.2.0
toolchains_llvm 1.5.0 1.6.0
buildifier_prebuilt 8.2.0.2 8.2.1.2
flatbuffers 25.2.10 25.12.19
bazel_lib 3.1.0 3.2.0

Updates rules_python from 1.4.1 to 1.8.4

Release notes

Sourced from rules_python's releases.

1.8.4

For more detailed setup instructions, see https://rules-python.readthedocs.io/en/latest/getting-started.html

For the user-facing changelog see here

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "rules_python", version = "1.8.4")
python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
python_version = "3.13",
)
pip = use_extension("@​rules_python//python/extensions:pip.bzl", "pip")
pip.parse(
hub_name = "pypi",
python_version = "3.13",
requirements_lock = "//:requirements_lock.txt",
)
use_repo(pip, "pypi")

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_python",
sha256 = "c85d5db38d3eac06167a13b10c9dba54b003a986cd4f1ebc00806b74e7c12f06",
strip_prefix = "rules_python-1.8.4",
url = "https://github.com/bazel-contrib/rules_python/releases/download/1.8.4/rules_python-1.8.4.tar.gz",
)
load("@​rules_python//python:repositories.bzl", "py_repositories")
py_repositories()

Gazelle plugin

Paste this snippet into your WORKSPACE file:

... (truncated)

Changelog

Sourced from rules_python's changelog.

[1.8.4] - 2026-02-10

Fixed

  • (pipstar): A corner case of evaluation of version specifiers ("1.2" ~= "1.2.0") has been fixed improving compatibility with the PEP440 standard. Fixes #3580.
  • (pipstar): We now add read permissions after extracting wheels for the cases where the whl file is missing them. Fixes #3554.

{#v1-8-3}

[1.8.3] - 2026-01-27

{#v1-8-3-fixed}

Fixed

  • (pipstar) Fix whl extraction on Windows when bazelrc has XX flags. Fixes #3543.

{#v1-8-2}

[1.8.2] - 2026-01-24

{#v1-8-2-fixed}

Fixed

  • (venvs) relax the C library filename check to make tensorflow work Fixes #3524.

{#v1-8-1}

[1.8.1] - 2026-01-20

{#v1-8-1-fixed}

Fixed

  • (pipstar) Extra resolution that refers back to the package being resolved works again. Fixes #3524.

{#v1-8-0}

1.8.0 - 2025-12-19

{#v1-8-0-known-issues}

Known Issues

  • (gazelle) Windows support for the Gazelle plugin may be broken. See #3416 for details and possible workarounds.

{#v1-8-0-removed}

Removed

  • (toolchain) Remove all of the python 3.8 toolchain support out of the box. Users need to pass the TOOL_VERSIONS that include 3.8 toolchains or use the bzlmod APIs to add them back. This means any hub pip.parse calls that target 3.8 will be ignored from

... (truncated)

Commits
  • 62a764e fix(pipstar): handle a corner case for compatible version evaluation (#3583)
  • 08132d3 fix(pip): add read permissions when extracting wheels (#3555)
  • 0057883 fix(pip): simply extract whl contents to the current directory (#3549)
  • a053b56 fix: explicitly symlink all .so files, not just ones with lib prefix (#3538)
  • e7d5362 fix(pipstar): correctly handle complex self deps (#3527)
  • 060bfeb fix(pipstar): Handle dep appearing in extra both conditionally and unconditio...
  • 9d2a18c feat(gazelle): Add ancestor conftest.py files (#3498)
  • 13a37c2 fix (venv_site_packages): Fix wrong runfiles.symlinks when py_binary is not i...
  • da121a2 chore: create bcr prs as non-draft so bazel-io processes the bot-created PRs ...
  • c0f045b doc: Add a snippet on how people can use 3.8 now onwards (#3502)
  • Additional commits viewable in compare view

Updates google_benchmark from 1.9.4 to 1.9.5

Release notes

Sourced from google_benchmark's releases.

v1.9.5

What's Changed

... (truncated)

Commits

Updates rules_cc from 0.2.14 to 0.2.16

Release notes

Sourced from rules_cc's releases.

0.2.16

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.16")

Using WORKSPACE:

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

Full Changelog: bazelbuild/rules_cc@0.2.15...0.2.16

0.2.15

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.15")

Using WORKSPACE:

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

... (truncated)

Commits
  • 6fd317b Avoid deduplicating linkopts of cc_shared_library dependencies.
  • 34f61b4 Fix CcSharedLibraryInfo loads
  • f168220 Fix exec transition handling in cc tool_map for multiplatform builds
  • 6409964 Add additional_compiler_inputs to cc_binary
  • be107bf Make windows toolchain configurable with BAZEL_*OPTS
  • 4800b60 Internal changes.
  • 57b02aa Add BAZEL_COPTS to mirror --copts
  • c0c6e9e Allow multiple module interfaces per cc_library (#545)
  • 2e5f7b7 Make archiver_flags public
  • 506289b Prevent dynamic_deps from dropping cc_runtimes deps
  • Additional commits viewable in compare view

Updates rules_rust from 0.63.0 to 0.68.1

Release notes

Sourced from rules_rust's releases.

0.68.1

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

Bzlmod

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

WORKSPACE

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

Extensions

Bindgen

Bzlmod

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

WORKSPACE

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

MdBook

... (truncated)

Commits

Updates rules_pkg from 1.1.0 to 1.2.0

Release notes

Sourced from rules_pkg's releases.

1.2.0

New Features

  • pkg_deb: add support for md5sums control file
  • pkg_deb: Allow for variables in the package name
  • pkg_deb: Overridable debuginfo type
  • pkg_install: Add destdir_flag to pick up destdir from a bazel-skylib.string_flag().
  • pkg_install: support for symlinks
  • pkg_mklink: support raw symlinks from declare_symlink() (Bazel 8+ only)
  • pkg_rpm: "data" attribute to provide files for rpmbuild b
  • pkg_tar: Conditionally preserve file mtime
  • pkg_tar: Support compression_level when using xz
  • pkg_zip: support synlinks

Incompatible Changes

MODULE.bazel setup

bazel_dep(name = "rules_pkg", version = "1.2.0")

WORKSPACE setup

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

Using the rules

See the source.

What's Changed

... (truncated)

Commits

Updates toolchains_llvm from 1.5.0 to 1.6.0

Release notes

Sourced from toolchains_llvm's releases.

v1.6.0

Minimum bazel version: 7.0.0

If you're using bzlmod, add the following to MODULE.bazel:

bazel_dep(name = "toolchains_llvm", version = "1.6.0")
Configure and register the toolchain.
llvm = use_extension("@​toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm")
llvm.toolchain(
llvm_version = "16.0.0",
)
use_repo(llvm, "llvm_toolchain")
use_repo(llvm, "llvm_toolchain_llvm") # if you depend on specific tools in scripts
register_toolchains("@​llvm_toolchain//:all")

To directly use a commit from GitHub, add this block and replace commit with the commit you want.

git_override(
  module_name = "toolchains_llvm",
  commit = "ace6215bbfe8a76884646b2458b42380e2201607",
  remote = "https://github.com/bazel-contrib/toolchains_llvm",
)

If not using bzlmod, include this section in your WORKSPACE:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "toolchains_llvm",
sha256 = "2b298a1d7ea99679f5edf8af09367363e64cb9fbc46e0b7c1b1ba2b1b1b51058",
strip_prefix = "toolchains_llvm-v1.6.0",
canonical_id = "v1.6.0",
url = "https://github.com/bazel-contrib/toolchains_llvm/releases/download/v1.6.0/toolchains_llvm-v1.6.0.tar.gz",
)
load("@​toolchains_llvm//toolchain:deps.bzl", "bazel_toolchain_dependencies")
bazel_toolchain_dependencies()
load("@​bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()
</tr></table>

... (truncated)

Commits
  • ace6215 [bugfix] Reference os variable instead of os function (#630)
  • a667b97 chore(deps): update dependency rules_java to v9.1.0 (#627)
  • fb29f3d toolchain: Set link_libs rather than link_flags (#624)
  • 43e5dc4 Add LLVM 21.1.6 distribution checksums (#620)
  • cd43f1d chore(deps): update actions/checkout action to v6 (#619)
  • f20171e chore(deps): update dependency tar.bzl to v0.7.0 (#618)
  • f4afe03 chore(deps): update dependency rules_python to v1.7.0 (#617)
  • 8dddf7c Add load for cc_import (#616)
  • 04129fa chore(deps): update dependency com_google_protobuf to v33.1 (#615)
  • ea52d71 Update distros without download (#614)
  • Additional commits viewable in compare view

Updates buildifier_prebuilt from 8.2.0.2 to 8.2.1.2

Release notes

Sourced from buildifier_prebuilt's releases.

Release 8.2.1.2

What's Changed

Full Changelog: keith/buildifier-prebuilt@8.2.1.1...8.2.1.2

Bazel Module Snippet

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

Workspace Snippet

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "buildifier_prebuilt",
sha256 = "c80b20ca1138097b5ce60bb258a6fd06ffcf7469f5f7e6722881845ff64251eb",
strip_prefix = "buildifier-prebuilt-8.2.1.2",
urls = [
"http://github.com/keith/buildifier-prebuilt/archive/8.2.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.2.1.1

What's Changed

... (truncated)

Commits

Updates flatbuffers from 25.2.10 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)

[25.9.23] (September 23 2025)(https://github.com/google/flatbuffers/releases/tag/v25.9.23)

  • flatc: --grpc-callback-api flag generates C++ gRPC Callback API server CallbackService skeletons AND client native callback/async stubs (unary + all streaming reactor forms) (opt-in, non-breaking, issue #8596).
  • Swift - Adds new API to reduce memory copying within swift (#8484)
  • Rust - Support Rust edition 2024 (#8638)
  • [C++] - Use the Google Style for clang-format without exceptions (#8706)
Commits

Updates bazel_lib from 3.1.0 to 3.2.0

Release notes

Sourced from bazel_lib's releases.

v3.2.0

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "bazel_lib", version = "3.2.0")

Using WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_lib",
sha256 = "e733937de2f542436c5d3d618e22c638489b40dfd251284050357babe71103d7",
strip_prefix = "bazel-lib-3.2.0",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.2.0/bazel-lib-v3.2.0.tar.gz",
)
load("@​bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")
Required bazel-lib dependencies
bazel_lib_dependencies()
Required rules_shell dependencies
load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")
rules_shell_dependencies()
rules_shell_toolchains()
Register bazel-lib toolchains
bazel_lib_register_toolchains()
Create the host platform repository transitively required by bazel-lib
load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@platforms//host:extension.bzl", "host_platform_repo")
maybe(
host_platform_repo,Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file bazel Pull requests that update bazel code labels Feb 16, 2026
@github-actions
Copy link

github-actions bot commented Feb 16, 2026

License Check Results

🚀 The license check job ran with the Bazel command:

bazel run //:license-check

Status: ⚠️ Needs Review

Click to expand output
[License Check Output]
2026/02/17 08:56:41 Downloading https://releases.bazel.build/8.3.0/release/bazel-8.3.0-linux-x86_64...
Extracting Bazel installation...
Starting local Bazel server (8.3.0) and connecting to it...
INFO: Invocation ID: 8e916e19-8f1b-41ba-bb4a-dd6d61c9864e
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
WARNING: For repository 'googletest', the root module requires module version googletest@1.17.0, but got googletest@1.17.0.bcr.2 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Loading: 
Loading: 5 packages loaded
Loading: 5 packages loaded
    currently loading: 
Loading: 5 packages loaded
    currently loading: 
Loading: 5 packages loaded
    currently loading: 
Loading: 5 packages loaded
    currently loading: 
Loading: 5 packages loaded
    currently loading: 
Analyzing: target //:license-check (6 packages loaded, 0 targets configured)
Analyzing: target //:license-check (6 packages loaded, 0 targets configured)

Analyzing: target //:license-check (23 packages loaded, 10 targets configured)

Analyzing: target //:license-check (93 packages loaded, 10 targets configured)

Analyzing: target //:license-check (100 packages loaded, 10 targets configured)

Analyzing: target //:license-check (136 packages loaded, 392 targets configured)

Analyzing: target //:license-check (170 packages loaded, 3274 targets configured)

Analyzing: target //:license-check (172 packages loaded, 5453 targets configured)

Analyzing: target //:license-check (173 packages loaded, 7906 targets configured)

Analyzing: target //:license-check (173 packages loaded, 7906 targets configured)

Analyzing: target //:license-check (173 packages loaded, 7906 targets configured)

Analyzing: target //:license-check (173 packages loaded, 7906 targets configured)

Analyzing: target //:license-check (182 packages loaded, 8062 targets configured)

Analyzing: target //:license-check (184 packages loaded, 10069 targets configured)

Analyzing: target //:license-check (185 packages loaded, 10189 targets configured)

Analyzing: target //:license-check (185 packages loaded, 10189 targets configured)

Analyzing: target //:license-check (185 packages loaded, 10189 targets configured)

Analyzing: target //:license-check (185 packages loaded, 10189 targets configured)

INFO: Analyzed target //:license-check (186 packages loaded, 11768 targets configured).
[9 / 13] [Prepa] JavaToolchainCompileClasses external/rules_java+/toolchains/platformclasspath_classes
INFO: From Generating Dash formatted dependency file ...:
INFO: Successfully converted 2 packages from Cargo.lock to bazel-out/k8-fastbuild/bin/formatted.txt
[11 / 13] [Prepa] JavaToolchainCompileBootClasspath external/rules_java+/toolchains/platformclasspath.jar
[12 / 13] [Prepa] Building license.check.license_check.jar ()
INFO: Found 1 target...
Target //:license.check.license_check up-to-date:
  bazel-bin/license.check.license_check
  bazel-bin/license.check.license_check.jar
INFO: Elapsed time: 220.964s, Critical Path: 2.63s
INFO: 13 processes: 9 internal, 3 processwrapper-sandbox, 1 worker.
INFO: Build completed successfully, 13 total actions
INFO: Running command line: bazel-bin/license.check.license_check ./formatted.txt <args omitted>
usage: org.eclipse.dash.licenses.cli.Main [-batch <int>] [-cd <url>]
       [-confidence <int>] [-ef <url>] [-excludeSources <sources>] [-help] [-lic
       <url>] [-project <shortname>] [-repo <url>] [-review] [-summary <file>]
       [-timeout <seconds>] [-token <token>]

@dependabot dependabot bot force-pushed the dependabot/bazel/all-in-one-970d158f04 branch from 7908df9 to 763bc6e Compare February 17, 2026 06:15
@github-actions
Copy link

The created documentation from the pull request is available at: docu-html

Bumps the all-in-one group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [rules_python](https://github.com/bazel-contrib/rules_python) | `1.4.1` | `1.8.4` |
| [google_benchmark](https://github.com/google/benchmark) | `1.9.4` | `1.9.5` |
| [rules_cc](https://github.com/bazelbuild/rules_cc) | `0.2.14` | `0.2.16` |
| [rules_rust](https://github.com/bazelbuild/rules_rust) | `0.63.0` | `0.68.1` |
| [rules_pkg](https://github.com/bazelbuild/rules_pkg) | `1.1.0` | `1.2.0` |
| [toolchains_llvm](https://github.com/bazel-contrib/toolchains_llvm) | `1.5.0` | `1.6.0` |
| [buildifier_prebuilt](https://github.com/keith/buildifier-prebuilt) | `8.2.0.2` | `8.2.1.2` |
| [flatbuffers](https://github.com/google/flatbuffers) | `25.2.10` | `25.12.19` |
| [bazel_lib](https://github.com/bazel-contrib/bazel-lib) | `3.1.0` | `3.2.0` |


Updates `rules_python` from 1.4.1 to 1.8.4
- [Release notes](https://github.com/bazel-contrib/rules_python/releases)
- [Changelog](https://github.com/bazel-contrib/rules_python/blob/main/CHANGELOG.md)
- [Commits](bazel-contrib/rules_python@1.4.1...1.8.4)

Updates `google_benchmark` from 1.9.4 to 1.9.5
- [Release notes](https://github.com/google/benchmark/releases)
- [Commits](google/benchmark@v1.9.4...v1.9.5)

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

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

Updates `rules_pkg` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/bazelbuild/rules_pkg/releases)
- [Changelog](https://github.com/bazelbuild/rules_pkg/blob/main/CHANGELOG.md)
- [Commits](bazelbuild/rules_pkg@1.1.0...1.2.0)

Updates `toolchains_llvm` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/bazel-contrib/toolchains_llvm/releases)
- [Commits](bazel-contrib/toolchains_llvm@v1.5.0...v1.6.0)

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

Updates `flatbuffers` from 25.2.10 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.2.10...v25.12.19)

Updates `bazel_lib` from 3.1.0 to 3.2.0
- [Release notes](https://github.com/bazel-contrib/bazel-lib/releases)
- [Commits](bazel-contrib/bazel-lib@v3.1.0...v3.2.0)

---
updated-dependencies:
- dependency-name: rules_python
  dependency-version: 1.8.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: google_benchmark
  dependency-version: 1.9.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-in-one
- dependency-name: rules_cc
  dependency-version: 0.2.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-in-one
- dependency-name: rules_rust
  dependency-version: 0.68.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: rules_pkg
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: toolchains_llvm
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: buildifier_prebuilt
  dependency-version: 8.2.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: bazel_lib
  dependency-version: 3.2.0
  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 force-pushed the dependabot/bazel/all-in-one-970d158f04 branch from 763bc6e to 77f085a Compare February 17, 2026 08:56
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.

0 participants