Skip to content

Commit ce671b4

Browse files
committed
chore(deps): update protobuf to v30
1 parent a7a6715 commit ce671b4

12 files changed

+17
-17
lines changed

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ bazel_dep(name = "platforms", version = "0.0.11")
2424
bazel_dep(name = "bazel_skylib", version = "1.7.1")
2525
bazel_dep(name = "rules_cc", version = "0.0.17")
2626
bazel_dep(name = "abseil-cpp", version = "20240722.1", repo_name = "com_google_absl")
27-
bazel_dep(name = "protobuf", version = "29.3", repo_name = "com_google_protobuf")
27+
bazel_dep(name = "protobuf", version = "30.0-rc2", repo_name = "com_google_protobuf")
2828
bazel_dep(name = "boringssl", version = "0.0.0-20230215-5c22014")
2929
bazel_dep(name = "grpc", version = "1.69.0", repo_name = "com_github_grpc_grpc")
3030
bazel_dep(name = "nlohmann_json", version = "3.11.3", repo_name = "com_github_nlohmann_json")

bazel/workspace0.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,10 @@ def gl_cpp_workspace0(name = None):
146146
http_archive,
147147
name = "com_google_protobuf",
148148
urls = [
149-
"https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz",
149+
"https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz",
150150
],
151-
sha256 = "008a11cc56f9b96679b4c285fd05f46d317d685be3ab524b2a310be0fbad987e",
152-
strip_prefix = "protobuf-29.3",
151+
sha256 = "9df0e9e8ebe39f4fbbb9cf7db3d811287fe3616b2f191eb2bf5eaa12539c881f",
152+
strip_prefix = "protobuf-30.0",
153153
)
154154

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ RUN apt-get update && \
8888

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz |
8787

8888
# ```bash
8989
WORKDIR /var/tmp/build/protobuf
90-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
90+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
9191
tar -xzf - --strip-components=1 && \
9292
cmake \
9393
-DCMAKE_BUILD_TYPE=Release \

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz |
5656

5757
# ```bash
5858
WORKDIR /var/tmp/build/protobuf
59-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
59+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
6060
tar -xzf - --strip-components=1 && \
6161
cmake \
6262
-DCMAKE_BUILD_TYPE=Release \

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz |
5656

5757
# ```bash
5858
WORKDIR /var/tmp/build/protobuf
59-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
59+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
6060
tar -xzf - --strip-components=1 && \
6161
cmake \
6262
-DCMAKE_BUILD_TYPE=Release \

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
129129
ldconfig && cd /var/tmp && rm -fr build
130130

131131
WORKDIR /var/tmp/build/protobuf
132-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
132+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
133133
tar -xzf - --strip-components=1 && \
134134
cmake \
135135
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
135135
cd /var/tmp && rm -fr build
136136

137137
WORKDIR /var/tmp/build/protobuf
138-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
138+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
139139
tar -xzf - --strip-components=1 && \
140140
cmake \
141141
-DCMAKE_CXX_STANDARD=14 \

ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
137137
cd /var/tmp && rm -fr build
138138

139139
WORKDIR /var/tmp/build/protobuf
140-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
140+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
141141
tar -xzf - --strip-components=1 && \
142142
cmake \
143143
-DCMAKE_CXX_STANDARD=20 \

ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.tar.gz | \
5555
ldconfig && cd /var/tmp && rm -fr build
5656

5757
WORKDIR /var/tmp/build/protobuf
58-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
58+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
5959
tar -xzf - --strip-components=1 && \
6060
cmake \
6161
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
121121
cd /var/tmp && rm -fr build
122122

123123
WORKDIR /var/tmp/build/protobuf
124-
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
124+
RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
125125
tar -xzf - --strip-components=1 && \
126126
cmake \
127127
-DCMAKE_BUILD_TYPE=Release \

doc/packaging.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ Google Cloud Platform proto files:
583583

584584
```bash
585585
mkdir -p $HOME/Downloads/protobuf && cd $HOME/Downloads/protobuf
586-
curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
586+
curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
587587
tar -xzf - --strip-components=1 && \
588588
cmake \
589589
-DCMAKE_BUILD_TYPE=Release \
@@ -750,7 +750,7 @@ Google Cloud Platform proto files:
750750

751751
```bash
752752
mkdir -p $HOME/Downloads/protobuf && cd $HOME/Downloads/protobuf
753-
curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
753+
curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
754754
tar -xzf - --strip-components=1 && \
755755
cmake \
756756
-DCMAKE_BUILD_TYPE=Release \
@@ -1078,7 +1078,7 @@ to build from source:
10781078

10791079
```bash
10801080
mkdir -p $HOME/Downloads/protobuf && cd $HOME/Downloads/protobuf
1081-
curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
1081+
curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
10821082
tar -xzf - --strip-components=1 && \
10831083
cmake \
10841084
-DCMAKE_BUILD_TYPE=Release \
@@ -1252,7 +1252,7 @@ install Protobuf (and any downstream packages) from source.
12521252

12531253
```bash
12541254
mkdir -p $HOME/Downloads/protobuf && cd $HOME/Downloads/protobuf
1255-
curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \
1255+
curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v30.0.tar.gz | \
12561256
tar -xzf - --strip-components=1 && \
12571257
cmake \
12581258
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)