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

Update NEWS and UPGRADING for ext/session changes

This commit is contained in:
Gina Peter Banyard
2026-02-16 11:51:48 +00:00
parent 86b4921157
commit 45029f33be
2 changed files with 8 additions and 0 deletions

4
NEWS
View File

@@ -87,6 +87,10 @@ PHP NEWS
. Fixed bug GH-20217 (ReflectionClass::isIterable() incorrectly returns true
for classes with property hooks). (alexandre-daubois)
- Session:
. Fixed bug 71162 (updateTimestamp never called when session data is empty).
(Girgias)
- Soap:
. Soap::__setCookie() when cookie name is a digit is now not stored and
represented as a string anymore but a int. (David Carlier)

View File

@@ -26,6 +26,10 @@ PHP 8.6 UPGRADE NOTES
- Session:
. A ValueError is not thrown if $name is a string containing null bytes in
session_module_name().
. session_encode() now returns an empty string instead of false for empty
sessions. It only returns false now when the session data could not be
encoded. This mainly happens with the default serialization handler
if a key contains the pipe | character.
- Standard:
. Invalid mode values now throw in array_filter() instead of being silently