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
2023-07-03 21:33:21 +02:00
parent 87e7b61d8f
commit c585c0c0d4
2 changed files with 6 additions and 0 deletions

2
NEWS
View File

@@ -16,6 +16,8 @@ PHP NEWS
output). (nielsdos)
. Implemented DOMDocument::adoptNode(). Previously this always threw a
"not yet implemented" exception. (nielsdos)
. Fixed bug GH-9628 (Implicitly removing nodes from \DOMDocument breaks
existing references). (nielsdos)
- Fileinfo:
. Fix GH-11408 (Unable to build PHP 8.3.0 alpha 1 / fileinfo extension).

View File

@@ -267,6 +267,10 @@ PHP 8.3 UPGRADE NOTES
9. Other Changes to Extensions
========================================
- DOM:
. The DOM lifetime mechanism has been reworked such that implicitly removed
nodes can still be fetched. Previously this resulted in an exception.
- SQLite3
. The SQLite3 class now throws \SQLite3Exception (extends \Exception) instead
of \Exception.