Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bazel/all-in-one-30b8a9b359
Closed

build(deps): bump the all-in-one group across 1 directory with 9 updates#191
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bazel/all-in-one-30b8a9b359

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Package From To
rules_cc 0.2.14 0.2.18
aspect_rules_py 1.4.0 1.11.5
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

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 aspect_rules_py from 1.4.0 to 1.11.5

Release notes

Sourced from aspect_rules_py's releases.

v1.11.5

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.11.5")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

Full Changelog: aspect-build/rules_py@v1.11.4...v1.11.5

v1.11.4

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_py", version = "1.11.4")

And also register a Python toolchain, see rules_python. For example:

python = use_extension("@rules_python//python/extensions:python.bzl", "python")
python.toolchain(
    python_version = "3.13",
)

What's Changed

Full Changelog: aspect-build/rules_py@v1.11.3...v1.11.4

v1.11.3

... (truncated)

Commits
  • 0be5db3 test: ensure forward-compatible version of aspect_bazel_lib in e2e tests (#969)
  • 5380809 test: add uv custom toolchain x86_64-apple-darwin hash (#968)
  • ea02ada chore: define linux_gnu platform in e2e instead of via @​aspect_rules_py (#966)
  • 5dda303 chore: upgrade tar.bzl to 0.10.1 (#964)
  • d77fd88 refactor: extract pth file creation and imports depset into reusable pth.bzl ...
  • a0a2055 refactor(uv): remove dead lib_mode/whl_mode machinery (#951)
  • 39216f8 feat: add uv toolchain extension (#943)
  • b95494a test: cherry-pick tests from #944 (#954)
  • 73ff6d1 refactor: cleanup unused bazel/platforms/* logic (#957)
  • 80b04cd chore: upgrade rules_rs to 0.0.64 (#915)
  • 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

@dependabot dependabot Bot added bazel Pull requests that update bazel code dependencies Pull requests that update a dependency file labels May 4, 2026
@dependabot dependabot Bot force-pushed the dependabot/bazel/all-in-one-30b8a9b359 branch 2 times, most recently from 966edb6 to 83e901f Compare May 5, 2026 04:33
Bumps the all-in-one group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [rules_cc](https://github.com/bazelbuild/rules_cc) | `0.2.14` | `0.2.18` |
| [aspect_rules_py](https://github.com/aspect-build/rules_py) | `1.4.0` | `1.11.5` |
| [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` |



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 `aspect_rules_py` from 1.4.0 to 1.11.5
- [Release notes](https://github.com/aspect-build/rules_py/releases)
- [Commits](aspect-build/rules_py@v1.4.0...v1.11.5)

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)

---
updated-dependencies:
- dependency-name: aspect_rules_py
  dependency-version: 1.11.2
  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: platforms
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- 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: rules_multitool
  dependency-version: 1.11.1
  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_shell
  dependency-version: 0.8.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-30b8a9b359 branch from 83e901f to 4d2b2d6 Compare May 6, 2026 05:22
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 6, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 6, 2026
@dependabot dependabot Bot deleted the dependabot/bazel/all-in-one-30b8a9b359 branch May 6, 2026 05:54
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

Development

Successfully merging this pull request may close these issues.

0 participants