Skip to content

UPGRADING: Minor adjustments moving items to appropriate sections #13576

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 2, 2024
Merged
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
17 changes: 10 additions & 7 deletions UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,11 @@ PHP 8.4 UPGRADE NOTES
requests in non-POST HTTP requests.
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:
. Added static methods
DateTime[Immutable]::createFromTimestamp(int|float $timestamp): static.
Expand Down Expand Up @@ -193,6 +198,10 @@ PHP 8.4 UPGRADE NOTES
- FPM:
. Flushing headers without a body will now succeed. See GH-12785.

- Intl:
. NumberFormatter::ROUND_HALFODD added to complement existing
NumberFormatter::ROUND_HALFEVEN functionality.

- Phar:
. Added support for the unix timestamp extension for zip archives.

Expand All @@ -211,8 +220,7 @@ PHP 8.4 UPGRADE NOTES
or by invoking their constructor directly.

- PDO_DBLIB:
. Fixed setAttribute and getAttribute (SakiTakamachi)
. Added PdoDbLib class (danack, kocsismate)
. Added class PdoDbLib.

- PDO_FIREBIRD:
. Added class PdoFirebird.
Expand Down Expand Up @@ -264,9 +272,6 @@ PHP 8.4 UPGRADE NOTES

- Curl:
. 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:
. Calling DatePeriod::__construct(string $isostr, int $options = 0) is
Expand Down Expand Up @@ -326,8 +331,6 @@ PHP 8.4 UPGRADE NOTES
have been added as aliases for NumberFormatter::ROUND_DOWN and
NumberFormatter::ROUND_UP to be consistent with the new PHP_ROUND_* modes.
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|array|string|int|null

Expand Down