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

NEWS/UPGRADING

This commit is contained in:
Tim Düsterhus
2025-03-24 14:47:10 +01:00
committed by Niels Dossche
parent 8779e2a603
commit 0e95233aa2
2 changed files with 5 additions and 0 deletions

2
NEWS
View File

@@ -38,6 +38,8 @@ PHP NEWS
. Fixed bug GH-18033 (NULL-ptr dereference when using register_tick_function
in destructor). (nielsdos)
. Fixed bug GH-18026 (Improve "expecting token" error for ampersand). (ilutov)
. Added the (void) cast to indicate that not using a value is intentional.
(timwolla)
- Curl:
. Added curl_multi_get_handles(). (timwolla)

View File

@@ -106,6 +106,9 @@ PHP 8.5 UPGRADE NOTES
. Fatal Errors (such as an exceeded maximum execution time) now include a
backtrace.
RFC: https://wiki.php.net/rfc/error_backtraces_v2
. Added the (void) to indicate that not using a value is intentional. The
(void) cast does nothing by itself.
RFC: https://wiki.php.net/rfc/marking_return_value_as_important
- Curl:
. Added support for share handles that are persisted across multiple PHP