Skip to content

Commit b4c4c5b

Browse files
authored
chore(deps): update protobuf to v21.6 (#9863)
1 parent 70f2215 commit b4c4c5b

18 files changed

Lines changed: 31 additions & 29 deletions

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ For status on this, see https://github.com/googleapis/google-cloud-cpp/issues/88
107107
details.
108108
</details>
109109

110-
## v1.43.0 (or maybe v2.43.0) - TBD
110+
## v1.42.1 - 2022-09
111+
112+
- Update Protobuf version in Bazel configuration to v21.6 ([#9863](https://github.com/googleapis/google-cloud-cpp/pull/9863))
111113

112114
## v1.42.0 - 2022-06
113115

bazel/google_cloud_cpp_deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ def google_cloud_cpp_deps():
104104
if "com_google_protobuf" not in native.existing_rules():
105105
http_archive(
106106
name = "com_google_protobuf",
107-
strip_prefix = "protobuf-21.1",
107+
strip_prefix = "protobuf-21.6",
108108
urls = [
109-
"https://github.com/protocolbuffers/protobuf/archive/v21.1.tar.gz",
109+
"https://github.com/protocolbuffers/protobuf/archive/v21.6.tar.gz",
110110
],
111-
sha256 = "f1a83673cbcaff6346a8fba87a9c02c0f943a4a696b6c7d1b71586d97609db12",
111+
sha256 = "dbb16fdbca8f277c9a194d9a837395cde408ca136738d94743130dd0de015efd",
112112
)
113113

114114
# Load BoringSSL, this is used by gRPC, but as I write this (2021-06-03, circa gRPC-1.37.1), the version used by

ci/cloudbuild/dockerfiles/debian-stretch.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ RUN curl -sSL https://github.com/nlohmann/json/archive/v3.10.5.tar.gz | \
116116
cd /var/tmp && rm -fr build
117117

118118
WORKDIR /var/tmp/build/protobuf
119-
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.1.tar.gz | \
119+
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.6.tar.gz | \
120120
tar -xzf - --strip-components=1 && \
121121
cmake \
122122
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-centos-7.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ RUN curl -sSL https://github.com/abseil/abseil-cpp/archive/20211102.0.tar.gz | \
106106

107107
# ```bash
108108
WORKDIR /var/tmp/build/protobuf
109-
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.1.tar.gz | \
109+
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.6.tar.gz | \
110110
tar -xzf - --strip-components=1 && \
111111
cmake \
112112
-DCMAKE_BUILD_TYPE=Release \

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

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

8787
# ```bash
8888
WORKDIR /var/tmp/build/protobuf
89-
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.1.tar.gz | \
89+
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.6.tar.gz | \
9090
tar -xzf - --strip-components=1 && \
9191
cmake \
9292
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ RUN curl -sSL https://github.com/nlohmann/json/archive/v3.10.5.tar.gz | \
9797

9898
# ```bash
9999
WORKDIR /var/tmp/build/protobuf
100-
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.1.tar.gz | \
100+
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.6.tar.gz | \
101101
tar -xzf - --strip-components=1 && \
102102
cmake \
103103
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ RUN curl -sSL https://github.com/abseil/abseil-cpp/archive/20211102.0.tar.gz | \
6060

6161
# ```bash
6262
WORKDIR /var/tmp/build/protobuf
63-
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.1.tar.gz | \
63+
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.6.tar.gz | \
6464
tar -xzf - --strip-components=1 && \
6565
cmake \
6666
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-fedora.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ RUN curl -sSL https://github.com/nlohmann/json/archive/v3.10.5.tar.gz | \
127127

128128
# ```bash
129129
WORKDIR /var/tmp/build/protobuf
130-
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.1.tar.gz | \
130+
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.6.tar.gz | \
131131
tar -xzf - --strip-components=1 && \
132132
cmake \
133133
-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
@@ -66,7 +66,7 @@ RUN curl -sSL https://github.com/abseil/abseil-cpp/archive/20211102.0.tar.gz | \
6666

6767
# ```bash
6868
WORKDIR /var/tmp/build/protobuf
69-
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.1.tar.gz | \
69+
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.6.tar.gz | \
7070
tar -xzf - --strip-components=1 && \
7171
cmake \
7272
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ RUN curl -sSL https://github.com/abseil/abseil-cpp/archive/20211102.0.tar.gz | \
8383

8484
# ```bash
8585
WORKDIR /var/tmp/build/protobuf
86-
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.1.tar.gz | \
86+
RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.6.tar.gz | \
8787
tar -xzf - --strip-components=1 && \
8888
cmake \
8989
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)