From 74c887b04ec52131e89b709297fc86e4035a0a9d Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Tue, 5 Mar 2024 20:54:38 +0100 Subject: [PATCH] [ci skip] NEWS and UPGRADING --- NEWS | 7 ++++++- UPGRADING | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 5153e955322..537343c315f 100644 --- a/NEWS +++ b/NEWS @@ -13,7 +13,8 @@ PHP NEWS array to hashed). (ilutov) . Fixed zend fiber build for solaris default mode (32 bits). (David Carlier) . Fixed zend call stack size for macOs/arm64. (David Carlier) - . Added support for Zend Max Execution Timers on FreeBSD (Kévin Dunglas) + . Added support for Zend Max Execution Timers on FreeBSD. (Kévin Dunglas) + . Ensure fiber stack is not backed by THP. (crrodriguez) - Curl: . Deprecated the CURLOPT_BINARYTRANSFER constant. (divinity76) @@ -104,6 +105,7 @@ PHP NEWS - PCRE: . Upgrade bundled pcre2lib to version 10.43. (nielsdos) + . Add "/r" modifier. (Ayesh) - PDO: . Fixed setAttribute and getAttribute. (SakiTakamachi) @@ -209,6 +211,9 @@ PHP NEWS - XML: . Added XML_OPTION_PARSE_HUGE parser option. (nielsdos) +- XMLReader: + . Declares class constant types. (Ayesh) + - XSL: . Implement request #64137 (XSLTProcessor::setParameter() should allow both quotes to be used). (nielsdos) diff --git a/UPGRADING b/UPGRADING index 3381218333d..97186fc9ddc 100644 --- a/UPGRADING +++ b/UPGRADING @@ -555,6 +555,8 @@ PHP 8.4 UPGRADE NOTES * The performance of strspn() and strcspn() is greatly improved. They now run in linear time instead of being bounded by quadratic time. +* Improved the performance of strpbrk(). + * mb_strcut() is much faster now for UTF-8 and UTF-16 strings. * Looking up mbstring encoding names is much faster now.