Skip to content

Commit 477ff23

Browse files
committed
chore(deps): update protobuf to v36
1 parent 52dfbfb commit 477ff23

17 files changed

Lines changed: 25 additions & 25 deletions

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ bazel_dep(name = "abseil-cpp", version = "20250814.2")
2929
# The name "com_google_protobuf" is internally used by @bazel_tools,
3030
# a native repository we cannot override.
3131
# See https://github.com/googleapis/google-cloud-cpp/issues/15393
32-
bazel_dep(name = "protobuf", version = "35.1", repo_name = "com_google_protobuf")
32+
bazel_dep(name = "protobuf", version = "36.0", repo_name = "com_google_protobuf")
3333
bazel_dep(name = "boringssl", version = "0.20251124.0")
3434
bazel_dep(name = "nlohmann_json", version = "3.12.0.bcr.1")
3535
bazel_dep(name = "curl", version = "8.8.0.bcr.3")

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,10 @@ def gl_cpp_workspace0(name = None):
171171
http_archive,
172172
name = "com_google_protobuf",
173173
urls = [
174-
"https://github.com/protocolbuffers/protobuf/archive/v31.1.tar.gz",
174+
"https://github.com/protocolbuffers/protobuf/archive/v36.0.tar.gz",
175175
],
176-
sha256 = "c3a0a9ece8932e31c3b736e2db18b1c42e7070cd9b881388b26d01aa71e24ca2",
177-
strip_prefix = "protobuf-31.1",
176+
sha256 = "d120933b88a2857c1b5fb6dafe387cca1b96762c2263cb53d945dcae34e88a3f",
177+
strip_prefix = "protobuf-36.0",
178178
)
179179

180180
# Load BoringSSL. This could be automatically loaded by gRPC. But as of

ci/cloudbuild/dockerfiles/demo-debian-bookworm.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz |
9898

9999
# ```bash
100100
WORKDIR /var/tmp/build/protobuf
101-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.6.tar.gz | \
101+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v36.0.tar.gz | \
102102
tar -xzf - --strip-components=1 && \
103103
cmake \
104104
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ RUN apt-get update && \
9090

9191
# ```bash
9292
WORKDIR /var/tmp/build/protobuf
93-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.6.tar.gz | \
93+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v36.0.tar.gz | \
9494
tar -xzf - --strip-components=1 && \
9595
cmake \
9696
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-fedora.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ RUN curl -fsSL https://github.com/curl/curl/releases/download/curl-8_7_1/curl-8.
8888

8989
# ```bash
9090
WORKDIR /var/tmp/build/protobuf
91-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.6.tar.gz | \
91+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v36.0.tar.gz | \
9292
tar -xzf - --strip-components=1 && \
9393
cmake \
9494
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-opensuse-leap.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz |
7575

7676
# ```bash
7777
WORKDIR /var/tmp/build/protobuf
78-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.6.tar.gz | \
78+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v36.0.tar.gz | \
7979
tar -xzf - --strip-components=1 && \
8080
cmake \
8181
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz |
116116

117117
# ```bash
118118
WORKDIR /var/tmp/build/protobuf
119-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.6.tar.gz | \
119+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v36.0.tar.gz | \
120120
tar -xzf - --strip-components=1 && \
121121
cmake \
122122
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-ubuntu-24.04.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz |
100100

101101
# ```bash
102102
WORKDIR /var/tmp/build/protobuf
103-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.6.tar.gz | \
103+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v36.0.tar.gz | \
104104
tar -xzf - --strip-components=1 && \
105105
cmake \
106106
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz |
7474

7575
# ```bash
7676
WORKDIR /var/tmp/build/protobuf
77-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.6.tar.gz | \
77+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v36.0.tar.gz | \
7878
tar -xzf - --strip-components=1 && \
7979
cmake \
8080
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/fedora-cmake-quickstart.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
146146
ldconfig && cd /var/tmp && rm -fr build
147147

148148
WORKDIR /var/tmp/build/protobuf
149-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.6.tar.gz | \
149+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v36.0.tar.gz | \
150150
tar -xzf - --strip-components=1 && \
151151
cmake \
152152
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)