From ee1b129a5495307175e75596dbe5cae7abd5e66f Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Wed, 6 Sep 2023 10:41:28 +0200 Subject: [PATCH] Don't force the latest version of grpc and protobuf Why we previously forced versions? See https://github.com/mlocati/docker-php-extension-installer/pull/723 Why we don't need that anymore? See https://github.com/php/web-pecl/pull/92 Test: grpc, protobuf --- install-php-extensions | 7 ------- 1 file changed, 7 deletions(-) diff --git a/install-php-extensions b/install-php-extensions index 3939ba1b..3c1d9797 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -2855,10 +2855,6 @@ installRemoteModule() { esac fi fi - if test -z "$installRemoteModule_version"; then - # See https://github.com/protocolbuffers/protobuf/issues/10619 - installRemoteModule_version=1.57.0 - fi if test -z "$installRemoteModule_version" || test "$installRemoteModule_version" = 1.35.0; then case "$DISTRO_VERSION" in alpine@3.13) @@ -3181,9 +3177,6 @@ installRemoteModule() { if test -z "$installRemoteModule_version"; then 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.24.2 fi fi ;;