From 87466523f86a356eabf35c8360f90378963f8df4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 3 Jul 2024 09:21:03 +0200 Subject: Update to 8.3.9 - http://www.php.net/releases/8_3_9.php --- failed.txt | 6 +--- php-gh14480.patch | 101 ------------------------------------------------------ php.spec | 11 +++--- 3 files changed, 7 insertions(+), 111 deletions(-) delete mode 100644 php-gh14480.patch diff --git a/failed.txt b/failed.txt index 16b1d65..edbd717 100644 --- a/failed.txt +++ b/failed.txt @@ -1,8 +1,7 @@ -===== 8.3.8 (2024-06-06) +===== 8.3.9 (2024-07-04) $ grep -ar 'Tests failed' /var/lib/mock/*/build.log -/var/lib/mock/scl83el7x/build.log:Tests failed : 2 /var/lib/mock/scl83el8a/build.log:Tests failed : 0 /var/lib/mock/scl83el8x/build.log:Tests failed : 0 /var/lib/mock/scl83el9a/build.log:Tests failed : 0 @@ -14,9 +13,6 @@ $ grep -ar 'Tests failed' /var/lib/mock/*/build.log /var/lib/mock/scl83fc40x/build.log:Tests failed : 0 -el7: - 5 ext/standard/tests/directory/bug74589_utf8.phpt - 3 ext/openssl/tests/openssl_error_string_basic.phpt (1) proc_open give erratic test results :( diff --git a/php-gh14480.patch b/php-gh14480.patch deleted file mode 100644 index 90a57cd..0000000 --- a/php-gh14480.patch +++ /dev/null @@ -1,101 +0,0 @@ -From 86b93bc479477e6c0de6207bfe59c1e276dfdafb Mon Sep 17 00:00:00 2001 -From: Dmitry Stogov -Date: Wed, 5 Jun 2024 23:53:31 +0300 -Subject: [PATCH] Fix GH-14480: Method visibility issue introduced in version - 8.3.8 (#14484) - ---- - Zend/tests/gh14480.phpt | 60 +++++++++++++++++++++++++++++++++++++++++ - Zend/zend_inheritance.c | 8 +++--- - 2 files changed, 65 insertions(+), 3 deletions(-) - create mode 100644 Zend/tests/gh14480.phpt - -diff --git a/Zend/tests/gh14480.phpt b/Zend/tests/gh14480.phpt -new file mode 100644 -index 0000000000000..bab74785b6b23 ---- /dev/null -+++ b/Zend/tests/gh14480.phpt -@@ -0,0 +1,60 @@ -+--TEST-- -+GH-14480: Method visibility issue -+--FILE-- -+splitPropertyParts(); -+ } -+} -+ -+trait SearchFilterTrait -+{ -+ use PropertyHelperTrait; -+} -+ -+abstract class AbstractFilter -+{ -+ use OrmPropertyHelperTrait, PropertyHelperTrait; -+ -+ public function apply(): void -+ { -+ $this->filterProperty(); -+ } -+ -+ abstract protected function filterProperty(): void; -+} -+ -+class SearchFilter extends AbstractFilter -+{ -+ use SearchFilterTrait; -+ protected function filterProperty(): void -+ { -+ $this->addJoinsForNestedProperty(); -+ } -+} -+ -+class FilterExtension -+{ -+ public function applyToCollection(): void -+ { -+ (new SearchFilter())->apply(); -+ } -+} -+ -+(new FilterExtension)->applyToCollection(); -+?> -+--EXPECT-- -+OK -diff --git a/Zend/zend_inheritance.c b/Zend/zend_inheritance.c -index 402354baa8..228c5b6e54 100644 ---- a/Zend/zend_inheritance.c -+++ b/Zend/zend_inheritance.c -@@ -2018,12 +2018,14 @@ static void zend_add_trait_method(zend_class_entry *ce, zend_string *name, zend_ - if (check_inheritance) { - /* Inherited members are overridden by members inserted by traits. - * Check whether the trait method fulfills the inheritance requirements. */ -+ uint32_t flags = ZEND_INHERITANCE_CHECK_PROTO | ZEND_INHERITANCE_CHECK_VISIBILITY; -+ if (!(existing_fn->common.scope->ce_flags & ZEND_ACC_TRAIT)) { -+ flags |= ZEND_INHERITANCE_SET_CHILD_CHANGED |ZEND_INHERITANCE_SET_CHILD_PROTO | -+ ZEND_INHERITANCE_RESET_CHILD_OVERRIDE; -+ } - do_inheritance_check_on_method( - fn, fixup_trait_scope(fn, ce), existing_fn, fixup_trait_scope(existing_fn, ce), -- ce, NULL, -- ZEND_INHERITANCE_CHECK_PROTO | ZEND_INHERITANCE_CHECK_VISIBILITY | -- ZEND_INHERITANCE_SET_CHILD_CHANGED| ZEND_INHERITANCE_SET_CHILD_PROTO | -- ZEND_INHERITANCE_RESET_CHILD_OVERRIDE); -+ ce, NULL, flags); - } - } - /* }}} */ diff --git a/php.spec b/php.spec index bc94b3b..a68180b 100644 --- a/php.spec +++ b/php.spec @@ -1,4 +1,4 @@ -# remirepo spec file for php82-php +# remirepo spec file for php83-php # with SCL and backport stuff, adapted from # # Fedora spec file for php @@ -129,14 +129,14 @@ #global gh_date 20230605 %global gh_owner php %global gh_project php-src -%global upver 8.3.8 +%global upver 8.3.9 #global rcver RC1 # TODO set PHP_EXTRA_VERSION for EOL version Summary: PHP scripting language for creating dynamic web sites Name: %{?scl_prefix}php Version: %{upver}%{?rcver:~%{rcver}}%{?gh_date:.%{gh_date}} -Release: 2%{?dist} +Release: 1%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -203,7 +203,6 @@ Patch48: php-8.3.0-openssl-ec-param.patch Patch91: php-7.2.0-oci8conf.patch # Upstream fixes (100+) -Patch100: php-gh14480.patch # Security fixes (200+) @@ -990,7 +989,6 @@ sed -e 's/php-devel/%{?scl_prefix}php-devel/' -i scripts/phpize.in %patch -P91 -p1 -b .remi-oci8 # upstream patches -%patch -P100 -p1 -b .gh14480 # security patches @@ -1876,6 +1874,9 @@ fi %changelog +* Wed Jul 3 2024 Remi Collet - 8.3.9-1 +- Update to 8.3.9 - http://www.php.net/releases/8_3_9.php + * Fri Jun 7 2024 Remi Collet - 8.3.8-2 - Fix GH-14480 Method visibility issue introduced in version 8.3.8 -- cgit