Skip to content

Commit 503db73

Browse files
authored
chore(deps): update to grpc-1.45.2 (#8727)
1 parent 741d82d commit 503db73

17 files changed

+30
-26
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ https://github.com/googleapis/google-cloud-cpp/issues/8234.
5555

5656
## v1.40.0 - TBD
5757

58+
## v1.39.1 - 2022-04
59+
60+
* Update Bazel builds, CI builds, and packaging instructions to use grpc-1.45.2
61+
5862
## v1.39.0 - 2022-04
5963

6064
**BREAKING CHANGES**

bazel/google_cloud_cpp_deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ def google_cloud_cpp_deps():
129129
if "com_github_grpc_grpc" not in native.existing_rules():
130130
http_archive(
131131
name = "com_github_grpc_grpc",
132-
strip_prefix = "grpc-1.45.1",
132+
strip_prefix = "grpc-1.45.2",
133133
urls = [
134-
"https://github.com/grpc/grpc/archive/v1.45.1.tar.gz",
134+
"https://github.com/grpc/grpc/archive/v1.45.2.tar.gz",
135135
],
136-
sha256 = "46ee3d12c6d42a4ded46ba025c8ba09850425312c710c6ee6e084bd808ebc1e8",
136+
sha256 = "e18b16f7976aab9a36c14c38180f042bb0fd196b75c9fd6a20a2b5f934876ad6",
137137
)
138138

139139
# We use the cc_proto_library() rule from @com_google_protobuf, which

ci/cloudbuild/dockerfiles/debian-stretch.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ RUN curl -sSL https://github.com/google/re2/archive/2020-11-01.tar.gz | \
150150
cd /var/tmp && rm -fr build
151151

152152
WORKDIR /var/tmp/build/grpc
153-
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.1.tar.gz | \
153+
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.2.tar.gz | \
154154
tar -xzf - --strip-components=1 && \
155155
cmake \
156156
-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
@@ -140,7 +140,7 @@ RUN curl -sSL https://github.com/c-ares/c-ares/archive/cares-1_14_0.tar.gz | \
140140

141141
# ```bash
142142
WORKDIR /var/tmp/build/grpc
143-
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.1.tar.gz | \
143+
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.2.tar.gz | \
144144
tar -xzf - --strip-components=1 && \
145145
cmake \
146146
-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
@@ -104,7 +104,7 @@ RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v3.19.4.tar.gz
104104

105105
# ```bash
106106
WORKDIR /var/tmp/build/grpc
107-
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.1.tar.gz | \
107+
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.2.tar.gz | \
108108
tar -xzf - --strip-components=1 && \
109109
cmake \
110110
-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
@@ -115,7 +115,7 @@ RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v3.19.4.tar.gz
115115

116116
# ```bash
117117
WORKDIR /var/tmp/build/grpc
118-
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.1.tar.gz | \
118+
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.2.tar.gz | \
119119
tar -xzf - --strip-components=1 && \
120120
cmake \
121121
-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
@@ -111,7 +111,7 @@ RUN curl -sSL https://github.com/google/re2/archive/2020-11-01.tar.gz | \
111111

112112
# ```bash
113113
WORKDIR /var/tmp/build/grpc
114-
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.1.tar.gz | \
114+
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.2.tar.gz | \
115115
tar -xzf - --strip-components=1 && \
116116
cmake \
117117
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-fedora.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v3.19.4.tar.gz
145145

146146
# ```bash
147147
WORKDIR /var/tmp/build/grpc
148-
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.1.tar.gz | \
148+
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.2.tar.gz | \
149149
tar -xzf - --strip-components=1 && \
150150
cmake \
151151
-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
@@ -100,7 +100,7 @@ RUN curl -sSL https://github.com/c-ares/c-ares/archive/cares-1_14_0.tar.gz | \
100100

101101
# ```bash
102102
WORKDIR /var/tmp/build/grpc
103-
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.1.tar.gz | \
103+
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.2.tar.gz | \
104104
tar -xzf - --strip-components=1 && \
105105
cmake \
106106
-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
@@ -103,7 +103,7 @@ RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v3.19.4.tar.gz
103103

104104
# ```bash
105105
WORKDIR /var/tmp/build/grpc
106-
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.1.tar.gz | \
106+
RUN curl -sSL https://github.com/grpc/grpc/archive/v1.45.2.tar.gz | \
107107
tar -xzf - --strip-components=1 && \
108108
cmake \
109109
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)