UPGRADING: Minor adjustments moving items to appropriate sections (#13576)

- Moved curl_version()['feature_list'] to New Features
- Moved NumberFormatter::ROUND_HALFODD to New Features
- Removed contributor names (this pattern only used in the `NEWS` file)
- Removed "Fixed setAttribute and getAttribute" as it is covered in another change record
This commit is contained in:
Ayesh Karunaratne 2024-03-03 01:34:03 +07:00 committed by GitHub
parent f6c38fc952
commit 1b380d6ad5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -165,6 +165,11 @@ PHP 8.4 UPGRADE NOTES
requests in non-POST HTTP requests. requests in non-POST HTTP requests.
RFC: https://wiki.php.net/rfc/rfc1867-non-post RFC: https://wiki.php.net/rfc/rfc1867-non-post
- Curl:
. curl_version() returns an additional feature_list value, which is an
associative array of all known Curl features, and whether they are
supported (true) or not (false).
- Date: - Date:
. Added static methods . Added static methods
DateTime[Immutable]::createFromTimestamp(int|float $timestamp): static. DateTime[Immutable]::createFromTimestamp(int|float $timestamp): static.
@ -193,6 +198,10 @@ PHP 8.4 UPGRADE NOTES
- FPM: - FPM:
. Flushing headers without a body will now succeed. See GH-12785. . Flushing headers without a body will now succeed. See GH-12785.
- Intl:
. NumberFormatter::ROUND_HALFODD added to complement existing
NumberFormatter::ROUND_HALFEVEN functionality.
- Phar: - Phar:
. Added support for the unix timestamp extension for zip archives. . Added support for the unix timestamp extension for zip archives.
@ -211,8 +220,7 @@ PHP 8.4 UPGRADE NOTES
or by invoking their constructor directly. or by invoking their constructor directly.
- PDO_DBLIB: - PDO_DBLIB:
. Fixed setAttribute and getAttribute (SakiTakamachi) . Added class PdoDbLib.
. Added PdoDbLib class (danack, kocsismate)
- PDO_FIREBIRD: - PDO_FIREBIRD:
. Added class PdoFirebird. . Added class PdoFirebird.
@ -264,9 +272,6 @@ PHP 8.4 UPGRADE NOTES
- Curl: - Curl:
. The CURLOPT_BINARYTRANSFER constant is deprecated. . The CURLOPT_BINARYTRANSFER constant is deprecated.
. curl_version() returns an additional feature_list value, which is an
associative array of all known Curl features, and whether they are
supported (true) or not (false).
- Date: - Date:
. Calling DatePeriod::__construct(string $isostr, int $options = 0) is . Calling DatePeriod::__construct(string $isostr, int $options = 0) is
@ -326,8 +331,6 @@ PHP 8.4 UPGRADE NOTES
have been added as aliases for NumberFormatter::ROUND_DOWN and have been added as aliases for NumberFormatter::ROUND_DOWN and
NumberFormatter::ROUND_UP to be consistent with the new PHP_ROUND_* modes. NumberFormatter::ROUND_UP to be consistent with the new PHP_ROUND_* modes.
RFC: https://wiki.php.net/rfc/new_rounding_modes_to_round_function RFC: https://wiki.php.net/rfc/new_rounding_modes_to_round_function
. NumberFormatter::ROUND_HALFODD added to complement existing
NumberFormatter::ROUND_HALFEVEN functionality.
. ResourceBundle::get() now has a tentative return type of: . ResourceBundle::get() now has a tentative return type of:
ResourceBundle|array|string|int|null ResourceBundle|array|string|int|null