@@ -10,16 +10,48 @@ PHP NEWS
1010 (Nikita)
1111 . Fixed bug #49555 (Fatal error "Function must be a string" message should be
1212 renamed). (Nikita)
13+ . Fixed bug #70839 (Converting optional argument to variadic forbidden by LSP
14+ checks). (Nikita)
15+ . Fixed bug #69084 (Unclear error message when not implementing a renamed
16+ abstract trait function). (Nikita)
17+ . Fixed bug #62609 (Allow implementing Traversable on abstract classes).
18+ (Nikita)
19+ . Fixed bug #79462 (method_exists and property_exists incoherent behavior).
20+ (cmb)
21+ . Fixed bug #79368 ("Unexpected end of file" is not an acceptable error
22+ message). (Alex Dowad)
23+ . Fixed bug #36365 (scandir duplicates file name at every 65535th file).
24+ (cmb)
25+ . Use SSE2 instructions do locale independent strtolower. (Laruence)
26+ . Fixed bug #79521 (Check __set_state structure). (carusogabriel)
27+ . Fixed bug #79467 (data:// wrappers are writable). (cmb)
28+
29+ - BZ2:
30+ . Fixed bug #71263 (fread() does not report bzip2.decompress errors). (cmb)
31+
32+ - CURL:
33+ . Bumped required libcurl version to 7.29.0. (cmb)
1334
1435- Date:
1536 . Fixed bug #65547 (Default value for sunrise/sunset zenith still wrong).
1637 (cmb)
17- . Fixed bug #69044 (discrepency between time and microtime). (krakjoe)
38+ . Fixed bug #69044 (discrepancy between time and microtime). (krakjoe)
1839
1940- DOM:
2041 . Add property DOMXPath::$registerNodeNamespaces and constructor argument
2142 that allow global flag to configure query() or evaluate() calls.
2243
44+ - Enchant:
45+ . Add LIBENCHANT_VERSION macro
46+ . Deprecate enchant_broker_set_dict_path, enchant_broker_get_dict_path
47+ enchant_dict_add_to_personal and enchant_dict_is_in_session
48+ . Add enchant_dict_add and enchant_dict_is_added functions
49+ . Use libenchant-2 when available
50+
51+ - FPM:
52+ . Fixed bug #64865 (Search for .user.ini files from script dir up to
53+ CONTEXT_DOCUMENT_ROOT). (Will Bender)
54+
2355- GD:
2456 . Fixed bug #55005 (imagepolygon num_points requirement). (cmb)
2557 . Replaced gd resources with objects. (Mark Randall)
@@ -28,16 +60,22 @@ PHP NEWS
2860 . Removed deprecated png2wbmp() and jpeg2wbmp(). (cmb)
2961 . Added imagegetinterpolation(). (cmb)
3062
63+ - Iconv:
64+ . Dropped support for iconv without proper errno setting. (cmb)
65+
3166- Intl:
3267 . Removed deprecated INTL_IDNA_VARIANT_2003. (cmb)
3368
3469- JIT:
3570 . Fixed bug #77857 (Wrong result if executed with JIT). (Laruence)
71+ . Fixed bug #79255 (PHP cannot be compiled with enable JIT).
72+ (Laruence, Dmitry)
3673
3774- LDAP:
3875 . Removed deprecated ldap_sort. (mcmic)
3976
4077- MBString:
78+ . Fixed bug #76999 (mb_regex_set_options() return current options). (cmb)
4179 . Removed the unused $is_hex parameter from mb_decode_numericentity(). (cmb)
4280
4381- MySQLi:
@@ -48,13 +86,14 @@ PHP NEWS
4886 . Fixed #60594 (mysqlnd exposes 160 lines of stats in phpinfo). (PeeHaa)
4987
5088- OpCache:
51- . Fixed bug #78654 (Incorrectly computed opcache checksum on files with
89+ . Fixed bug #78654 (Incorrectly computed opcache checksum on files with
5290 non-ascii characters). (mhagstrand)
5391
5492- PCRE:
5593 . Don't ignore invalid escape sequences. (sjon)
5694
5795- PDO:
96+ . Changed default PDO error mode to exceptions. (AllenJB)
5897 . Fixed bug #77849 (Disable cloning of PDO handle/connection objects).
5998 (camporter)
6099
@@ -70,8 +109,17 @@ PHP NEWS
70109 . Fixed bug #77805 (phpdbg build fails when readline is shared). (krakjoe)
71110
72111- Reflection:
73- . Fixed bug #78697 (ReflectionClass::implementsInterface - inaccurate error
112+ . Fixed bug #78697 (ReflectionClass::implementsInterface - inaccurate error
74113 message with traits). (villfa)
114+ . Implement ReflectionProperty::hasDefaultValue and
115+ Reflection::getDefaultValue (beberlei)
116+ . Fixed bug #64592 (ReflectionClass::getMethods() returns methods out of
117+ scope). (Nikita)
118+ . Fixed bug #77325 (ReflectionClassConstant::$class returns wrong class when
119+ extending). (Nikita)
120+ . Fixed bug #69180 (Reflection does not honor trait conflict resolution /
121+ method aliasing). (Nikita)
122+ . Fixed bug #74939 (Nested traits' aliased methods are lowercased). (Nikita)
75123
76124- Session:
77125 . Fixed bug #78624 (session_gc return value for user defined session
@@ -95,6 +143,10 @@ PHP NEWS
95143 filter). (kkopachev)
96144 . Fixed bug #78385 (parse_url() does not include 'query' when question mark
97145 is the last char). (Islam Israfilov)
146+ . Fixed bug #75902 (str_replace should warn when misused with nested arrays).
147+ (Nikita)
148+ . Fixed bug #47983 (mixed LF and CRLF line endings in mail()). (cmb)
149+ . Made quoting of cmd execution functions consistent. (cmb)
98150
99151- tidy:
100152 . Removed the unused $use_include_path parameter from tidy_repair_string().
@@ -104,10 +156,32 @@ PHP NEWS
104156 . Fixed bug #76874 (xml_parser_free() should never leak memory). (Nikita)
105157
106158- XMLWriter:
107- . Changed functions to accept/return XMKWriter objects instead of resources.
159+ . Changed functions to accept/return XMLWriter objects instead of resources.
108160 (cmb)
109161
110162- Zip:
111- . Fixed bug #72374 (remove_path strips first char of filename). (tyage)
163+ . Fixed bug #72374 (remove_path strips first char of filename). (tyage, Remi)
164+ . Add ZipArchive::setMtimeName and ZipArchive::setMtimeIndex methods. (Remi)
165+ . Add ZipArchive::setProgressCallback method (since libzip 1.3.0). (Remi)
166+ . Add ZipArchive::setCancelCallback method (since libzip 1.6.0). (Remi)
167+ . Add optional "flags" parameter to ZipArchive::addEmptyDir, addFile and
168+ addFromString methods. (Remi)
169+ . Add "flags" options to ZipArchive::addGlob and addPattern methods
170+ keeping previous behavior having FL_OVERWRITE by default. (Remi)
171+ . Add ZipArchive::replaceFile() method. (Remi)
172+ . Add lastId property to ZipArchive. (Remi)
173+ . ZipArchive::status and ZipArchive::statusSys properties and
174+ ZipArchive::getStatusString() method stay valid after the archive
175+ is closed. (Remi)
176+ . Fixed bug #50678 (files extracted by ZipArchive class lost their
177+ original modified time). (Remi)
178+ . Implemented FR #77960 (add compression / encryption options for
179+ ZipArchive::addGlob and ZipArchive::addPattern). (Remi)
180+ . Add ZipArchive::EM_UNKNOWN and ZipArchive::EM_TRAD_PKWARE constants. (Remi)
181+ . Add ZipArchive::isCompressionMethodSupported() and
182+ ZipArchive::isEncryptionMethodSupported() method (libzip 1.7.0). (Remi)
183+
184+ - Zlib:
185+ . Fixed bug #71417 (fread() does not report zlib.inflate errors). (cmb)
112186
113187<<< NOTE: Insert NEWS from last stable release here prior to actual release! >>>
0 commit comments