From fb21b663630d40d4f6713375cb435bc2e8b19a8e Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Thu, 28 Nov 2024 01:22:40 +0000 Subject: [PATCH] chore(deps): update grpc --- MODULE.bazel | 2 +- 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 ++++---- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 81f2dbf17f491..a3ac781a90189 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -26,7 +26,7 @@ bazel_dep(name = "rules_cc", version = "0.0.9") bazel_dep(name = "abseil-cpp", version = "20240722.0", repo_name = "com_google_absl") bazel_dep(name = "protobuf", version = "28.3", repo_name = "com_google_protobuf") bazel_dep(name = "boringssl", version = "0.0.0-20230215-5c22014") -bazel_dep(name = "grpc", version = "1.66.0", repo_name = "com_github_grpc_grpc") +bazel_dep(name = "grpc", version = "1.68.0", repo_name = "com_github_grpc_grpc") bazel_dep(name = "nlohmann_json", version = "3.11.3", repo_name = "com_github_nlohmann_json") bazel_dep(name = "curl", version = "8.8.0.bcr.1", repo_name = "com_github_curl_curl") bazel_dep(name = "crc32c", version = "1.1.0", repo_name = "com_github_google_crc32c") diff --git a/bazel/workspace0.bzl b/bazel/workspace0.bzl index 9246514207a68..d33043d256672 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.1.tar.gz", ], - sha256 = "af0638f73e4452e22e295f8b3f452518234254104713a08497f3d3aaa76733ad", - strip_prefix = "grpc-1.67.0", + sha256 = "c8bb8a695208a15f6176146534b42b84806f3080ddd29fe89128a32ed943634b", + strip_prefix = "grpc-1.68.1", ) # 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 9d40aca160deb..855780bac69e8 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.68.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 38a1b83d841dc..74ba08527d7d5 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.68.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 d63bbea8b40db..542f193461151 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.68.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 ce5beff356167..8a298c34af8ed 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.68.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 68ff59de1a6c8..b690bcf4e3715 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.18 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.68.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 595042f6ec64b..4dc0eded8823f 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.18 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.68.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 1eb1210a519fa..c9cb00f3cb521 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.18 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.68.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 e8aa1b7925541..9f829e30c6be5 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.18 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.68.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 2156d3f0fef03..069b0c8dc308c 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.18 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.68.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/doc/packaging.md b/doc/packaging.md index a765ecb1e3d16..2250189bc2ca8 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.68.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.68.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.68.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.68.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_CXX_STANDARD=17 \