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

Changelog notes for DOMAttr value and nodeValue properties

This commit is contained in:
Tim Starling
2022-12-22 12:34:51 +11:00
committed by nielsdos
parent 076ddf2b05
commit 0cc028c374
2 changed files with 5 additions and 0 deletions

1
NEWS
View File

@@ -47,6 +47,7 @@ PHP NEWS
. Implement More Appropriate Date/Time Exceptions RFC. (Derick)
- DOM:
. Fix bug GH-8388 (DOMAttr unescapes character reference). (Tim Starling)
. Fix bug GH-11308 (getElementsByTagName() is O(N^2)). (nielsdos)
- Exif:

View File

@@ -44,6 +44,10 @@ PHP 8.3 UPGRADE NOTES
. Static variable initializers can now contain arbitrary expressions.
RFC: https://wiki.php.net/rfc/arbitrary_static_variable_initializers
- DOM:
. Assignment to DOMAttr::$value and DOMAttr::$nodeValue no longer expands
entities in the new value.
- FFI:
. C functions that have a return type of void now return null instead of
returning the following object object(FFI\CData:void) { }