Skip to content

Commit 347f328

Browse files
committed
Update Bazel version to 8.4.2
Update Bazel version to be aligned with reference integration. Add a temporary workaround pinning rules_go to 0.61.1 for running tests with Bazel 9: rules_go is a transitive (not direct) dependency, and the version pulled in transitively does not yet support Bazel 9. Remove once upstream dependencies are updated.
1 parent 0215ecf commit 347f328

5 files changed

Lines changed: 65 additions & 757 deletions

File tree

‎.bazelversion‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.3.1
1+
8.4.2

‎MODULE.bazel.lock‎

Lines changed: 14 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tests/.bazelversion‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.3.1
1+
8.4.2

‎tests/MODULE.bazel‎

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ module(
1616
version = "0.1.0",
1717
)
1818

19+
# FIXME: Needed in order to redirect dependencies to use updated version of this
20+
# module which includes fixes for Bazel 9 usage. Remove this once
21+
# dependencies are updated to use the latest version of this module.
22+
bazel_dep(name = "rules_go", version = "0.61.1")
23+
1924
# *******************************************************************************
2025
# Common useful functions and rules for Bazel
2126
# *******************************************************************************
@@ -24,13 +29,13 @@ bazel_dep(name = "bazel_skylib", version = "1.8.2")
2429
# *******************************************************************************
2530
# Constraint values for specifying platforms and toolchains
2631
# *******************************************************************************
27-
bazel_dep(name = "platforms", version = "1.0.0")
32+
bazel_dep(name = "platforms", version = "1.1.0")
2833
bazel_dep(name = "score_bazel_platforms", version = "0.1.2")
2934

3035
# *******************************************************************************
3136
# C++ Rules for Bazel
3237
# *******************************************************************************
33-
bazel_dep(name = "rules_cc", version = "0.2.14")
38+
bazel_dep(name = "rules_cc", version = "0.2.17")
3439
bazel_dep(name = "googletest", version = "1.17.0")
3540

3641
# *******************************************************************************

0 commit comments

Comments
 (0)