From ae27b15d6af5a2ed842221901592939ecf6e3005 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Thu, 31 Oct 2024 15:55:58 +0000 Subject: [PATCH] chore(deps): update grpc --- bazel/workspace0.bzl | 6 +++--- ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile | 2 +- doc/packaging.md | 8 ++++---- 11 files changed, 16 insertions(+), 16 deletions(-) diff --git a/bazel/workspace0.bzl b/bazel/workspace0.bzl index 1e11afc5b4852..8d9ac74e7f7ad 100644 --- a/bazel/workspace0.bzl +++ b/bazel/workspace0.bzl @@ -161,10 +161,10 @@ def gl_cpp_workspace0(name = None): http_archive, name = "com_github_grpc_grpc", urls = [ - "https://github.com/grpc/grpc/archive/v1.67.0.tar.gz", + "https://github.com/grpc/grpc/archive/v1.68.0-pre1.tar.gz", ], - sha256 = "af0638f73e4452e22e295f8b3f452518234254104713a08497f3d3aaa76733ad", - strip_prefix = "grpc-1.67.0", + sha256 = "30a5eb0a8d14f3ac2206a86bf878708bf85a74eb8761e487e619ff4b24894252", + strip_prefix = "grpc-1.68.0-pre1", ) # We use the cc_proto_library() rule from @com_google_protobuf, which diff --git a/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile b/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile index 8b6add3213859..462b79e573b8a 100644 --- a/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile @@ -125,7 +125,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2024-07-02.tar.gz | \ # ```bash WORKDIR /var/tmp/build/grpc -RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile b/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile index 16ac109b38cb8..3061181672aa7 100644 --- a/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile @@ -128,7 +128,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2024-07-02.tar.gz | \ # ```bash WORKDIR /var/tmp/build/grpc -RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_CXX_STANDARD=17 \ diff --git a/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile b/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile index 347d380bf41ff..129bbe8f42dcb 100644 --- a/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile @@ -95,7 +95,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2024-07-02.tar.gz | \ # ```bash WORKDIR /var/tmp/build/grpc -RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile b/ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile index a67704e5dd56f..22f3967af5b45 100644 --- a/ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile @@ -76,7 +76,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v28.3.tar.gz # ```bash WORKDIR /var/tmp/build/grpc -RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile index fe2a6a4cf69a9..598385936bceb 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile @@ -159,7 +159,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.17 WORKDIR /var/tmp/build/grpc RUN dnf makecache && dnf install -y c-ares-devel re2-devel -RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile index a1ff2381189ec..47184ba32a4ac 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile @@ -167,7 +167,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.17 WORKDIR /var/tmp/build/grpc RUN dnf makecache && dnf install -y c-ares-devel re2-devel -RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_CXX_STANDARD=14 \ diff --git a/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile index 68976f2b06d76..c9ec9808cf494 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile @@ -169,7 +169,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.17 WORKDIR /var/tmp/build/grpc RUN dnf makecache && dnf install -y c-ares-devel re2-devel -RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_CXX_STANDARD=20 \ diff --git a/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile b/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile index b22ed77e0bef7..743e5e6eecc55 100644 --- a/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile +++ b/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile @@ -86,7 +86,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.17 ldconfig && cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/grpc -RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile b/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile index 79a21b9a547a3..73317c2513c51 100644 --- a/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile +++ b/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile @@ -173,7 +173,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.17 ldconfig && cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/grpc -RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/doc/packaging.md b/doc/packaging.md index fd220b1f21489..ef1c6d730431c 100644 --- a/doc/packaging.md +++ b/doc/packaging.md @@ -603,7 +603,7 @@ Platform proto files. We install it using: ```bash mkdir -p $HOME/Downloads/grpc && cd $HOME/Downloads/grpc -curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ @@ -789,7 +789,7 @@ Platform proto files. We install it using: ```bash mkdir -p $HOME/Downloads/grpc && cd $HOME/Downloads/grpc -curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ @@ -1115,7 +1115,7 @@ Finally, we build gRPC from source: ```bash mkdir -p $HOME/Downloads/grpc && cd $HOME/Downloads/grpc -curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ @@ -1293,7 +1293,7 @@ install it using: ```bash mkdir -p $HOME/Downloads/grpc && cd $HOME/Downloads/grpc -curl -fsSL https://github.com/grpc/grpc/archive/v1.67.0.tar.gz | \ +curl -fsSL https://github.com/grpc/grpc/archive/v1.67.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_CXX_STANDARD=17 \