Skip to content

Commit 8ab32b9

Browse files
authored
Upgrade to Bazel 6.5.0 (#1441)
Updated Bazel to `6.5.0` - `4.1.0` no longer works on my mac. - `7.2.0` seems not yet supported by internal CI tooling :) Also upgraded - Protobuf -> `25.0` (`27.0` is generating errors :)) - gRPC Bazel -> `1.64.2`
1 parent 76ef002 commit 8ab32b9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

WORKSPACE

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ http_archive(
1313

1414
http_archive(
1515
name = "com_google_protobuf",
16-
sha256 = "ba0650be1b169d24908eeddbe6107f011d8df0da5b1a5a4449a913b10e578faf",
17-
strip_prefix = "protobuf-3.19.4",
16+
sha256 = "7beed9c511d632cff7c22ac0094dd7720e550153039d5da7e059bcceb488474a",
17+
strip_prefix = "protobuf-25.0",
1818
urls = [
19-
"https://github.com/protocolbuffers/protobuf/releases/download/v3.19.4/protobuf-all-3.19.4.tar.gz",
19+
"https://github.com/protocolbuffers/protobuf/releases/download/v25.0/protobuf-25.0.tar.gz",
2020
],
2121
)
2222

2323
http_archive(
2424
name = "com_github_grpc_grpc",
25-
sha256 = "de2d3168e77e5ffb27758b07e87f6066fd0d8087fe272f278771e7780e6aaacb",
26-
strip_prefix = "grpc-1.44.0",
25+
sha256 = "8579095a31e280d0c5fcc81ea0a2a0efb2900dbfbac0eb018a961a5be22e076e",
26+
strip_prefix = "grpc-1.64.2",
2727
urls = [
28-
"https://github.com/grpc/grpc/archive/v1.44.0.zip",
28+
"https://github.com/grpc/grpc/archive/v1.64.2.zip",
2929
],
3030
)
3131

net/grpc/gateway/docker/prereqs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ RUN ./scripts/init_submodules.sh
5252
FROM node:20.0.0-bullseye AS copy-and-build
5353

5454
ARG MAKEFLAGS=-j8
55-
ARG BAZEL_VERSION=4.1.0
55+
ARG BAZEL_VERSION=6.5.0
5656

5757
RUN apt-get -qq update && apt-get -qq install -y python
5858

0 commit comments

Comments
 (0)