Skip to content

Commit 1b380d6

Browse files
authored
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
1 parent f6c38fc commit 1b380d6

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

UPGRADING

+10-7
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,11 @@ PHP 8.4 UPGRADE NOTES
165165
requests in non-POST HTTP requests.
166166
RFC: https://wiki.php.net/rfc/rfc1867-non-post
167167

168+
- Curl:
169+
. curl_version() returns an additional feature_list value, which is an
170+
associative array of all known Curl features, and whether they are
171+
supported (true) or not (false).
172+
168173
- Date:
169174
. Added static methods
170175
DateTime[Immutable]::createFromTimestamp(int|float $timestamp): static.
@@ -193,6 +198,10 @@ PHP 8.4 UPGRADE NOTES
193198
- FPM:
194199
. Flushing headers without a body will now succeed. See GH-12785.
195200

201+
- Intl:
202+
. NumberFormatter::ROUND_HALFODD added to complement existing
203+
NumberFormatter::ROUND_HALFEVEN functionality.
204+
196205
- Phar:
197206
. Added support for the unix timestamp extension for zip archives.
198207

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

213222
- PDO_DBLIB:
214-
. Fixed setAttribute and getAttribute (SakiTakamachi)
215-
. Added PdoDbLib class (danack, kocsismate)
223+
. Added class PdoDbLib.
216224

217225
- PDO_FIREBIRD:
218226
. Added class PdoFirebird.
@@ -264,9 +272,6 @@ PHP 8.4 UPGRADE NOTES
264272

265273
- Curl:
266274
. The CURLOPT_BINARYTRANSFER constant is deprecated.
267-
. curl_version() returns an additional feature_list value, which is an
268-
associative array of all known Curl features, and whether they are
269-
supported (true) or not (false).
270275

271276
- Date:
272277
. Calling DatePeriod::__construct(string $isostr, int $options = 0) is
@@ -326,8 +331,6 @@ PHP 8.4 UPGRADE NOTES
326331
have been added as aliases for NumberFormatter::ROUND_DOWN and
327332
NumberFormatter::ROUND_UP to be consistent with the new PHP_ROUND_* modes.
328333
RFC: https://wiki.php.net/rfc/new_rounding_modes_to_round_function
329-
. NumberFormatter::ROUND_HALFODD added to complement existing
330-
NumberFormatter::ROUND_HALFEVEN functionality.
331334
. ResourceBundle::get() now has a tentative return type of:
332335
ResourceBundle|array|string|int|null
333336

0 commit comments

Comments
 (0)