Skip to content

Commit f573ba1

Browse files
committed
Update changelogs
- PHP-7.4 alpha, beta, RC versions already include bugs logged in the NEWS - some links to RFCs - php_error_docref0
1 parent 4e0af6d commit f573ba1

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

NEWS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ PHP NEWS
55
- Core:
66
. Fixed bug #78212 (Segfault in built-in webserver). (cmb)
77

8+
- Libxml:
9+
. Fixed bug #78279 (libxml_disable_entity_loader settings is shared between
10+
requests (cgi-fcgi)). (Nikita)
11+
12+
- Opcache:
13+
. Fixed bug #78271 (Invalid result of if-else). (Nikita)
14+
815
- Recode:
916
. Unbundled the recode extension. (cmb)
1017

UPGRADING

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ PHP 7.4 UPGRADE NOTES
2525
. Trying to use values of type null, bool, int, float or resource as an
2626
array (such as $null["key"]) will now generate a notice. This does not
2727
affect array accesses performed by list().
28+
RFC: https://wiki.php.net/rfc/notice-for-non-valid-array-container
2829
. get_declared_classes() no longer returns anonymous classes that haven't
2930
been instantiated yet.
3031
. "fn" is now a reserved keyword. In particular it can no longer be used as a
@@ -457,6 +458,7 @@ PHP 7.4 UPGRADE NOTES
457458
- Recode:
458459
. The recode extension has been moved to PECL. For character set/encoding
459460
conversion the iconv or mbstring extensions could be used instead.
461+
RFC: https://wiki.php.net/rfc/unbundle_recode
460462

461463
- WDDX:
462464
. The WDDX extension has been deprecated and moved to PECL.

UPGRADING.INTERNALS

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ PHP 7.4 INTERNALS UPGRADE NOTES
2323
t. Exceptions thrown by string conversions.
2424
u. Removed uint and ulong typedefs
2525
v. Compound assignment opcodes
26-
z. APACHE symbol removed
26+
w. APACHE symbol removed
27+
x. php_error_docref0() renamed to php_error_docref()
2728

2829
2. Build system changes
2930
a. Abstract
@@ -220,7 +221,9 @@ PHP 7.4 INTERNALS UPGRADE NOTES
220221
ZEND_ASSIGN_DIM_OP, ZEND_ASSIGN_OBJ_OP and ZEND_ASSIGN_STATIC_PROP_OP with
221222
ZEND_ADD (or other) in extended_value.
222223

223-
z. APACHE symbol has been removed and is no longer defined.
224+
w. APACHE symbol has been removed and is no longer defined.
225+
226+
x. php_error_docref0() has been removed and renamed to php_error_docref().
224227

225228
========================
226229
2. Build system changes

0 commit comments

Comments
 (0)