From 14919cfed695d13516af24b18734cfad6248b79a Mon Sep 17 00:00:00 2001 From: Florian Levis Date: Thu, 13 Apr 2023 11:44:00 +0200 Subject: [PATCH] grpc/protobuf: manually set the latest version to be installed (#723) --- install-php-extensions | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/install-php-extensions b/install-php-extensions index b37845a..435ac87 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) @@ -3063,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.21.6 + # See https://github.com/protocolbuffers/protobuf/issues/10619 + installRemoteModule_version=3.22.3 fi fi ;;