@@ -6,6 +6,11 @@ PHP NEWS
66 . Implemented partial function application RFC. (Arnaud)
77 . Fixed bug GH-22263 (reset typed property default on every unserialize
88 failure path). (David Carlier)
9+ . Fixed bug GH-18985 (Wrong line numbers for match with constant arms).
10+ (ilutov)
11+ . Fixed bug GH-18847 (SEGV in zend_fetch_debug_backtrace() when the memory
12+ limit is reached while the tracing JIT enters a call frame). (Arnaud,
13+ iliaal)
914
1015- DOM:
1116 . Fixed bug GH-22825 (DOMElement::setAttribute() fails silently when the DTD
@@ -22,6 +27,7 @@ PHP NEWS
2227- Intl:
2328 . Fixed grammatical issues in Normalizer invalid form and IntlCalendar time
2429 zone offset error messages. (Weilin Du)
30+ . Removed the dependency on the ICU IO library. (Weilin Du)
2531
2632- ODBC:
2733 . Fixed bug GH-22668 (Heap buffer over-read when a column value exceeds the
@@ -38,6 +44,10 @@ PHP NEWS
3844 . Fixed bug GH-22665 (Out-of-bounds write when the ODBC driver reports a
3945 diagnostic message length beyond the error buffer). (iliaal)
4046
47+ - Phar:
48+ . Fixed grammatical issues and outdated terminology in Phar error messages.
49+ (Weilin Du)
50+
4151- Reflection:
4252 . Fixed bug GH-22681 (Reflection*::__toString() truncates on null bytes).
4353 (DanielEScherzer)
@@ -59,6 +69,10 @@ PHP NEWS
5969 . Added a new IO copy API used by php_stream_copy_to_stream_ex() that
6070 leverages platform primitives (sendfile, splice, copy_file_range,
6171 TransmitFile) for faster stream copying. (Jakub Zelenka, David Carlier)
72+ . Fixed bug GH-22841 (php_stream_copy_to_stream_ex() drops progress
73+ notifications when using the copy fast path). (David Carlier)
74+ . Fixed bug GH-15836 (Use-after-free when a user stream filter accesses
75+ $this->stream during the close flush). (iliaal)
6276
637716 Jul 2026, PHP 8.6.0alpha2
6478
@@ -212,7 +226,7 @@ PHP NEWS
212226 . Fix OSS-Fuzz #429429090 (Failed assertion on unset() with uninitialized
213227 container). (ilutov)
214228 . Fixed GH-20564 (Don't call autoloaders with pending exception). (ilutov)
215- . Fix deprecation now showing when accessing null key of an array with JIT.
229+ . Fix deprecation not showing when accessing null key of an array with JIT.
216230 (alexandre-daubois)
217231 . Fixed bug GH-20174 (Assertion failure in
218232 ReflectionProperty::skipLazyInitialization after failed LazyProxy
@@ -356,6 +370,8 @@ PHP NEWS
356370 and Openssl\Session class. (Jakub Zelenka)
357371 . Added TLS external PSK support for streams with new context options and
358372 Openssl\Psk class. (Jakub Zelenka)
373+ . Added TLS 1.3 early data (0-RTT) support for streams with new context
374+ options early_data, max_early_data and early_data_cb. (Jakub Zelenka)
359375 . Added stream crypto status for exposing OpenSSL WANT_READ / WANT_WRITE.
360376 (Jakub Zelenka)
361377
0 commit comments