From 606dd10920a417502b38710fdcb863a7e3f992d2 Mon Sep 17 00:00:00 2001 From: Florian Levis Date: Fri, 24 Mar 2023 13:32:02 +0100 Subject: [PATCH 1/2] grpc/protobuf: manually force the latest version Test: grpc, protobuf --- install-php-extensions | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install-php-extensions b/install-php-extensions index b37845a5..692341a1 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -2753,6 +2753,10 @@ installRemoteModule() { esac fi fi + if test -z "$installRemoteModule_version"; then + # See https://github.com/protocolbuffers/protobuf/issues/10619 + installRemoteModule_version=1.53.0 + fi if test -z "$installRemoteModule_version" || test "$installRemoteModule_version" = 1.35.0; then case "$DISTRO_VERSION" in alpine@3.13) @@ -3064,7 +3068,7 @@ installRemoteModule() { installRemoteModule_version=3.12.4 else # see https://github.com/protocolbuffers/protobuf/issues/10619 - installRemoteModule_version=3.21.6 + installRemoteModule_version=3.22.1 fi fi ;; From eefd6ccf392b23aa0e857d0aa2d5daf5e83c83b0 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Thu, 13 Apr 2023 09:32:36 +0200 Subject: [PATCH 2/2] Upgrade protobuf to version 3.22.3 --- install-php-extensions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-php-extensions b/install-php-extensions index 692341a1..435ac871 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -3067,8 +3067,8 @@ installRemoteModule() { if test $PHP_MAJMIN_VERSION -le 506; then installRemoteModule_version=3.12.4 else - # see https://github.com/protocolbuffers/protobuf/issues/10619 - installRemoteModule_version=3.22.1 + # See https://github.com/protocolbuffers/protobuf/issues/10619 + installRemoteModule_version=3.22.3 fi fi ;;