Skip to content

Commit a9b7d8a

Browse files
committed
Update Buildbarn and Bazel dependencies (2026-02-06)
1 parent ebf8853 commit a9b7d8a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+4324
-2315
lines changed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.1.1
1+
9.0.0

.github/workflows/backend.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
{
1717
"if": "matrix.host.platform_name == 'linux_amd64'",
1818
"name": "linux_amd64: build and test",
19-
"run": "bazel test --test_output=errors --platforms=@rules_go//go/toolchain:linux_amd64 //..."
19+
"run": "bazel test --test_output=errors //..."
2020
},
2121
{
2222
"if": "matrix.host.platform_name == 'linux_arm64'",
2323
"name": "linux_arm64: build and test",
24-
"run": "bazel test --test_output=errors --platforms=@rules_go//go/toolchain:linux_arm64 //..."
24+
"run": "bazel test --test_output=errors //..."
2525
},
2626
{
2727
"if": "matrix.host.cross_compile",
2828
"name": "Cross-platform builds",
29-
"run": "bazel build --platforms=@rules_go//go/toolchain:darwin_amd64,@rules_go//go/toolchain:darwin_arm64,@rules_go//go/toolchain:freebsd_amd64,@rules_go//go/toolchain:windows_amd64 //..."
29+
"run": "bazel build --platforms=@com_github_buildbarn_bb_storage//tools/platforms:darwin_amd64,@com_github_buildbarn_bb_storage//tools/platforms:darwin_arm64,@com_github_buildbarn_bb_storage//tools/platforms:freebsd_amd64,@com_github_buildbarn_bb_storage//tools/platforms:windows_amd64 --@bazel_tools//tools/test:incompatible_use_default_test_toolchain=False //..."
3030
}
3131
],
3232
"strategy": {

MODULE.bazel

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,46 +10,46 @@ local_path_override(
1010
path = "third_party/bazel",
1111
)
1212

13-
bazel_dep(name = "aspect_bazel_lib", version = "2.21.2")
13+
bazel_dep(name = "aspect_bazel_lib", version = "2.22.5")
1414
bazel_dep(name = "bazel_remote_apis", version = "0.0.0")
1515
bazel_dep(name = "com_github_buildbarn_bb_browser")
1616
bazel_dep(name = "com_github_buildbarn_bb_remote_execution")
1717
bazel_dep(name = "com_github_buildbarn_bb_storage")
1818
bazel_dep(name = "com_github_buildbarn_go_xdr")
19-
bazel_dep(name = "gazelle", version = "0.45.0")
20-
bazel_dep(name = "googleapis", version = "0.0.0-20250826-a92cee39")
21-
bazel_dep(name = "googletest", version = "1.16.0")
22-
bazel_dep(name = "protobuf", version = "31.1")
19+
bazel_dep(name = "gazelle", version = "0.47.0")
20+
bazel_dep(name = "googleapis", version = "0.0.0-20260109-6145b5ff")
21+
bazel_dep(name = "googletest", version = "1.17.0")
22+
bazel_dep(name = "protobuf", version = "33.4")
2323
bazel_dep(name = "platforms", version = "1.0.0")
24-
bazel_dep(name = "rules_go", version = "0.57.0")
24+
bazel_dep(name = "rules_go", version = "0.59.0")
25+
bazel_dep(name = "rules_img", version = "0.3.4")
2526
bazel_dep(name = "rules_jsonnet", version = "0.7.2")
26-
bazel_dep(name = "rules_oci", version = "2.2.6")
2727
bazel_dep(name = "rules_proto", version = "7.1.0")
2828
bazel_dep(name = "rules_shell", version = "0.6.1")
29-
bazel_dep(name = "toolchains_llvm", version = "1.5.0")
30-
bazel_dep(name = "opentelemetry-proto", version = "1.7.0")
29+
bazel_dep(name = "toolchains_llvm", version = "1.6.0")
30+
bazel_dep(name = "opentelemetry-proto", version = "1.8.0")
3131

3232
git_override(
3333
module_name = "bazel_remote_apis",
34-
commit = "824e1ba94b2db15f68ceff97ae6da503fbc26985",
34+
commit = "080cf125032eb61b21a53c72c1a09a45145fc152",
3535
remote = "https://github.com/bazelbuild/remote-apis.git",
3636
)
3737

3838
git_override(
3939
module_name = "com_github_buildbarn_bb_browser",
40-
commit = "9886820de1cc9ad4183bf765266161260d514d91",
40+
commit = "765b497e89eefc1fa39acb015559ce0c9c490dd7",
4141
remote = "https://github.com/buildbarn/bb-browser.git",
4242
)
4343

4444
git_override(
4545
module_name = "com_github_buildbarn_bb_remote_execution",
46-
commit = "83bbddc17a9188fe4a88c13aea56bf9909250b6c",
46+
commit = "749fb408bd300672b8f13860253d07fdc26c49ff",
4747
remote = "https://github.com/buildbarn/bb-remote-execution.git",
4848
)
4949

5050
git_override(
5151
module_name = "com_github_buildbarn_bb_storage",
52-
commit = "7199df9e3c26961561ee32953216d7058f274b44",
52+
commit = "bebcf0861b91da71f9dec8ae8dd5bb2f8a0e1169",
5353
remote = "https://github.com/buildbarn/bb-storage.git",
5454
)
5555

@@ -74,13 +74,18 @@ single_version_override(
7474
patches = ["//:patches/gazelle/dont-flatten-srcs.diff"],
7575
)
7676

77+
single_version_override(
78+
module_name = "jsonnet_go",
79+
patches = ["//:patches/jsonnet_go/bazel-9.diff"],
80+
)
81+
7782
single_version_override(
7883
module_name = "toolchains_llvm",
7984
patches = ["//:patches/toolchains_llvm/non-root.diff"],
8085
)
8186

8287
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk")
83-
go_sdk.download(version = "1.24.7")
88+
go_sdk.download(version = "1.25.4")
8489

8590
go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
8691
go_deps.gazelle_override(

0 commit comments

Comments
 (0)