Skip to content

Commit 695f254

Browse files
authored
chore(deps): update grpc to v1.65.1 (#14486)
1 parent d5e2aa8 commit 695f254

11 files changed

Lines changed: 16 additions & 16 deletions

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ def gl_cpp_workspace0(name = None):
161161
http_archive,
162162
name = "com_github_grpc_grpc",
163163
urls = [
164-
"https://github.com/grpc/grpc/archive/v1.64.2.tar.gz",
164+
"https://github.com/grpc/grpc/archive/v1.65.1.tar.gz",
165165
],
166-
sha256 = "c682fc39baefc6e804d735e6b48141157b7213602cc66dbe0bf375b904d8b5f9",
167-
strip_prefix = "grpc-1.64.2",
166+
sha256 = "b40840208c904d1364c1942d966474a2fdf1481f9708547d2d4c58812b8d9603",
167+
strip_prefix = "grpc-1.65.1",
168168
)
169169

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2024-07-02.tar.gz | \
125125

126126
# ```bash
127127
WORKDIR /var/tmp/build/grpc
128-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.64.2.tar.gz | \
128+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.65.1.tar.gz | \
129129
tar -xzf - --strip-components=1 && \
130130
cmake \
131131
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2024-07-02.tar.gz | \
128128

129129
# ```bash
130130
WORKDIR /var/tmp/build/grpc
131-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.64.2.tar.gz | \
131+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.65.1.tar.gz | \
132132
tar -xzf - --strip-components=1 && \
133133
cmake \
134134
-DCMAKE_CXX_STANDARD=17 \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2024-07-02.tar.gz | \
9595

9696
# ```bash
9797
WORKDIR /var/tmp/build/grpc
98-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.64.2.tar.gz | \
98+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.65.1.tar.gz | \
9999
tar -xzf - --strip-components=1 && \
100100
cmake \
101101
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v27.2.tar.gz
7676

7777
# ```bash
7878
WORKDIR /var/tmp/build/grpc
79-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.64.2.tar.gz | \
79+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.65.1.tar.gz | \
8080
tar -xzf - --strip-components=1 && \
8181
cmake \
8282
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.16
160160

161161
WORKDIR /var/tmp/build/grpc
162162
RUN dnf makecache && dnf install -y c-ares-devel re2-devel
163-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.64.2.tar.gz | \
163+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.65.1.tar.gz | \
164164
tar -xzf - --strip-components=1 && \
165165
cmake \
166166
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.16
168168

169169
WORKDIR /var/tmp/build/grpc
170170
RUN dnf makecache && dnf install -y c-ares-devel re2-devel
171-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.64.2.tar.gz | \
171+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.65.1.tar.gz | \
172172
tar -xzf - --strip-components=1 && \
173173
cmake \
174174
-DCMAKE_CXX_STANDARD=14 \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.16
170170

171171
WORKDIR /var/tmp/build/grpc
172172
RUN dnf makecache && dnf install -y c-ares-devel re2-devel
173-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.64.2.tar.gz | \
173+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.65.1.tar.gz | \
174174
tar -xzf - --strip-components=1 && \
175175
cmake \
176176
-DCMAKE_CXX_STANDARD=20 \

ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.16
8787
ldconfig && cd /var/tmp && rm -fr build
8888

8989
WORKDIR /var/tmp/build/grpc
90-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.64.2.tar.gz | \
90+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.65.1.tar.gz | \
9191
tar -xzf - --strip-components=1 && \
9292
cmake \
9393
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.16
174174
ldconfig && cd /var/tmp && rm -fr build
175175

176176
WORKDIR /var/tmp/build/grpc
177-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.64.2.tar.gz | \
177+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.65.1.tar.gz | \
178178
tar -xzf - --strip-components=1 && \
179179
cmake \
180180
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)