1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

[ci skip] NEWS and UPGRADING

This commit is contained in:
Niels Dossche
2024-03-05 20:54:38 +01:00
parent 5c8cc4f014
commit 74c887b04e
2 changed files with 8 additions and 1 deletions

7
NEWS
View File

@@ -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)

View File

@@ -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.