Skip to content

Commit ad83353

Browse files
committed
Fix line wrapping in NEWS/UPGRADING/UPGRADING.INTERNALS
1 parent d1ffe6a commit ad83353

File tree

3 files changed

+25
-15
lines changed

3 files changed

+25
-15
lines changed

NEWS

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,23 +80,24 @@ PHP NEWS
8080

8181
- Posix:
8282
. Added validity check to the flags argument for posix_access(). (arshidkv12)
83-
. Added validity check to the permissions argument for posix_mkfifo(). (arshidkv12)
83+
. Added validity check to the permissions argument for posix_mkfifo().
84+
(arshidkv12)
8485

8586
- Reflection:
8687
. Fixed bug GH-20217 (ReflectionClass::isIterable() incorrectly returns true
8788
for classes with property hooks). (alexandre-daubois)
8889

8990
- Soap:
90-
. Soap::__setCookie() when cookie name is a digit is now not stored and represented
91-
as a string anymore but a int. (David Carlier)
91+
. Soap::__setCookie() when cookie name is a digit is now not stored and
92+
represented as a string anymore but a int. (David Carlier)
9293

9394
- Sockets:
94-
. Added the TCP_USER_TIMEOUT constant for Linux to set the maximum time in milliseconds
95-
transmitted data can remain unacknowledged. (James Lucas)
95+
. Added the TCP_USER_TIMEOUT constant for Linux to set the maximum time in
96+
milliseconds transmitted data can remain unacknowledged. (James Lucas)
9697
. Added AF_UNSPEC support for sock_addrinfo_lookup() as a sole umbrella for
9798
AF_INET* family only. (David Carlier)
98-
. Fixed GH-20532 (socket_addrinfo_lookup gives the error code with a new optional
99-
parameter). (David Carlier)
99+
. Fixed GH-20532 (socket_addrinfo_lookup gives the error code with a new
100+
optional parameter). (David Carlier)
100101

101102
- SPL:
102103
. DirectoryIterator key can now work better with filesystem supporting larger

UPGRADING

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,14 @@ PHP 8.6 UPGRADE NOTES
4343
. finfo_file() now works with remote streams.
4444

4545
- Intl:
46-
. Added IntlNumberRangeFormatter class to format an interval of two numbers with a given skeleton, locale, IntlNumberRangeFormatter::COLLAPSE_AUTO, IntlNumberRangeFormatter::COLLAPSE_NONE, IntlNumberRangeFormatter::COLLAPSE_UNIT, IntlNumberRangeFormatter::COLLAPSE_ALL collapse and
47-
IntlNumberRangeFormatter::IDENTITY_FALLBACK_SINGLE_VALUE, IntlNumberRangeFormatter::IDENTITY_FALLBACK_APPROXIMATELY_OR_SINGLE_VALUE, IntlNumberRangeFormatter::IDENTITY_FALLBACK_APPROXIMATELY and
46+
. Added IntlNumberRangeFormatter class to format an interval of two numbers
47+
with a given skeleton, locale, IntlNumberRangeFormatter::COLLAPSE_AUTO,
48+
IntlNumberRangeFormatter::COLLAPSE_NONE,
49+
IntlNumberRangeFormatter::COLLAPSE_UNIT,
50+
IntlNumberRangeFormatter::COLLAPSE_ALL collapse and
51+
IntlNumberRangeFormatter::IDENTITY_FALLBACK_SINGLE_VALUE,
52+
IntlNumberRangeFormatter::IDENTITY_FALLBACK_APPROXIMATELY_OR_SINGLE_VALUE,
53+
IntlNumberRangeFormatter::IDENTITY_FALLBACK_APPROXIMATELY and
4854
IntlNumberRangeFormatter::IDENTITY_FALLBACK_RANGE identity fallbacks.
4955
It is supported from icu 63.
5056

@@ -106,7 +112,8 @@ PHP 8.6 UPGRADE NOTES
106112
========================================
107113

108114
- Standard:
109-
. `clamp()` returns the given value if in range, else return the nearest bound.
115+
. `clamp()` returns the given value if in range, else return the nearest
116+
bound.
110117
RFC: https://wiki.php.net/rfc/clamp_v2
111118

112119
========================================
@@ -189,8 +196,8 @@ PHP 8.6 UPGRADE NOTES
189196

190197
- Core:
191198
. `printf()` using only `%s` and `%d` will be compiled into the equivalent
192-
string interpolation, avoiding the overhead of a function call and repeatedly
193-
parsing the format string.
199+
string interpolation, avoiding the overhead of a function call and
200+
repeatedly parsing the format string.
194201
. Arguments are now passed more efficiently to known constructors (e.g. when
195202
using new self()).
196203
. array_map() using a first-class callable or partial function application

UPGRADING.INTERNALS

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,9 @@ PHP 8.6 INTERNALS UPGRADE NOTES
7777

7878
. build/gen_stub.php may now generate a _decl.h file in addition to
7979
the _arginfo.h file, if the stub declares enums and is annotated with
80-
@generate-c-enums. For each enum the file will contain a C enum. Enum values
81-
can be compared to the result of zend_enum_fetch_case_id(zend_object*).
80+
@generate-c-enums. For each enum the file will contain a C enum. Enum
81+
values can be compared to the result of
82+
zend_enum_fetch_case_id(zend_object*).
8283

8384
========================
8485
3. Module changes
@@ -89,7 +90,8 @@ PHP 8.6 INTERNALS UPGRADE NOTES
8990

9091
- ext/mysqlnd:
9192
. Dropped session_options parameter from all methods in mysqlnd_auth.
92-
The same information is present in conn->options and should be used instead.
93+
The same information is present in conn->options and should be used
94+
instead.
9395

9496
- ext/session:
9597
. php_session_flush() now returns a bool rather than a zend_result.

0 commit comments

Comments
 (0)