diff options
author | Remi Collet <remi@remirepo.net> | 2021-05-01 07:40:48 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-05-01 07:40:48 +0200 |
commit | c236b152ffee691dd009b06607109464fad9a0d8 (patch) | |
tree | a465855dd564ff52287a841ea6d36ebf12165727 | |
parent | 8696fbd39f91ca9a7fbd86d3850d56cec3511be4 (diff) |
update to 2.3.1 (beta)
-rw-r--r-- | PHPINFO | 2 | ||||
-rw-r--r-- | REFLECTION | 2 | ||||
-rw-r--r-- | php-pecl-xhprof.spec | 20 |
3 files changed, 9 insertions, 15 deletions
@@ -2,7 +2,7 @@ xhprof xhprof support => enabled -Version => 2.3.0 +Version => 2.3.1 Directive => Local Value => Master Value xhprof.output_dir => no value => no value @@ -1,4 +1,4 @@ -Extension [ <persistent> extension #119 xhprof version 2.3.0 ] { +Extension [ <persistent> extension #120 xhprof version 2.3.1 ] { - INI { Entry [ xhprof.output_dir <ALL> ] diff --git a/php-pecl-xhprof.spec b/php-pecl-xhprof.spec index 509b0a6..e2a5830 100644 --- a/php-pecl-xhprof.spec +++ b/php-pecl-xhprof.spec @@ -25,7 +25,7 @@ %global ini_name 40-%{pecl_name}.ini Name: %{?sub_prefix}php-pecl-xhprof -Version: 2.3.0 +Version: 2.3.1 Release: 1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} Summary: PHP extension for XHProf, a Hierarchical Profiler @@ -114,7 +114,7 @@ sed -e 's/role="php"/role="src"/' \ -i package.xml pushd %{pecl_name}-%{version}/extension -sed -e '/XHPROF_VERSION/s/%{version}-dev/%{version}/' -i php_xhprof.h +sed -e '/XHPROF_VERSION/s/2.3.0/%{version}/' -i php_xhprof.h # Sanity check, really often broken extver=$(sed -n '/#define XHPROF_VERSION/{s/.* "//;s/".*$//;p}' php_xhprof.h) if test "x${extver}" != "x%{version}"; then @@ -143,17 +143,8 @@ Alias /xhprof %{_datadir}/xhprof/xhprof_html <Directory %{_datadir}/xhprof/xhprof_html> # For security reason, the web interface # is only allowed from the server - <IfModule mod_authz_core.c> - # Apache 2.4 - Require local - </IfModule> - <IfModule !mod_authz_core.c> - # Apache 2.2 - Order Deny,Allow - Deny from All - Allow from 127.0.0.1 - Allow from ::1 - </IfModule> + + Require local </Directory> EOF @@ -287,6 +278,9 @@ fi %changelog +* Sat May 1 2021 Remi Collet <remi@remirepo.net> - 2.3.1-1 +- update to 2.3.1 (beta) + * Thu Apr 1 2021 Remi Collet <remi@remirepo.net> - 2.3.0-1 - update to 2.3.0 (beta) |