From 42a1199cfb48c28f7994e40c26ee7eabff164295 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Wed, 28 May 2025 22:06:09 +0000 Subject: [PATCH] chore(deps): update protobuf to v29.5 --- 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 +- .../dockerfiles/fedora-latest-cmake-gcc.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/bazel/workspace0.bzl b/bazel/workspace0.bzl index d985707..2b00391 100644 --- a/bazel/workspace0.bzl +++ b/bazel/workspace0.bzl @@ -146,10 +146,10 @@ def gl_cpp_workspace0(name = None): http_archive, name = "com_google_protobuf", urls = [ - "https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz", + "https://github.com/protocolbuffers/protobuf/archive/v29.5.tar.gz", ], - sha256 = "008a11cc56f9b96679b4c285fd05f46d317d685be3ab524b2a310be0fbad987e", - strip_prefix = "protobuf-29.3", + sha256 = "955ef3235be41120db4d367be81efe6891c9544b3a71194d80c3055865b26e09", + strip_prefix = "protobuf-29.5", ) # Load BoringSSL. This could be automatically loaded by gRPC. But as of diff --git a/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile b/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile index d6c7b0e..613d005 100644 --- a/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile @@ -96,7 +96,7 @@ RUN apt-get update && \ # ```bash WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.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 79f0f35..012cf10 100644 --- a/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile @@ -90,7 +90,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | # ```bash WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile b/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile index 1639d37..43a2c96 100644 --- a/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile @@ -56,7 +56,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | # ```bash WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.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 9d305ff..a6dec61 100644 --- a/ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile @@ -56,7 +56,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | # ```bash WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/ci/cloudbuild/dockerfiles/fedora-latest-cmake-gcc.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-latest-cmake-gcc.Dockerfile index 604f2b0..5d62dc7 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cmake-gcc.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cmake-gcc.Dockerfile @@ -125,7 +125,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \ ldconfig && cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.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 f9e5e6d..17cc0f4 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile @@ -131,7 +131,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \ ldconfig && cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.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 28f084a..9b74fdf 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile @@ -135,7 +135,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \ cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.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 4dda958..3ccedbf 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile @@ -137,7 +137,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \ cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.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 26ab7a4..c70b3c2 100644 --- a/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile +++ b/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile @@ -55,7 +55,7 @@ RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.tar.gz | \ ldconfig && cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.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 d32011f..d20c284 100644 --- a/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile +++ b/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile @@ -121,7 +121,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \ cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/protobuf -RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/doc/packaging.md b/doc/packaging.md index 46cc6fc..d742480 100644 --- a/doc/packaging.md +++ b/doc/packaging.md @@ -667,7 +667,7 @@ Google Cloud Platform proto files: ```bash mkdir -p $HOME/Downloads/protobuf && cd $HOME/Downloads/protobuf -curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ @@ -861,7 +861,7 @@ Google Cloud Platform proto files: ```bash mkdir -p $HOME/Downloads/protobuf && cd $HOME/Downloads/protobuf -curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ @@ -1254,7 +1254,7 @@ Google Cloud. We need to build from source: ```bash mkdir -p $HOME/Downloads/protobuf && cd $HOME/Downloads/protobuf -curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ @@ -1465,7 +1465,7 @@ install Protobuf (and any downstream packages) from source. ```bash mkdir -p $HOME/Downloads/protobuf && cd $HOME/Downloads/protobuf -curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.3.tar.gz | \ +curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v29.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \