diff options
| author | Remi Collet <remi@remirepo.net> | 2019-04-02 08:37:17 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2019-04-02 08:37:17 +0200 | 
| commit | b1ef9d324019d32f46611249cf7215dc0689b887 (patch) | |
| tree | 94756204efa07a10a414d849d5581ca6832d2cab | |
| parent | 30d13fe5d8eb649f0e9f616b527993c644fa26de (diff) | |
Update to 1.20.0RC1
add new runtime options in provided configuration
| -rw-r--r-- | PHPINFO | 6 | ||||
| -rw-r--r-- | REFLECTION | 11 | ||||
| -rw-r--r-- | php-pecl-grpc.spec | 20 | 
3 files changed, 25 insertions, 12 deletions
@@ -2,4 +2,8 @@  grpc  grpc support => enabled -grpc module version => 1.19.0 +grpc module version => 1.20.0RC1 + +Directive => Local Value => Master Value +grpc.enable_fork_support => 0 => 0 +grpc.poll_strategy => no value => no value @@ -1,4 +1,13 @@ -Extension [ <persistent> extension #200 grpc version 1.19.0 ] { +Extension [ <persistent> extension #201 grpc version 1.20.0RC1 ] { + +  - INI { +    Entry [ grpc.enable_fork_support <SYSTEM> ] +      Current = '0' +    } +    Entry [ grpc.poll_strategy <SYSTEM> ] +      Current = '' +    } +  }    - Constants [41] {      Constant [ integer Grpc\CALL_OK ] { 0 } diff --git a/php-pecl-grpc.spec b/php-pecl-grpc.spec index b5e89bb..1d1bc2d 100644 --- a/php-pecl-grpc.spec +++ b/php-pecl-grpc.spec @@ -24,8 +24,8 @@  %else  %global ini_name  40-%{pecl_name}.ini  %endif -%global upstream_version 1.19.0 -#global upstream_prever  RC1 +%global upstream_version 1.20.0 +%global upstream_prever  RC1  Summary:        General RPC framework  Name:           %{?sub_prefix}php-pecl-%{pecl_name} @@ -58,14 +58,6 @@ Provides:       %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa}  = %{version}-%{rele  %if "%{?vendor}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel}  # Other third party repo stuff -%if "%{php_version}" > "5.6" -Obsoletes:     php56u-pecl-%{pecl_name} <= %{version} -Obsoletes:     php56w-pecl-%{pecl_name} <= %{version} -%endif -%if "%{php_version}" > "7.0" -Obsoletes:     php70u-pecl-%{pecl_name} <= %{version} -Obsoletes:     php70w-pecl-%{pecl_name} <= %{version} -%endif  %if "%{php_version}" > "7.1"  Obsoletes:     php71u-pecl-%{pecl_name} <= %{version}  Obsoletes:     php71w-pecl-%{pecl_name} <= %{version} @@ -126,6 +118,10 @@ cp -pr NTS ZTS  cat << 'EOF' | tee %{ini_name}  ; Enable "%{summary}" extension module  extension=%{pecl_name}.so + +; Configuration +;grpc.enable_fork_support = 0 +;grpc.poll_strategy = ''  EOF @@ -227,6 +223,10 @@ cd ../ZTS  %changelog +* Tue Apr  2 2019 Remi Collet <remi@remirepo.net> - 1.20.0~RC1-1 +- Update to 1.20.0RC1 +- add new runtime options in provided configuration +  * Wed Feb 27 2019 Remi Collet <remi@remirepo.net> - 1.19.0-1  - Update to 1.19.0  | 
