Skip to content

chore(deps): bump the all-in-one group across 1 directory with 4 updates#66

Merged
FScholPer merged 2 commits into
mainfrom
dependabot/bazel/all-in-one-08ec2a3b37
May 12, 2026
Merged

chore(deps): bump the all-in-one group across 1 directory with 4 updates#66
FScholPer merged 2 commits into
mainfrom
dependabot/bazel/all-in-one-08ec2a3b37

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the all-in-one group with 4 updates in the / directory: rules_rust, rules_cc, toolchains_llvm and buildifier_prebuilt.

Updates rules_rust from 0.68.2-score 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

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 toolchains_llvm from 1.5.0 to 1.7.0

Release notes

Sourced from toolchains_llvm's releases.

v1.7.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.7.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 = "576a587e4542733166ac1c3c4fb14c79c421332c",
  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 = "85c341e957ba58482892a8088e4a34391d15bd98917f0993ecb62f008d6986d6",
strip_prefix = "toolchains_llvm-v1.7.0",
canonical_id = "v1.7.0",
url = "https://github.com/bazel-contrib/toolchains_llvm/releases/download/v1.7.0/toolchains_llvm-v1.7.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
  • 576a587 chore(deps): update dependency bazel_features to v1.43.0 (#695)
  • 7914ad1 chore(deps): update dependency tar.bzl to v0.10.0 (#693)
  • d82df0f chore(deps): update dependency bazel_features to v1.42.1 (#692)
  • 2e37b68 chore(deps): update dependency rules_python to v1.9.0 (#691)
  • 7178e83 chore(deps): update dependency aspect_bazel_lib to v3.2.2 (#690)
  • 52b9620 chore(deps): update dependency tar.bzl to v0.9.1 (#689)
  • ab103bc chore(deps): update dependency com_google_protobuf to v34 (#688)
  • e33786d chore(deps): update dependency bazel_features to v1.42.0 (#687)
  • 8fa06ea Fix bash issues in osx_cc_wrapper.sh.tpl (#685)
  • 65be3e9 fix: don't add toolchain lib dir to macOS linker search path (#686)
  • Additional commits viewable in compare view

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

@dependabot dependabot Bot added bazel Pull requests that update bazel code dependencies Pull requests that update a dependency file labels Apr 17, 2026
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Apr 17, 2026

License Check Results

🚀 The license check job ran with the Bazel command:

bazel run --lockfile_mode=error //:license-check

Status: ⚠️ Needs Review

Click to expand output
[License Check Output]
Extracting Bazel installation...
Starting local Bazel server (8.3.0) and connecting to it...
INFO: Invocation ID: e9e9cfe4-0acc-40a3-be0d-932bf76efe1c
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
Loading: 
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
    currently loading: 
Loading: 0 packages loaded
    currently loading: 
Loading: 0 packages loaded
    currently loading: 
Loading: 0 packages loaded
    currently loading: 
Analyzing: target //:license-check (1 packages loaded, 0 targets configured)
Analyzing: target //:license-check (1 packages loaded, 0 targets configured)

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

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

ERROR: Analysis of target '//:license-check' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because: The implementation of the extension '@@aspect_rules_esbuild+//esbuild:extensions.bzl%esbuild' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile.
INFO: Elapsed time: 15.333s, Critical Path: 0.04s
INFO: 1 process: 1 internal.
ERROR: Build did NOT complete successfully
FAILED: 
ERROR: Build failed. Not running target

@dependabot dependabot Bot force-pushed the dependabot/bazel/all-in-one-08ec2a3b37 branch from a85d61a to 86290c5 Compare April 23, 2026 11:51
Bumps the all-in-one group with 4 updates in the / directory: [rules_rust](https://github.com/bazelbuild/rules_rust), [rules_cc](https://github.com/bazelbuild/rules_cc), [toolchains_llvm](https://github.com/bazel-contrib/toolchains_llvm) and [buildifier_prebuilt](https://github.com/keith/buildifier-prebuilt).


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

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 `toolchains_llvm` from 1.5.0 to 1.7.0
- [Release notes](https://github.com/bazel-contrib/toolchains_llvm/releases)
- [Commits](bazel-contrib/toolchains_llvm@v1.5.0...v1.7.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)

---
updated-dependencies:
- 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: rules_cc
  dependency-version: 0.2.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-in-one
- dependency-name: rules_rust
  dependency-version: 0.69.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-in-one
- dependency-name: toolchains_llvm
  dependency-version: 1.7.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-08ec2a3b37 branch from 86290c5 to c293469 Compare May 11, 2026 09:26
@FScholPer FScholPer merged commit b2c18b4 into main May 12, 2026
6 of 9 checks passed
@FScholPer FScholPer deleted the dependabot/bazel/all-in-one-08ec2a3b37 branch May 12, 2026 12:23
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.

1 participant