Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ PHP NEWS

- CURL:
. Added CURLFOLLOW_ALL, CURLFOLLOW_OBEYCODE and CURLFOLLOW_FIRSTONLY
values for CURLOPT_FOLLOLOCATION curl_easy_setopt option. (David Carlier)
values for CURLOPT_FOLLOWLOCATION curl_easy_setopt option. (David Carlier)

- COM:
. Fixed property access of PHP objects wrapped in variant. (cmb)
Expand Down Expand Up @@ -245,7 +245,7 @@ PHP NEWS

- OpenSSL:
. Added openssl.libctx INI that allows to select the OpenSSL library context
type and convert verious parts of the extension to use the custom libctx.
type and convert various parts of the extension to use the custom libctx.
(Jakub Zelenka)

- Output:
Expand All @@ -255,7 +255,7 @@ PHP NEWS
. Extend pcntl_waitid with rusage parameter. (vrza)

- PCRE:
. Upgraded to pre2lib from 10.44 to 10.45. (nielsdos)
. Upgraded to pcre2lib from 10.44 to 10.45. (nielsdos)
. Remove PCRE2_EXTRA_ALLOW_LOOKAROUND_BSK from pcre compile options.
(mvorisek)

Expand Down Expand Up @@ -364,7 +364,7 @@ PHP NEWS
(David Carlier)

- Sodium:
. Fix overall theorical overflows on zend_string buffer allocations.
. Fix overall theoretical overflows on zend_string buffer allocations.
(David Carlier/nielsdos)

- Sqlite:
Expand Down Expand Up @@ -393,7 +393,7 @@ PHP NEWS
(cmb)

- Tests:
. Allow to shuffle tests even in non-parallell mode. (dhuang00)
. Allow to shuffle tests even in non-parallel mode. (dhuang00)

- Tidy:
. tidy::__construct/parseFile/parseString methods throw an exception if
Expand Down
8 changes: 4 additions & 4 deletions UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ PHP 8.5 UPGRADE NOTES

- Standard:
. getimagesize() now supports SVG images when ext-libxml is also loaded.
Similarly, image_type_to_extension() and image_type_to_extension()
Similarly, image_type_to_extension() and image_type_to_mime_type()
now also handle IMAGETYPE_SVG.
. The array returned by getimagesize() now has two additional entries:
"width_unit" and "height_unit" to indicate in which units the dimensions
Expand Down Expand Up @@ -348,7 +348,7 @@ PHP 8.5 UPGRADE NOTES

- OpenSSL:
. openssl_public_encrypt() and openssl_private_decrypt() have new parameter
$digest_algo that allows specifying hash digest algorith for OEAP padding.
$digest_algo that allows specifying hash digest algorithm for OEAP padding.

- PCNTL:
. pcntl_exec() now has a formal return type of false.
Expand Down Expand Up @@ -396,14 +396,14 @@ PHP 8.5 UPGRADE NOTES
are enum cases rather than normal class constants.
. The output of ReflectionProperty::__toString() for properties with
hooks has changed to indicate what hooks the property has, whether those
hooks are final, and whether the property is virtual. This also affects
hooks are final, and whether the property is virtual. This also affects
the output of ReflectionClass::__toString() when a class contains hooked
properties.

- Session:
. session_start is stricter in regard to the option argument.
It throws a ValueError if the whole is not a hashmap or
a TypeError if read_on_close value is not a valid type
a TypeError if read_and_close value is not a valid type
compatible with int.

- SNMP:
Expand Down
2 changes: 1 addition & 1 deletion UPGRADING.INTERNALS
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ PHP 8.5 INTERNALS UPGRADE NOTES
that appropriate build rules are created.

- Unix build system changes
. libdir is properly set when --libdir (ex: /usr/lib64) and --with-libdir (ex lib64)
. libdir is properly set when --libdir (ex: /usr/lib64) and --with-libdir (ex: lib64)
configure options are used to ${libdir}/php (ex: /usr/lib64/php)
. PHP_ODBC_CFLAGS, PHP_ODBC_LFLAGS, PHP_ODBC_LIBS, PHP_ODBC_TYPE preprocessor
macros defined by ext/odbc are now defined in php_config.h instead of the
Expand Down