2015-07-21 22:36:36 +08:00
|
|
|
|
PHP NEWS
|
1999-07-23 07:54:54 +08:00
|
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
2024-01-31 04:42:45 +08:00
|
|
|
|
?? ??? ????, PHP 8.3.4
|
|
|
|
|
|
2024-02-14 04:55:24 +08:00
|
|
|
|
- Core:
|
|
|
|
|
. Fix ZTS persistent resource crashes on shutdown. (nielsdos)
|
|
|
|
|
|
2024-02-01 03:03:55 +08:00
|
|
|
|
- Curl:
|
|
|
|
|
. Fix failing tests due to string changes in libcurl 8.6.0. (Ayesh)
|
2024-01-31 01:43:37 +08:00
|
|
|
|
|
2024-02-06 05:48:00 +08:00
|
|
|
|
- DOM:
|
|
|
|
|
. Fix unlikely memory leak in case of namespace removal with extremely deep
|
|
|
|
|
trees. (nielsdos)
|
2024-02-26 05:59:20 +08:00
|
|
|
|
. Fix reference access in dimensions for DOMNodeList and DOMNodeMap.
|
|
|
|
|
(nielsdos)
|
2024-02-06 05:48:00 +08:00
|
|
|
|
|
2024-02-11 08:02:57 +08:00
|
|
|
|
- Fileinfo:
|
|
|
|
|
. Fixed bug GH-13344 (finfo::buffer(): Failed identify data 0:(null),
|
|
|
|
|
backport). (nielsdos)
|
|
|
|
|
|
2024-01-19 22:41:46 +08:00
|
|
|
|
- FPM:
|
|
|
|
|
. Fixed bug #75712 (getenv in php-fpm should not read $_ENV, $_SERVER).
|
|
|
|
|
(Jakub Zelenka)
|
|
|
|
|
|
Fix detection of image formats in system gd library
- Use gdFontCacheShutdown() to detect freetype
Currently we look for gdImageStringFT() to determine whether or not gd
has freetype support... but that function always exists. This leads
PHP to believe that gd has freetype support when it does not, and can
lead to build failures.
The gdFontCacheShutdown() function, on the other hand, is only present
when gd was built with freetype support. Let's use that instead.
- Fix GD image format detection
We currently check for, say, AVIF support by attempting to link a
program that calls libgd's gdImageCreateFromAvif() function. But
perversely, that function always exists in libgd; moreover when AVIF
support is missing it emits a warning and returns normally. Thus
our straightforward link test becomes not so straightforward.
This commit adds a new macro PHP_GD_CHECK_FORMAT that compiles, links,
and runs a test program instead. The test program overrides that "emit
a warning" handler so that the program actually fails if the format
we're looking for is not supported. This fixes detection of AVIF and
the other formats we check for in an external libgd.
- ext/gd/tests/bug77391.phpt: skip if gd lacks BMP support
I don't actually know how to remove BMP support from libgd, but PHP
has a ./configure test for it, so we should probably treat it as
optional.
Closes GH-12019
2024-02-26 20:59:21 +08:00
|
|
|
|
- GD:
|
|
|
|
|
. Fixed bug GH-12019 (detection of image formats in system gd library).
|
|
|
|
|
(Michael Orlitzky)
|
|
|
|
|
|
2024-02-10 09:26:52 +08:00
|
|
|
|
- MySQLnd:
|
|
|
|
|
. Fixed bug GH-11950 ([mysqlnd] Fixed not to set CR_MALFORMED_PACKET to error
|
|
|
|
|
if CR_SERVER_GONE_ERROR is already set). (Saki Takamachi)
|
|
|
|
|
|
2024-02-27 23:31:48 +08:00
|
|
|
|
- PDO:
|
|
|
|
|
. Fix various PDORow bugs. (Girgias)
|
|
|
|
|
|
2024-02-09 02:16:57 +08:00
|
|
|
|
- PGSQL:
|
|
|
|
|
. Fixed bug GH-13354 (pg_execute/pg_send_query_params/pg_send_execute
|
|
|
|
|
with null value passed by reference). (George Barbarosie)
|
2024-02-27 03:36:42 +08:00
|
|
|
|
. Fixed bug GH-13519 (PGSQL_CONNECT_FORCE_RENEW not working with persistent
|
|
|
|
|
connections. (David Carlier)
|
2024-02-09 02:16:57 +08:00
|
|
|
|
|
2024-01-31 20:15:49 +08:00
|
|
|
|
- Standard:
|
|
|
|
|
. Fixed bug GH-13279 (Instable array during in-place modification in uksort).
|
|
|
|
|
(ilutov)
|
2024-02-05 00:17:36 +08:00
|
|
|
|
. Fixed array key as hash to string (case insensitive) comparison typo
|
|
|
|
|
for the second operand buffer size (albeit unused for now). (A. Slepykh)
|
2024-01-02 23:50:36 +08:00
|
|
|
|
|
2024-02-06 05:55:52 +08:00
|
|
|
|
15 Feb 2024, PHP 8.3.3
|
2024-02-06 05:48:00 +08:00
|
|
|
|
|
2024-01-06 02:46:27 +08:00
|
|
|
|
- Core:
|
|
|
|
|
. Fixed timer leak in zend-max-execution-timers builds. (withinboredom)
|
2024-01-10 16:06:41 +08:00
|
|
|
|
. Fixed bug GH-12349 (linking failure on ARM with mold). (Jan Palus)
|
2024-01-16 03:21:30 +08:00
|
|
|
|
. Fixed bug GH-13097 (Anonymous class reference in trigger_error / thrown
|
|
|
|
|
Exception). (nielsdos)
|
2024-01-18 00:13:35 +08:00
|
|
|
|
. Fixed bug GH-13177 (PHP 8.3.2: final private constructor not allowed
|
|
|
|
|
when used in trait). (nielsdos)
|
2024-01-22 17:59:34 +08:00
|
|
|
|
. Fixed bug GH-13215 (GCC 14 build failure). (Remi)
|
2024-01-10 03:13:22 +08:00
|
|
|
|
|
2024-01-16 05:11:47 +08:00
|
|
|
|
- Curl:
|
|
|
|
|
. Fix missing error check in curl_multi_init(). (divinity76)
|
|
|
|
|
|
2024-01-04 22:51:20 +08:00
|
|
|
|
- FPM:
|
|
|
|
|
. Fixed bug GH-12996 (Incorrect SCRIPT_NAME with Apache ProxyPassMatch when
|
|
|
|
|
plus in path). (Jakub Zelenka)
|
|
|
|
|
|
2024-01-25 05:12:49 +08:00
|
|
|
|
- GD:
|
|
|
|
|
. Fixed bug GH-10344 (imagettfbbox(): Could not find/open font UNC path).
|
|
|
|
|
(nielsdos)
|
2024-01-26 06:30:23 +08:00
|
|
|
|
. Fixed bug GH-10614 (imagerotate will turn the picture all black, when
|
|
|
|
|
rotated 90). (nielsdos)
|
2024-01-25 05:12:49 +08:00
|
|
|
|
|
2023-12-23 06:24:34 +08:00
|
|
|
|
- LibXML:
|
|
|
|
|
. Fix crashes with entity references and predefined entities. (nielsdos)
|
|
|
|
|
|
2023-11-24 21:47:34 +08:00
|
|
|
|
- MySQLnd:
|
|
|
|
|
. Fixed bug GH-12107 (When running a stored procedure (that returns a result
|
|
|
|
|
set) twice, PHP crashes). (nielsdos)
|
|
|
|
|
|
2024-01-15 01:10:05 +08:00
|
|
|
|
- Opcache:
|
|
|
|
|
. Fixed bug GH-13145 (strtok() is not comptime). (ilutov)
|
2024-01-17 02:54:18 +08:00
|
|
|
|
. Fixed type inference of range(). (ilutov)
|
2024-01-24 02:59:40 +08:00
|
|
|
|
. Fixed bug GH-13232 (Segmentation fault will be reported when JIT is off but
|
|
|
|
|
JIT_debug is still on). (nielsdos)
|
2024-01-15 01:10:05 +08:00
|
|
|
|
|
2023-12-10 11:37:13 +08:00
|
|
|
|
- OpenSSL:
|
|
|
|
|
. Fixed LibreSSL undefined reference when OPENSSL_NO_ENGINE not set.
|
|
|
|
|
(David Carlier).
|
|
|
|
|
|
2024-01-13 23:30:21 +08:00
|
|
|
|
- PDO_Firebird:
|
|
|
|
|
. Fix GH-13119 (Changed to convert float and double values into strings using
|
|
|
|
|
`H` format). (SakiTakamachi)
|
|
|
|
|
|
2024-01-04 03:23:56 +08:00
|
|
|
|
- Phar:
|
|
|
|
|
. Fixed bug #71465 (PHAR doesn't know about litespeed). (nielsdos)
|
2023-12-29 05:41:32 +08:00
|
|
|
|
. Fixed bug GH-13037 (PharData incorrectly extracts zip file). (nielsdos)
|
2024-01-02 23:50:36 +08:00
|
|
|
|
|
2024-01-14 20:01:29 +08:00
|
|
|
|
- Random:
|
|
|
|
|
. Fixed bug GH-13138 (Randomizer::pickArrayKeys() does not detect broken
|
|
|
|
|
engines). (timwolla)
|
|
|
|
|
|
2024-01-21 06:04:33 +08:00
|
|
|
|
- Session:
|
|
|
|
|
. Fixed bug GH-12504 (Corrupted session written when there's a fatal error
|
|
|
|
|
in autoloader). (nielsdos)
|
|
|
|
|
|
2024-01-10 03:13:22 +08:00
|
|
|
|
- Standard:
|
|
|
|
|
. Fixed bug GH-13094 (range(9.9, '0') causes segmentation fault). (nielsdos)
|
|
|
|
|
|
2024-01-13 07:28:57 +08:00
|
|
|
|
- Streams:
|
|
|
|
|
. Fixed bug GH-13071 (Copying large files using mmap-able source streams may
|
|
|
|
|
exhaust available memory and fail). (nielsdos)
|
|
|
|
|
|
2024-01-02 23:50:36 +08:00
|
|
|
|
18 Jan 2024, PHP 8.3.2
|
2023-12-05 23:56:55 +08:00
|
|
|
|
|
2023-12-15 03:32:12 +08:00
|
|
|
|
- Core:
|
|
|
|
|
. Fixed bug GH-12953 (false positive SSA integrity verification failed when
|
|
|
|
|
loading composer classmaps with more than 11k elements). (nielsdos)
|
2023-12-28 06:26:37 +08:00
|
|
|
|
. Fixed bug GH-12999 (zend_strnlen build when strnlen is unsupported).
|
|
|
|
|
(rainerjung)
|
|
|
|
|
. Fixed bug GH-12966 (missing cross-compiling 3rd argument so Autoconf
|
|
|
|
|
doesn't emit warnings). (Peter Kokot)
|
|
|
|
|
. Fixed bug GH-12854 (8.3 - as final trait-used method does not correctly
|
|
|
|
|
report visibility in Reflection). (nielsdos)
|
2023-12-15 03:32:12 +08:00
|
|
|
|
|
2023-12-07 02:57:35 +08:00
|
|
|
|
- Cli:
|
|
|
|
|
. Fix incorrect timeout in built-in web server when using router script and
|
|
|
|
|
max_input_time. (ilutov)
|
|
|
|
|
|
2023-12-09 00:19:17 +08:00
|
|
|
|
- DOM:
|
|
|
|
|
. Fixed bug GH-12870 (Creating an xmlns attribute results in a DOMException).
|
|
|
|
|
(nielsdos)
|
2023-12-23 04:12:59 +08:00
|
|
|
|
. Fix crash when toggleAttribute() is used without a document. (nielsdos)
|
2023-12-23 05:03:36 +08:00
|
|
|
|
. Fix crash in adoptNode with attribute references. (nielsdos)
|
2023-12-24 20:21:06 +08:00
|
|
|
|
. Fixed bug GH-13012 (DOMNode::isEqualNode() is incorrect when attribute
|
|
|
|
|
order is different). (nielsdos)
|
2023-12-09 00:19:17 +08:00
|
|
|
|
|
2023-12-11 06:30:04 +08:00
|
|
|
|
- FFI:
|
|
|
|
|
. Fixed bug GH-9698 (stream_wrapper_register crashes with FFI\CData).
|
|
|
|
|
(Jakub Zelenka)
|
2023-12-09 00:44:03 +08:00
|
|
|
|
. Fixed bug GH-12905 (FFI::new interacts badly with observers). (nielsdos)
|
2023-12-11 06:30:04 +08:00
|
|
|
|
|
2024-01-10 04:40:22 +08:00
|
|
|
|
- GD:
|
|
|
|
|
. Fixed GH-13082 undefined behavior with GdFont instances handling with
|
|
|
|
|
imageload* and imagechar*. (David Carlier)
|
|
|
|
|
|
2023-12-15 14:03:19 +08:00
|
|
|
|
- Intl:
|
|
|
|
|
. Fixed GH-12943 (IntlDateFormatter::__construct accepts 'C' as valid locale).
|
|
|
|
|
(David Carlier)
|
|
|
|
|
|
2023-12-12 06:40:26 +08:00
|
|
|
|
- Hash:
|
|
|
|
|
. Fixed bug GH-12936 (hash() function hangs endlessly if using sha512 on
|
|
|
|
|
strings >= 4GiB). (nielsdos)
|
|
|
|
|
|
2024-01-29 02:39:17 +08:00
|
|
|
|
- MBString:
|
|
|
|
|
. When operating on a string with invalid encoding, mb_substr (as well
|
|
|
|
|
as mb_strstr and its variants) defines character indices in the same
|
|
|
|
|
way as other mbstring functions such as mb_strpos. (Alex Dowad)
|
|
|
|
|
|
2023-12-27 06:47:45 +08:00
|
|
|
|
- ODBC:
|
|
|
|
|
. Fix crash on Apache shutdown with persistent connections. (nielsdos)
|
|
|
|
|
|
2023-12-08 19:56:30 +08:00
|
|
|
|
- Opcache:
|
|
|
|
|
. Fixed oss-fuzz #64727 (JIT undefined array key warning may overwrite DIM
|
|
|
|
|
with NULL when DIM is the same var as result). (ilutov)
|
2023-12-12 22:17:37 +08:00
|
|
|
|
. Added workaround for SELinux mprotect execheap issue.
|
|
|
|
|
See https://bugzilla.kernel.org/show_bug.cgi?id=218258. (ilutov)
|
2023-12-08 19:56:30 +08:00
|
|
|
|
|
2023-12-22 00:42:09 +08:00
|
|
|
|
- OpenSSL:
|
|
|
|
|
. Fixed bug GH-12987 (openssl_csr_sign might leak new cert on error).
|
|
|
|
|
(Jakub Zelenka)
|
|
|
|
|
|
2023-12-18 23:22:49 +08:00
|
|
|
|
- PDO:
|
|
|
|
|
. Fix GH-12969 (Fixed PDO::getAttribute() to get PDO::ATTR_STRINGIFY_FETCHES).
|
|
|
|
|
(SakiTakamachi)
|
|
|
|
|
|
2023-11-25 20:22:50 +08:00
|
|
|
|
- PDO_ODBC:
|
|
|
|
|
. Fixed bug GH-12767 (Unable to turn on autocommit mode with setAttribute()).
|
|
|
|
|
(SakiTakamachi)
|
|
|
|
|
|
2023-12-20 01:42:52 +08:00
|
|
|
|
- PGSQL:
|
|
|
|
|
. Fixed auto_reset_persistent handling and allow_persistent type. (David Carlier)
|
2023-12-27 06:47:45 +08:00
|
|
|
|
. Fixed bug GH-12974 (Apache crashes on shutdown when using pg_pconnect()).
|
|
|
|
|
(nielsdos)
|
2023-12-20 01:42:52 +08:00
|
|
|
|
|
2023-12-31 06:49:28 +08:00
|
|
|
|
- Phar:
|
|
|
|
|
. Fixed bug #77432 (Segmentation fault on including phar file). (nielsdos)
|
|
|
|
|
|
2023-12-17 08:35:15 +08:00
|
|
|
|
- PHPDBG:
|
|
|
|
|
. Fixed bug GH-12962 (Double free of init_file in phpdbg_prompt.c). (nielsdos)
|
|
|
|
|
|
2023-12-13 03:33:23 +08:00
|
|
|
|
- SimpleXML:
|
|
|
|
|
. Fix getting the address of an uninitialized property of a SimpleXMLElement
|
|
|
|
|
resulting in a crash. (nielsdos)
|
2023-12-13 04:05:58 +08:00
|
|
|
|
. Fixed bug GH-12929 (SimpleXMLElement with stream_wrapper_register can
|
|
|
|
|
segfault). (nielsdos)
|
2023-12-13 03:33:23 +08:00
|
|
|
|
|
2023-12-22 00:37:05 +08:00
|
|
|
|
- Tidy:
|
|
|
|
|
. Fixed bug GH-12980 (tidynode.props.attribute is missing
|
|
|
|
|
"Boolean Attributes" and empty attributes). (nielsdos)
|
|
|
|
|
|
2023-12-05 23:56:55 +08:00
|
|
|
|
07 Dec 2023, PHP 8.3.1RC1
|
2023-11-21 22:54:52 +08:00
|
|
|
|
|
2023-11-20 18:56:06 +08:00
|
|
|
|
- Core:
|
2023-11-25 07:57:22 +08:00
|
|
|
|
. Fixed bug GH-12758 / GH-12768 (Invalid opline in OOM handlers within
|
|
|
|
|
ZEND_FUNC_GET_ARGS and ZEND_BIND_STATIC). (Florian Engelhardt)
|
2023-12-01 03:27:07 +08:00
|
|
|
|
. Fix various missing NULL checks. (nielsdos, dstogov)
|
2023-11-30 20:41:07 +08:00
|
|
|
|
. Fixed bug GH-12835 (Leak of call->extra_named_params on internal __call).
|
|
|
|
|
(ilutov)
|
2023-11-30 03:35:13 +08:00
|
|
|
|
. Fixed bug GH-12826 (Weird pointers issue in nested loops). (nielsdos)
|
2023-11-20 18:56:06 +08:00
|
|
|
|
|
2023-11-18 00:32:23 +08:00
|
|
|
|
- FPM:
|
|
|
|
|
. Fixed bug GH-12705 (Segmentation fault in fpm_status_export_to_zval).
|
|
|
|
|
(Patrick Prasse)
|
2023-11-11 21:15:23 +08:00
|
|
|
|
|
2023-12-02 23:20:15 +08:00
|
|
|
|
- FTP:
|
|
|
|
|
. Fixed bug GH-9348 (FTP & SSL session reuse). (nielsdos)
|
2023-11-11 21:15:23 +08:00
|
|
|
|
|
2023-11-18 02:45:40 +08:00
|
|
|
|
- LibXML:
|
2023-11-30 03:49:29 +08:00
|
|
|
|
. Fixed test failures for libxml2 2.12.0. (nielsdos)
|
2023-11-18 02:45:40 +08:00
|
|
|
|
|
2023-08-25 23:43:01 +08:00
|
|
|
|
- MySQLnd:
|
|
|
|
|
. Avoid using uninitialised struct. (mikhainin)
|
2023-11-27 20:25:11 +08:00
|
|
|
|
. Fixed bug GH-12791 (Possible dereference of NULL in MySQLnd debug code).
|
|
|
|
|
(nielsdos)
|
2023-08-25 23:43:01 +08:00
|
|
|
|
|
2023-11-28 00:04:41 +08:00
|
|
|
|
- Opcache:
|
|
|
|
|
. Fixed JIT bug (Function JIT emits "Uninitialized string offset" warning
|
|
|
|
|
at the same time as invalid offset Error). (Girgias)
|
2023-11-28 00:19:35 +08:00
|
|
|
|
. Fixed JIT bug (JIT emits "Attempt to assign property of non-object"
|
|
|
|
|
warning at the same time as Error is being thrown). (Girgias)
|
2023-11-28 00:04:41 +08:00
|
|
|
|
|
2023-12-03 15:59:21 +08:00
|
|
|
|
- PDO PGSQL:
|
|
|
|
|
. Fixed the default value of $fetchMode in PDO::pgsqlGetNotify() (kocsismate)
|
|
|
|
|
|
2023-12-01 03:43:50 +08:00
|
|
|
|
- SOAP:
|
|
|
|
|
. Fixed bug GH-12838 ([SOAP] Temporary WSDL cache files not being deleted).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
|
2023-11-22 12:09:40 +08:00
|
|
|
|
- Standard
|
2023-11-22 12:14:37 +08:00
|
|
|
|
. Fixed GH-12745 (http_build_query() default null argument for $arg_separator
|
2023-11-22 12:09:40 +08:00
|
|
|
|
is implicitly coerced to string). (Girgias)
|
2023-11-21 22:54:52 +08:00
|
|
|
|
|
2023-11-21 22:00:51 +08:00
|
|
|
|
23 Nov 2023, PHP 8.3.0
|
2023-11-08 04:13:42 +08:00
|
|
|
|
|
2023-11-21 22:00:51 +08:00
|
|
|
|
- Bcmath
|
|
|
|
|
. Fixed GH-11761 (removing trailing zeros from numbers) (jorgsowa)
|
2022-08-16 23:39:53 +08:00
|
|
|
|
|
2022-02-09 02:28:24 +08:00
|
|
|
|
- CLI:
|
|
|
|
|
. Added pdeathsig to builtin server to terminate workers when the master
|
|
|
|
|
process is killed. (ilutov)
|
2023-05-01 05:33:41 +08:00
|
|
|
|
. Fixed bug GH-11104 (STDIN/STDOUT/STDERR is not available for CLI without
|
|
|
|
|
a script). (nielsdos)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Implement GH-10024 (support linting multiple files at once using php -l).
|
|
|
|
|
(nielsdos)
|
2022-02-09 02:28:24 +08:00
|
|
|
|
|
2022-08-26 22:33:47 +08:00
|
|
|
|
- Core:
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Fix GH-11388 (Allow "final" modifier when importing a method from a trait).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
. Fixed bug GH-11406 (segfault with unpacking and magic method closure).
|
|
|
|
|
(nielsdos)
|
2022-08-26 22:33:47 +08:00
|
|
|
|
. Fixed bug GH-9388 (Improve unset property and __get type incompatibility
|
|
|
|
|
error message). (ilutov)
|
2022-09-27 05:02:56 +08:00
|
|
|
|
. SA_ONSTACK is now set for signal handlers to be friendlier to other
|
|
|
|
|
in-process code such as Go's cgo. (Kévin Dunglas)
|
2022-10-16 18:21:40 +08:00
|
|
|
|
. SA_ONSTACK is now set when signals are disabled. (Kévin Dunglas)
|
2022-10-22 17:17:27 +08:00
|
|
|
|
. Fix GH-9649: Signal handlers now do a no-op instead of crashing when
|
|
|
|
|
executed on threads not managed by TSRM. (Kévin Dunglas)
|
2022-07-26 18:52:48 +08:00
|
|
|
|
. Added shadow stack support for fibers. (Chen Hu)
|
2022-11-11 22:55:03 +08:00
|
|
|
|
. Fix bug GH-9965 (Fix accidental caching of default arguments with side
|
|
|
|
|
effects). (ilutov)
|
2023-01-05 21:24:44 +08:00
|
|
|
|
. Implement GH-10217 (Use strlen() for determining the class_name length).
|
|
|
|
|
(Dennis Buteyn)
|
2022-08-04 20:12:45 +08:00
|
|
|
|
. Fix bug GH-8821 (Improve line numbers for errors in constant expressions).
|
|
|
|
|
(ilutov)
|
2022-12-12 07:23:46 +08:00
|
|
|
|
. Fix bug GH-10083 (Allow comments between & and parameter). (ilutov)
|
2023-03-10 23:22:42 +08:00
|
|
|
|
. Zend Max Execution Timers is now enabled by default for ZTS builds on
|
|
|
|
|
Linux. (Kévin Dunglas)
|
2023-03-23 21:35:50 +08:00
|
|
|
|
. Fix bug GH-10469 (Disallow .. in open_basedir paths set at runtime).
|
|
|
|
|
(ilutov)
|
2023-04-05 17:24:06 +08:00
|
|
|
|
. Fix bug GH-10168, GH-10582 (Various segfaults with destructors and VM return
|
|
|
|
|
values). (dstogov, nielsdos, ilutov)
|
2023-03-26 01:34:06 +08:00
|
|
|
|
. Fix bug GH-10935 (Use of trait doesn't redeclare static property if class
|
|
|
|
|
has inherited it from its parent). (ilutov)
|
2023-04-28 23:12:31 +08:00
|
|
|
|
. Fix bug GH-11154 (Negative indices on empty array don't affect next chosen
|
|
|
|
|
index). (ColinHDev)
|
2023-05-11 02:38:33 +08:00
|
|
|
|
. Fix bug GH-8846 (Implement delayed early binding for classes without
|
|
|
|
|
parents). (ilutov)
|
2022-12-05 04:59:18 +08:00
|
|
|
|
. Fix bug #79836 (Segfault in concat_function). (nielsdos)
|
|
|
|
|
. Fix bug #81705 (type confusion/UAF on set_error_handler with concat
|
|
|
|
|
operation). (nielsdos)
|
2023-06-04 02:15:23 +08:00
|
|
|
|
. Fix GH-11348 (Closure created from magic method does not accept named
|
|
|
|
|
arguments). (nielsdos)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Fix GH-11388 (Allow "final" modifier when importing a method from a trait).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
. Fixed bug GH-11406 (segfault with unpacking and magic method closure).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
. Fixed bug GH-11507 (String concatenation performance regression in 8.3).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
. Fixed GH-11488 (Missing "Optional parameter before required" deprecation on
|
|
|
|
|
union null type). (ilutov)
|
|
|
|
|
. Implement the #[\Override] attribute RFC. (timwolla)
|
|
|
|
|
. Fixed bug GH-11601 (Incorrect handling of unwind and graceful exit
|
|
|
|
|
exceptions). (ilutov)
|
|
|
|
|
. Added zend_call_stack_get implementation for OpenBSD. (David Carlier)
|
|
|
|
|
. Add stack limit check in zend_eval_const_expr(). (Arnaud)
|
|
|
|
|
. Expose time spent collecting cycles in gc_status(). (Arnaud)
|
|
|
|
|
. Remove WeakMap entries whose key is only reachable through the entry value.
|
|
|
|
|
(Arnaud)
|
|
|
|
|
. Resolve open_basedir paths on INI update. (ilutov)
|
|
|
|
|
. Fixed oss-fuzz #60741 (Leak in open_basedir). (ilutov)
|
|
|
|
|
. Fixed segfault during freeing of some incompletely initialized objects due
|
|
|
|
|
to OOM error (PDO, SPL, XSL). (ilutov)
|
|
|
|
|
. Introduced Zend guard recursion protection to fix __debugInfo issue.
|
|
|
|
|
(Jakub Zelenka)
|
|
|
|
|
. Fixed oss-fuzz #61712 (assertion failure with error handler during binary
|
|
|
|
|
op). (nielsdos)
|
|
|
|
|
. Fixed GH-11847 (DTrace enabled build is broken). (Filip Zrůst)
|
|
|
|
|
. Fixed OSS Fuzz #61865 (Undef variable in ++/-- for declared property
|
|
|
|
|
that is unset in error handler). (Girgias)
|
|
|
|
|
. Fixed warning emitted when checking if a user stream is castable. (Girgias)
|
|
|
|
|
. Fixed bug GH-12123 (Compile error on MacOS with C++ extension when using
|
|
|
|
|
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX). (kocsismate)
|
|
|
|
|
. Fixed bug GH-12189 (#[Override] attribute in trait does not check for
|
|
|
|
|
parent class implementations). (timwolla)
|
|
|
|
|
. Fixed OSS Fuzz #62294 (Unsetting variable after ++/-- on string variable
|
|
|
|
|
warning). (Girgias)
|
|
|
|
|
. Fixed buffer underflow when compiling memoized expression. (ilutov)
|
|
|
|
|
. Fixed oss-fuzz #63802 (OP1 leak in error path of post inc/dec). (ilutov)
|
|
|
|
|
|
|
|
|
|
- Curl:
|
|
|
|
|
. Added Curl options and constants up to (including) version 7.87.
|
|
|
|
|
(nielsdos, adoy)
|
2022-08-26 22:33:47 +08:00
|
|
|
|
|
2023-01-06 23:31:16 +08:00
|
|
|
|
- Date:
|
|
|
|
|
. Implement More Appropriate Date/Time Exceptions RFC. (Derick)
|
|
|
|
|
|
Implement iteration cache, item cache and length cache for node list iteration (#11330)
* Implement iteration cache, item cache and length cache for node list iteration
The current implementation follows the spec requirement that the list
must be "live". This means that changes in the document must be
reflected in the existing node lists without requiring the user to
refetch the node list.
The consequence is that getting any item, or the length of the list,
always starts searching from the root element of the node list. This
results in O(n) time to get any item or the length. If there's a for
loop over the node list, this means the iterations will take O(n²) time
in total. This causes real-world performance issues with potential for
downtime (see GH-11308 and its references for details).
We fix this by introducing a caching strategy. We cache the last
iterated object in the iterator, the last requested item in the node
list, and the last length computation. To invalidate the cache, we
simply count the number of modifications made to the containing
document. If the modification number does not match what the number was
during caching, we know the document has been modified and the cache is
invalid. If this ever overflows, we saturate the modification number and
don't do any caching anymore. Note that we don't check for overflow on
64-bit systems because it would take hundreds of years to overflow.
Fixes GH-11308.
2023-06-03 06:13:14 +08:00
|
|
|
|
- DOM:
|
2022-12-22 09:34:51 +08:00
|
|
|
|
. Fix bug GH-8388 (DOMAttr unescapes character reference). (Tim Starling)
|
Implement iteration cache, item cache and length cache for node list iteration (#11330)
* Implement iteration cache, item cache and length cache for node list iteration
The current implementation follows the spec requirement that the list
must be "live". This means that changes in the document must be
reflected in the existing node lists without requiring the user to
refetch the node list.
The consequence is that getting any item, or the length of the list,
always starts searching from the root element of the node list. This
results in O(n) time to get any item or the length. If there's a for
loop over the node list, this means the iterations will take O(n²) time
in total. This causes real-world performance issues with potential for
downtime (see GH-11308 and its references for details).
We fix this by introducing a caching strategy. We cache the last
iterated object in the iterator, the last requested item in the node
list, and the last length computation. To invalidate the cache, we
simply count the number of modifications made to the containing
document. If the modification number does not match what the number was
during caching, we know the document has been modified and the cache is
invalid. If this ever overflows, we saturate the modification number and
don't do any caching anymore. Note that we don't check for overflow on
64-bit systems because it would take hundreds of years to overflow.
Fixes GH-11308.
2023-06-03 06:13:14 +08:00
|
|
|
|
. Fix bug GH-11308 (getElementsByTagName() is O(N^2)). (nielsdos)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Fix #79700 (wrong use of libxml oldNs leads to performance problem).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
. Fix #77894 (DOMNode::C14N() very slow on generated DOMDocuments even after
|
|
|
|
|
normalisation). (nielsdos)
|
|
|
|
|
. Revert changes to DOMAttr::$value and DOMAttr::$nodeValue expansion.
|
|
|
|
|
(nielsdos)
|
|
|
|
|
. Fixed bug GH-11500 (Namespace reuse in createElementNS() generates wrong
|
|
|
|
|
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)
|
|
|
|
|
. Added DOMNode::contains() and DOMNameSpaceNode::contains(). (nielsdos)
|
|
|
|
|
. Added DOMElement::getAttributeNames(). (nielsdos)
|
|
|
|
|
. Added DOMNode::getRootNode(). (nielsdos)
|
|
|
|
|
. Added DOMElement::className and DOMElement::id. (nielsdos)
|
|
|
|
|
. Added DOMParentNode::replaceChildren(). (nielsdos)
|
|
|
|
|
. Added DOMNode::isConnected and DOMNameSpaceNode::isConnected. (nielsdos)
|
|
|
|
|
. Added DOMNode::parentElement and DOMNameSpaceNode::parentElement.
|
|
|
|
|
(nielsdos)
|
|
|
|
|
. Added DOMNode::isEqualNode(). (nielsdos)
|
|
|
|
|
. Added DOMElement::insertAdjacentElement() and
|
|
|
|
|
DOMElement::insertAdjacentText(). (nielsdos)
|
|
|
|
|
. Added DOMElement::toggleAttribute(). (nielsdos)
|
|
|
|
|
. Fixed bug GH-11792 (LIBXML_NOXMLDECL is not implemented or broken).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
. adoptNode now respects the strict error checking property. (nielsdos)
|
|
|
|
|
. Align DOMChildNode parent checks with spec. (nielsdos)
|
|
|
|
|
. Fixed bug #80927 (Removing documentElement after creating attribute node:
|
|
|
|
|
possible use-after-free). (nielsdos)
|
|
|
|
|
. Fix various namespace prefix conflict resolution bugs. (nielsdos)
|
|
|
|
|
. Fix calling createAttributeNS() without prefix causing the default
|
|
|
|
|
namespace of the element to change. (nielsdos)
|
|
|
|
|
. Fixed GH-11952 (Confusing warning when blocking entity loading via
|
|
|
|
|
libxml_set_external_entity_loader). (nielsdos)
|
|
|
|
|
. Fix broken cache invalidation with deallocated and reallocated document
|
|
|
|
|
node. (nielsdos)
|
|
|
|
|
. Fix compile error when php_libxml.h header is included in C++.
|
|
|
|
|
(Remi, nielsdos)
|
|
|
|
|
. Fixed bug #47531 (No way of removing redundant xmlns: declarations).
|
|
|
|
|
(nielsdos)
|
Implement iteration cache, item cache and length cache for node list iteration (#11330)
* Implement iteration cache, item cache and length cache for node list iteration
The current implementation follows the spec requirement that the list
must be "live". This means that changes in the document must be
reflected in the existing node lists without requiring the user to
refetch the node list.
The consequence is that getting any item, or the length of the list,
always starts searching from the root element of the node list. This
results in O(n) time to get any item or the length. If there's a for
loop over the node list, this means the iterations will take O(n²) time
in total. This causes real-world performance issues with potential for
downtime (see GH-11308 and its references for details).
We fix this by introducing a caching strategy. We cache the last
iterated object in the iterator, the last requested item in the node
list, and the last length computation. To invalidate the cache, we
simply count the number of modifications made to the containing
document. If the modification number does not match what the number was
during caching, we know the document has been modified and the cache is
invalid. If this ever overflows, we saturate the modification number and
don't do any caching anymore. Note that we don't check for overflow on
64-bit systems because it would take hundreds of years to overflow.
Fixes GH-11308.
2023-06-03 06:13:14 +08:00
|
|
|
|
|
2023-01-21 22:35:15 +08:00
|
|
|
|
- Exif:
|
|
|
|
|
. Removed unneeded codepaths in exif_process_TIFF_in_JPEG(). (nielsdos)
|
|
|
|
|
|
2023-11-21 22:00:51 +08:00
|
|
|
|
- FFI:
|
|
|
|
|
. Implement GH-11934 (Allow to pass CData into struct and/or union fields).
|
|
|
|
|
(nielsdos, KapitanOczywisty)
|
|
|
|
|
|
2022-10-03 04:26:17 +08:00
|
|
|
|
- Fileinfo:
|
|
|
|
|
. Upgrade bundled libmagic to 5.43. (Anatol)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Fix GH-11408 (Unable to build PHP 8.3.0 alpha 1 / fileinfo extension).
|
|
|
|
|
(nielsdos)
|
2022-10-03 04:26:17 +08:00
|
|
|
|
|
2022-09-09 00:19:34 +08:00
|
|
|
|
- FPM:
|
|
|
|
|
. The status.listen shared pool now uses the same php_values (including
|
|
|
|
|
expose_php) and php_admin_value as the pool it is shared with. (dwxh)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Added warning to log when fpm socket was not registered on the expected
|
|
|
|
|
path. (Joshua Behrens, Jakub Zelenka)
|
|
|
|
|
. Fixed bug #76067 (system() function call leaks php-fpm listening sockets).
|
|
|
|
|
(Mikhail Galanin, Jakub Zelenka)
|
|
|
|
|
. Fixed GH-12077 (PHP 8.3.0RC1 borked socket-close-on-exec.phpt).
|
|
|
|
|
(Jakub Zelenka)
|
2022-09-09 00:19:34 +08:00
|
|
|
|
|
2022-11-09 06:47:30 +08:00
|
|
|
|
- GD:
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Removed imagerotate "ignore_transparent" argument since it has no effect.
|
|
|
|
|
(David Carlier)
|
2022-11-09 06:47:30 +08:00
|
|
|
|
|
2022-11-27 18:24:25 +08:00
|
|
|
|
- Intl:
|
2022-12-10 00:56:43 +08:00
|
|
|
|
. Added pattern format error infos for numfmt_set_pattern. (David Carlier)
|
2023-02-28 20:08:01 +08:00
|
|
|
|
. Added MIXED_NUMBERS and HIDDEN_OVERLAY constants for
|
|
|
|
|
the Spoofchecker's class. (David Carlier)
|
2023-03-06 04:54:34 +08:00
|
|
|
|
. Updated datefmt_set_timezone/IntlDateformatter::setTimezone returns type.
|
|
|
|
|
(David Carlier).
|
2023-03-10 07:28:11 +08:00
|
|
|
|
. Updated IntlBreakInterator::setText return type. (David Carlier)
|
2023-03-22 04:40:53 +08:00
|
|
|
|
. Updated IntlChar::enumCharNames return type. (David Carlier)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Removed the BC break on IntlDateFormatter::construct which threw an
|
|
|
|
|
exception with an invalid locale. (David Carlier)
|
2022-11-27 18:24:25 +08:00
|
|
|
|
|
2022-10-08 21:45:59 +08:00
|
|
|
|
- JSON:
|
2022-12-10 00:56:28 +08:00
|
|
|
|
. Added json_validate(). (Juan Morales)
|
2022-10-08 21:45:59 +08:00
|
|
|
|
|
2023-11-21 22:00:51 +08:00
|
|
|
|
- LDAP:
|
|
|
|
|
. Deprecate calling ldap_connect() with separate hostname and port.
|
|
|
|
|
(heiglandreas)
|
|
|
|
|
|
|
|
|
|
- LibXML:
|
|
|
|
|
. Fix compile error with -Werror=incompatible-function-pointer-types and
|
|
|
|
|
old libxml2. (nielsdos)
|
|
|
|
|
|
2022-12-30 04:50:13 +08:00
|
|
|
|
- MBString:
|
2023-02-17 19:57:42 +08:00
|
|
|
|
. mb_detect_encoding is better able to identify the correct encoding for
|
|
|
|
|
Turkish text. (Alex Dowad)
|
Implement mb_detect_encoding using fast text conversion filters
Regarding the optional 3rd `strict` argument to mb_detect_encoding,
the documentation states:
Controls the behaviour when string is not valid in any of the listed encodings.
If strict is set to false, the closest matching encoding will be returned;
if strict is set to true, false will be returned.
(Ref: https://www.php.net/manual/en/function.mb-detect-encoding.php)
Because of bugs in the implementation, mb_detect_encoding did not always
behave according to this description when `strict` was false.
For example:
<?php
echo var_export(mb_detect_encoding("\xc0\x00", "UTF-8", false));
// Before this commit, prints: false
// After this commit, prints: 'UTF-8'
Because `strict` is false in the above example, mb_detect_encoding
should return the 'closest matching encoding', which is UTF-8, since
that is the only candidate encoding. (Incidentally, this example shows
that using mb_detect_encoding with a single candidate encoding in
non-strict mode is useless.)
The new implementation fixes this bug. It also fixes another problem
with the old implementation as regards non-strict detection mode:
The old implementation would stop processing of the input string using
a particular candidate encoding as soon as it saw an error in that
encoding, even in non-strict mode. This means that it could not really
detect the 'closest matching encoding'; rather, what it would return
in non-strict mode was 'the encoding in which the first decoding error
is furthest from the beginning of the input string'.
In non-strict mode, the new implementation continues trying to process
the input string to its end even after seeing an error. This makes it
possible to determine in which candidate encoding the string has the
smallest number of errors, i.e. the 'closest matching encoding'.
Rejecting candidate encodings as soon as it saw an error gave the old
implementation a marked performance advantage in non-strict mode;
however, the new implementation still beats it in most cases. Here are
a few sample microbenchmark results:
UTF-8, ~100 codepoints, strict mode
Old: 0.080s (100,000 calls)
New: 0.026s (" " )
UTF-8, ~100 codepoints, non-strict mode
Old: 0.079s (100,000 calls)
New: 0.033s (" " )
UTF-8, ~10000 codepoints, strict mode
Old: 6.708s (60,000 calls)
New: 1.383s (" " )
UTF-8, ~10000 codepoints, non-strict mode
Old: 6.705s (60,000 calls)
New: 3.044s (" " )
Notice that the old implementation had almost identical performance
between strict and non-strict mode, while the new suffers a significant
performance penalty for non-strict detection. This is the cost of
implementing the behavior specified in the documentation.
A couple more sample results:
SJIS, ~10000 codepoints, strict mode
Old: 4.563s
New: 1.084s
SJIS, ~10000 codepoints, non-strict mode
Old: 4.569s
New: 2.863s
This is the only case I found where the new implementation loses:
UTF-16LE, ~10000 codepoints, non-strict mode
Old: 1.514s
New: 2.813s
The reason is because the test strings happened to be invalid right from
the first few bytes for all the candidate encodings except for UTF-16LE;
so the old implementation would immediately reject all those encodings
and only process the entire string in UTF-16LE.
I believe mb_detect_encoding could be made much faster if we identified
good criteria for when to reject candidate encodings before reaching
the end of the input string.
2022-07-20 14:53:04 +08:00
|
|
|
|
. mb_detect_encoding's "non-strict" mode now behaves as described in the
|
2023-04-11 01:43:05 +08:00
|
|
|
|
documentation. Previously, it would return false if the same byte
|
|
|
|
|
(for example, the first byte) of the input string was invalid in all
|
|
|
|
|
candidate encodings. More generally, it would eliminate candidate
|
|
|
|
|
encodings from consideration when an invalid byte was seen, and if the
|
|
|
|
|
same input byte eliminated all remaining encodings still under
|
|
|
|
|
consideration, it would return false. On the other hand, if all candidate
|
|
|
|
|
encodings but one were eliminated from consideration, it would return the
|
|
|
|
|
last remaining one without regard for how many encoding errors might be
|
|
|
|
|
encountered later in the string. This is different from the behavior
|
|
|
|
|
described in the documentation, which says: "If strict is set to false,
|
|
|
|
|
the closest matching encoding will be returned." (Alex Dowad)
|
Implement Unicode conditional casing rules for Greek letter sigma
The capital Greek letter sigma (Σ) should be lowercased as σ except
when it appears at the end of a word; in that case, it should be
lowercased as the special form ς.
This rule is included in the Unicode data file SpecialCasing.txt.
The condition for applying the rule is called "Final_Sigma" and is
defined in Unicode technical report 21. The rule is:
• For the special casing form to apply, the capital letter sigma must
be preceded by 0 or more "case-ignorable" characters, preceded by
at least 1 "cased" character.
• Further, capital sigma must NOT be followed by 0 or more
case-ignorable characters and then at least 1 cased character.
"Case-ignorable" characters include certain punctuation marks, like
the apostrophe, as well as various accent marks. There are actually
close to 500 different case-ignorable characters, including accent marks
from Cyrillic, Hebrew, Armenian, Arabic, Syriac, Bengali, Gujarati,
Telugu, Tibetan, and many other alphabets. This category also includes
zero-width spaces, codepoints which indicate RTL/LTR text direction,
certain musical symbols, etc.
Since the rule involves scanning over "0 or more" of such
case-ignorable characters, it may be necessary to scan arbitrarily far
to the left and right of capital sigma to determine whether the special
lowercase form should be used or not. However, since we are trying to
be both memory-efficient and CPU-efficient, this implementation limits
how far to the left we will scan. Generally, we scan up to 63 characters
to the left looking for a "cased" character, but not more.
When scanning to the right, we go up to the end of the string if
necessary, even if it means scanning over thousands of characters.
Anyways, it is almost impossible to imagine that natural text will
include "words" with more than 63 successive apostrophes (for example)
followed by a capital sigma.
Closes GH-8096.
2023-01-08 02:27:59 +08:00
|
|
|
|
. mb_strtolower, mb_strtotitle, and mb_convert_case implement conditional
|
|
|
|
|
casing rules for the Greek letter sigma. For mb_convert_case, conditional
|
|
|
|
|
casing only applies to MB_CASE_LOWER and MB_CASE_TITLE modes, not to
|
|
|
|
|
MB_CASE_LOWER_SIMPLE and MB_CASE_TITLE_SIMPLE. (Alex Dowad)
|
2023-01-13 00:10:04 +08:00
|
|
|
|
. mb_detect_encoding is better able to identify UTF-8 and UTF-16 strings
|
|
|
|
|
with a byte-order mark. (Alex Dowad)
|
2023-02-17 19:57:42 +08:00
|
|
|
|
. mb_decode_mimeheader interprets underscores in QPrint-encoded MIME
|
|
|
|
|
encoded words as required by RFC 2047; they are converted to spaces.
|
|
|
|
|
Underscores must be encoded as "=5F" in such MIME encoded words.
|
|
|
|
|
(Alex Dowad)
|
2023-03-16 10:25:38 +08:00
|
|
|
|
. mb_encode_mimeheader no longer drops NUL (zero) bytes when
|
|
|
|
|
QPrint-encoding the input string. This previously caused strings in
|
|
|
|
|
certain text encodings, especially UTF-16 and UTF-32, to be
|
|
|
|
|
corrupted by mb_encode_mimeheader. (Alex Dowad)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Implement mb_str_pad() RFC. (nielsdos)
|
|
|
|
|
. Fixed bug GH-11514 (PHP 8.3 build fails with --enable-mbstring enabled).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
. Fix use-after-free of mb_list_encodings() return value. (ilutov)
|
|
|
|
|
. Fixed bug GH-11992 (utf_encodings.phpt fails on Windows 32-bit). (nielsdos)
|
2022-12-30 04:50:13 +08:00
|
|
|
|
|
2023-03-12 06:29:36 +08:00
|
|
|
|
- mysqli:
|
|
|
|
|
. mysqli_fetch_object raises a ValueError instead of an Exception.
|
|
|
|
|
(David Carlier)
|
|
|
|
|
|
2022-09-03 00:29:56 +08:00
|
|
|
|
- Opcache:
|
|
|
|
|
. Added start, restart and force restart time to opcache's
|
2022-10-08 21:56:29 +08:00
|
|
|
|
phpinfo section. (Mikhail Galanin)
|
|
|
|
|
. Fix GH-9139: Allow FFI in opcache.preload when opcache.preload_user=root.
|
|
|
|
|
(Arnaud, Kapitan Oczywisty)
|
|
|
|
|
. Made opcache.preload_user always optional in the cli and phpdbg SAPIs.
|
|
|
|
|
(Arnaud)
|
2022-11-06 00:50:27 +08:00
|
|
|
|
. Allows W/X bits on page creation on FreeBSD despite system settings.
|
|
|
|
|
(David Carlier)
|
2023-02-15 00:54:04 +08:00
|
|
|
|
. Added memfd api usage, on Linux, for zend_shared_alloc_create_lock()
|
|
|
|
|
to create an abstract anonymous file for the opcache's lock. (Max Kellermann)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Avoid resetting JIT counter handlers from multiple processes/threads.
|
|
|
|
|
(ilutov)
|
|
|
|
|
. Fixed COPY_TMP type inference for references. (ilutov)
|
2022-09-09 17:04:38 +08:00
|
|
|
|
|
2023-02-25 17:22:09 +08:00
|
|
|
|
- OpenSSL:
|
|
|
|
|
. Added OPENSSL_CMS_OLDMIMETYPE and PKCS7_NOOLDMIMETYPE contants to switch
|
|
|
|
|
between mime content types. (Daniel Kesselberg)
|
2023-04-11 02:12:31 +08:00
|
|
|
|
. Fixed GH-11054: Reset OpenSSL errors when using a PEM public key.
|
|
|
|
|
(Florian Moser)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Added support for additional EC parameters in openssl_pkey_new. (Eno-CN)
|
2023-02-25 17:22:09 +08:00
|
|
|
|
|
2022-10-16 18:21:40 +08:00
|
|
|
|
- PCNTL:
|
|
|
|
|
. SA_ONSTACK is now set for pcntl_signal. (Kévin Dunglas)
|
2022-11-12 03:15:58 +08:00
|
|
|
|
. Added SIGINFO constant. (David Carlier)
|
2022-10-16 18:21:40 +08:00
|
|
|
|
|
2023-11-21 22:00:51 +08:00
|
|
|
|
- PCRE:
|
|
|
|
|
. Update bundled libpcre2 to 10.42. (nielsdos)
|
|
|
|
|
|
2023-03-12 06:29:36 +08:00
|
|
|
|
- PGSQL:
|
|
|
|
|
. pg_fetch_object raises a ValueError instead of an Exception.
|
|
|
|
|
(David Carlier)
|
2023-04-15 21:53:42 +08:00
|
|
|
|
. pg_cancel use thread safe PQcancel api instead. (David Carlier)
|
2023-04-09 18:59:50 +08:00
|
|
|
|
. pg_trace new PGSQL_TRACE_SUPPRESS_TIMESTAMPS/PGSQL_TRACE_REGRESS_MODE
|
|
|
|
|
contants support. (David Carlier)
|
2023-05-03 02:05:53 +08:00
|
|
|
|
. pg_set_error_verbosity adding PGSQL_ERRORS_STATE constant. (David Carlier)
|
2023-05-13 23:30:25 +08:00
|
|
|
|
. pg_convert/pg_insert E_WARNING on type errors had been converted to
|
|
|
|
|
ValueError/TypeError exceptions. (David Carlier)
|
2023-06-08 04:33:47 +08:00
|
|
|
|
. Added pg_set_error_context_visibility to set the context's visibility
|
|
|
|
|
within the error messages. (David Carlier)
|
2023-03-12 06:29:36 +08:00
|
|
|
|
|
2023-03-14 15:48:03 +08:00
|
|
|
|
- Phar:
|
|
|
|
|
. Fix memory leak in phar_rename_archive(). (stkeke)
|
|
|
|
|
|
2023-11-21 22:00:51 +08:00
|
|
|
|
- POSIX:
|
2022-09-05 02:52:21 +08:00
|
|
|
|
. Added posix_sysconf. (David Carlier)
|
2023-01-06 06:30:04 +08:00
|
|
|
|
. Added posix_pathconf. (David Carlier)
|
2023-01-07 16:34:56 +08:00
|
|
|
|
. Added posix_fpathconf. (David Carlier)
|
2023-02-14 03:43:29 +08:00
|
|
|
|
. Fixed zend_parse_arg_long's bool pointer argument assignment. (Cristian Rodriguez)
|
2023-03-24 03:46:17 +08:00
|
|
|
|
. Added posix_eaccess. (David Carlier)
|
2022-09-05 02:52:21 +08:00
|
|
|
|
|
2022-12-10 00:39:13 +08:00
|
|
|
|
- Random:
|
|
|
|
|
. Added Randomizer::getBytesFromString(). (Joshua Rüsweg)
|
2022-12-15 00:48:47 +08:00
|
|
|
|
. Added Randomizer::nextFloat(), ::getFloat(), and IntervalBoundary. (timwolla)
|
2023-01-15 20:48:39 +08:00
|
|
|
|
. Enable getrandom() for NetBSD (from 10.x). (David Carlier)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Deprecate MT_RAND_PHP. (timwolla)
|
|
|
|
|
. Fix Randomizer::getFloat() returning incorrect results under
|
|
|
|
|
certain circumstances. (timwolla)
|
2022-12-10 00:39:13 +08:00
|
|
|
|
|
2022-11-09 06:47:30 +08:00
|
|
|
|
- Reflection:
|
|
|
|
|
. Fix GH-9470 (ReflectionMethod constructor should not find private parent
|
|
|
|
|
method). (ilutov)
|
2023-01-25 05:26:52 +08:00
|
|
|
|
. Fix GH-10259 (ReflectionClass::getStaticProperties doesn't need null return
|
|
|
|
|
type). (kocsismate)
|
2022-11-09 06:47:30 +08:00
|
|
|
|
|
2023-04-30 03:28:03 +08:00
|
|
|
|
- SAPI:
|
|
|
|
|
. Fixed GH-11141 (Could not open input file: should be sent to stderr).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
|
2023-11-21 22:00:51 +08:00
|
|
|
|
- Session:
|
|
|
|
|
. Fixed bug GH-11529 (Crash after dealing with an Apache request). (nielsdos)
|
|
|
|
|
|
|
|
|
|
- SimpleXML:
|
|
|
|
|
. Fixed bug GH-12192 (SimpleXML infinite loop when getName() is called
|
|
|
|
|
within foreach). (nielsdos)
|
|
|
|
|
. Fixed bug GH-12208 (SimpleXML infinite loop when a cast is used inside a
|
|
|
|
|
foreach). (nielsdos)
|
|
|
|
|
. Fixed bug #55098 (SimpleXML iteration produces infinite loop). (nielsdos)
|
|
|
|
|
|
2022-02-09 02:28:24 +08:00
|
|
|
|
- Sockets:
|
|
|
|
|
. Added SO_ATTACH_REUSEPORT_CBPF socket option, to give tighter control
|
2022-10-08 21:56:29 +08:00
|
|
|
|
over socket binding for a cpu core. (David Carlier)
|
2022-10-08 09:48:24 +08:00
|
|
|
|
. Added SKF_AD_QUEUE for cbpf filters. (David Carlier)
|
2022-10-29 03:08:46 +08:00
|
|
|
|
. Added socket_atmark if send/recv needs using MSG_OOB. (David Carlier)
|
2022-12-22 00:31:18 +08:00
|
|
|
|
. Added TCP_QUICKACK constant, to give tigher control over
|
|
|
|
|
ACK delays. (David Carlier)
|
2023-01-11 04:39:19 +08:00
|
|
|
|
. Added DONTFRAGMENT support for path MTU discovery purpose. (David Carlier)
|
2023-01-23 01:08:28 +08:00
|
|
|
|
. Added AF_DIVERT for raw socket for divert ports. (David Carlier)
|
2023-01-29 03:44:37 +08:00
|
|
|
|
. Added SOL_UPDLITE, UDPLITE_RECV_CSCOV and UDPLITE_SEND_CSCOV for updlite
|
|
|
|
|
protocol support. (David Carlier)
|
2023-02-11 15:50:36 +08:00
|
|
|
|
. Added SO_RERROR, SO_ZEROIZE and SO_SPLICE netbsd and openbsd constants.
|
2023-02-28 20:08:01 +08:00
|
|
|
|
(David Carlier)
|
|
|
|
|
. Added TCP_REPAIR for quietly close a connection. (David Carlier)
|
2023-04-08 15:50:40 +08:00
|
|
|
|
. Added SO_REUSEPORT_LB freebsd constant. (David Carlier)
|
2023-04-23 00:44:42 +08:00
|
|
|
|
. Added IP_BIND_ADDRESS_NO_PORT. (David Carlier)
|
2021-10-05 22:27:03 +08:00
|
|
|
|
|
2023-11-21 22:00:51 +08:00
|
|
|
|
- SPL:
|
|
|
|
|
. Fixed GH-11573 (RecursiveDirectoryIterator::hasChildren is slow).
|
|
|
|
|
(nielsdos)
|
|
|
|
|
|
2022-11-16 02:36:38 +08:00
|
|
|
|
- Standard:
|
2022-12-15 00:43:43 +08:00
|
|
|
|
. E_NOTICEs emitted by unserialize() have been promoted to E_WARNING. (timwolla)
|
2023-05-02 01:06:40 +08:00
|
|
|
|
. unserialize() now emits a new E_WARNING if the input contains unconsumed
|
|
|
|
|
bytes. (timwolla)
|
2023-01-14 19:19:35 +08:00
|
|
|
|
. Make array_pad's $length warning less confusing. (nielsdos)
|
2022-11-29 04:40:32 +08:00
|
|
|
|
. E_WARNING emitted by strtok in the caase both arguments are not provided when
|
|
|
|
|
starting tokenisation. (David Carlier)
|
2023-01-24 01:35:16 +08:00
|
|
|
|
. password_hash() will now chain the original RandomException to the ValueError
|
|
|
|
|
on salt generation failure. (timwolla)
|
2023-01-07 04:47:22 +08:00
|
|
|
|
. Fix GH-10239 (proc_close after proc_get_status always returns -1). (nielsdos)
|
2023-03-27 06:04:42 +08:00
|
|
|
|
. Improve the warning message for unpack() in case not enough values were
|
|
|
|
|
provided. (nielsdos)
|
2023-04-04 22:14:24 +08:00
|
|
|
|
. Fix GH-11010 (parse_ini_string() now preserves formatting of unquoted
|
|
|
|
|
strings starting with numbers when the INI_SCANNER_TYPED flag is
|
|
|
|
|
specified). (ilutov)
|
2023-03-02 01:30:15 +08:00
|
|
|
|
. Fix GH-10742 (http_response_code emits no error when headers were already
|
|
|
|
|
sent). (NattyNarwhal)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Added support for rounding negative places in number_format().
|
|
|
|
|
(Marc Bennewitz)
|
|
|
|
|
. Prevent precision loss on formatting decimal integers in number_format().
|
|
|
|
|
(Marc Bennewitz)
|
|
|
|
|
. Added usage of posix_spawn for proc_open when supported by OS.
|
|
|
|
|
(Cristian Rodriguez)
|
|
|
|
|
. Added $before_needle argument to strrchr(). (HypeMC)
|
|
|
|
|
. Fixed GH-11982 (str_getcsv returns null byte for unterminated enclosure).
|
|
|
|
|
(Jakub Zelenka)
|
|
|
|
|
. Fixed str_decrement() on "1". (ilutov)
|
2022-11-16 02:36:38 +08:00
|
|
|
|
|
2022-10-05 21:31:28 +08:00
|
|
|
|
- Streams:
|
|
|
|
|
. Fixed bug #51056: blocking fread() will block even if data is available.
|
|
|
|
|
(Jakub Zelenka)
|
2023-04-20 16:34:25 +08:00
|
|
|
|
. Added storing of the original path used to open xport stream.
|
|
|
|
|
(Luc Vieillescazes)
|
2023-11-21 22:00:51 +08:00
|
|
|
|
. Implement GH-8641 (STREAM_NOTIFY_COMPLETED over HTTP never emitted).
|
|
|
|
|
(nielsdos, Jakub Zelenka)
|
|
|
|
|
. Fix bug GH-10406 (fgets on a redis socket connection fails on PHP 8.3).
|
|
|
|
|
(Jakub Zelenka)
|
|
|
|
|
. Implemented GH-11242 (_php_stream_copy_to_mem: Allow specifying a maximum
|
|
|
|
|
length without allocating a buffer of that size). (Jakub Zelenka)
|
|
|
|
|
. Fixed bug #52335 (fseek() on memory stream behavior different than file).
|
|
|
|
|
(Jakub Zelenka)
|
|
|
|
|
. Fixed bug #76857 (Can read "non-existant" files). (Jakub Zelenka)
|
2022-10-05 21:31:28 +08:00
|
|
|
|
|
2023-01-14 23:21:35 +08:00
|
|
|
|
- XSLTProcessor:
|
|
|
|
|
. Fixed bug #69168 (DomNode::getNodePath() returns invalid path). (nielsdos)
|
|
|
|
|
|
2023-11-21 22:00:51 +08:00
|
|
|
|
- ZIP:
|
|
|
|
|
. zip extension version 1.22.0 for libzip 1.10.0. (Remi)
|
|
|
|
|
. add new error macros (ER_DATA_LENGTH and ER_NOT_ALLOWED). (Remi)
|
|
|
|
|
. add new archive global flags (ER_AFL_*). (Remi)
|
|
|
|
|
. add ZipArchive::setArchiveFlag and ZipArchive::getArchiveFlag methods.
|
|
|
|
|
(Remi)
|