Skip to content

Commit af7fbdb

Browse files
committed
chore(deps): update grpc
1 parent ce5aa34 commit af7fbdb

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
@@ -52,7 +52,7 @@ python.toolchain(
5252
python_version = "3.11",
5353
)
5454

55-
bazel_dep(name = "grpc", version = "1.81.0")
55+
bazel_dep(name = "grpc", version = "1.81.1")
5656
bazel_dep(name = "googleapis", version = "0.0.0-20260525-ef19b7b7")
5757
bazel_dep(name = "googleapis-cc", version = "1.1.5")
5858
bazel_dep(name = "googleapis-grpc-cc", version = "1.1.5")

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,14 +209,14 @@ def gl_cpp_workspace0(name = None):
209209
http_archive,
210210
name = "grpc",
211211
urls = [
212-
"https://github.com/grpc/grpc/archive/v1.74.1.tar.gz",
212+
"https://github.com/grpc/grpc/archive/v1.82.0-pre1.tar.gz",
213213
],
214214
repo_mapping = {
215215
"@com_google_absl": "@abseil-cpp",
216216
"@com_github_grpc_grpc": "@grpc",
217217
},
218-
sha256 = "7bf97c11cf3808d650a3a025bbf9c5f922c844a590826285067765dfd055d228",
219-
strip_prefix = "grpc-1.74.1",
218+
sha256 = "7c91601663de3363887c57df1a4806f6f0cd2c7c4e6b208aca398496d014f7ee",
219+
strip_prefix = "grpc-1.82.0-pre1",
220220
)
221221

222222
native.bind(

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

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

143143
# ```bash
144144
WORKDIR /var/tmp/build/grpc
145-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
145+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.82.0-pre1.tar.gz | \
146146
tar -xzf - --strip-components=1 && \
147147
cmake \
148148
-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
@@ -104,7 +104,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2025-07-22.tar.gz | \
104104

105105
# ```bash
106106
WORKDIR /var/tmp/build/grpc
107-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
107+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.82.0-pre1.tar.gz | \
108108
tar -xzf - --strip-components=1 && \
109109
cmake \
110110
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-fedora.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24
104104
# ```bash
105105
WORKDIR /var/tmp/build/grpc
106106
RUN dnf makecache && dnf install -y c-ares-devel re2-devel
107-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
107+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.82.0-pre1.tar.gz | \
108108
tar -xzf - --strip-components=1 && \
109109
cmake \
110110
-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
@@ -141,7 +141,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2025-07-22.tar.gz | \
141141

142142
# ```bash
143143
WORKDIR /var/tmp/build/grpc
144-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
144+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.82.0-pre1.tar.gz | \
145145
tar -xzf - --strip-components=1 && \
146146
cmake \
147147
-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
@@ -135,7 +135,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2025-07-22.tar.gz | \
135135

136136
# ```bash
137137
WORKDIR /var/tmp/build/grpc
138-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
138+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.82.0-pre1.tar.gz | \
139139
tar -xzf - --strip-components=1 && \
140140
cmake \
141141
-DCMAKE_CXX_STANDARD=17 \

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

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

143143
# ```bash
144144
WORKDIR /var/tmp/build/grpc
145-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
145+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.82.0-pre1.tar.gz | \
146146
tar -xzf - --strip-components=1 && \
147147
cmake \
148148
-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
@@ -73,7 +73,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.1.tar.gz
7373

7474
# ```bash
7575
WORKDIR /var/tmp/build/grpc
76-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
76+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.82.0-pre1.tar.gz | \
7777
tar -xzf - --strip-components=1 && \
7878
cmake \
7979
-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
@@ -162,7 +162,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24
162162
# double free issue in order to reduce flakes.
163163
WORKDIR /var/tmp/build/grpc
164164
RUN dnf makecache && dnf install -y c-ares-devel re2-devel
165-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
165+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.82.0-pre1.tar.gz | \
166166
tar -xzf - --strip-components=1 && \
167167
cmake \
168168
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)