#
8e48895f |
| 13-Apr-2021 |
Derick Rethans |
Prepare for 7.4.19 |
#
462da6e0 |
| 31-Mar-2021 |
Josh Soref |
Fix spelling and grammar mistakes This PR corrects misspellings identified by the check-spelling action. The misspellings have been reported at jsoref@b6ba3e2#commitcomment-48946465
Fix spelling and grammar mistakes This PR corrects misspellings identified by the check-spelling action. The misspellings have been reported at jsoref@b6ba3e2#commitcomment-48946465 The action reports that the changes in this PR would make it happy: jsoref@602417c Closes GH-6822.
show more ...
|
#
d4f7e8ce |
| 13-Apr-2021 |
Derick Rethans |
Prepare NEWS for 7.4.18RC1 |
#
a1fdfa70 |
| 12-Apr-2021 |
Nikita Popov |
Fixed bug #80950 Function info for curl_exec() incorrect specified that the function cannot return true. This is already fixed in PHP 8, as the func info entry was removed there. |
#
d74c61c1 |
| 12-Apr-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #79812: Potential integer overflow in pcntl_exec()
|
#
0a36d417 |
| 09-Apr-2021 |
Christoph M. Becker |
Fix #79812: Potential integer overflow in pcntl_exec() We use the proper type, and make sure that no overflow can occur by using `safe_emalloc()` (we can assume that neither string lengt
Fix #79812: Potential integer overflow in pcntl_exec() We use the proper type, and make sure that no overflow can occur by using `safe_emalloc()` (we can assume that neither string length is `SIZE_MAX`). Closes GH-6845.
show more ...
|
#
4e98e65d |
| 11-Apr-2021 |
Rowan Tommins |
Remove the "getdir" function which was introduced accidentally The actual name of this function is dir(), but ever since it was introduced in PHP 3, its internal name was "getdir", leadi
Remove the "getdir" function which was introduced accidentally The actual name of this function is dir(), but ever since it was introduced in PHP 3, its internal name was "getdir", leading to it being mistaken for an alias. This went unnoticed until the switch to stubs for generating arginfo, at which point getdir() became a real but undocumented function. Fixes bug #80914. Closes GH-6855.
show more ...
|
#
4f236635 |
| 12-Apr-2021 |
Matteo Beccati |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80892: PDO::PARAM_INT is treated the same as PDO::PARAM_STR
|
#
340a0677 |
| 12-Apr-2021 |
Matteo Beccati |
Fix #80892: PDO::PARAM_INT is treated the same as PDO::PARAM_STR |
#
091c0920 |
| 30-Mar-2021 |
Derick Rethans |
Upgrade timelib to 2021.03 and fix many date/time issues |
#
de9734a5 |
| 06-Apr-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80880: SSL_read on shutdown, ftp/proc_open
|
#
96880716 |
| 06-Apr-2021 |
Christoph M. Becker |
Fix #80880: SSL_read on shutdown, ftp/proc_open When `SSL_read()` after `SSL_shutdown()` fails with `SSL_ERROR_SYSCALL`, we should not warn about this, because it is likely caused by the
Fix #80880: SSL_read on shutdown, ftp/proc_open When `SSL_read()` after `SSL_shutdown()` fails with `SSL_ERROR_SYSCALL`, we should not warn about this, because it is likely caused by the peer having closed the connection without having sent a close_notify shutdown alert. Signed-off-by: Christoph M. Becker <cmbecker69@gmx.de> Closes GH-6803.
show more ...
|
#
e0996dec |
| 31-Mar-2021 |
Dmitry Stogov |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Changed PowerPC CPU registers used by Zend VM to work around GCC bug.
|
#
39d8fc1e |
| 31-Mar-2021 |
Dmitry Stogov |
Changed PowerPC CPU registers used by Zend VM to work around GCC bug. Old registers (r28/r29) might be clobbered by _restgpr routine used for return from C function compiled with -Os. |
#
44347810 |
| 30-Mar-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Handle reference zvals when outputting superglobals in phpinfo() Signed-off-by: Christoph M. Becker <cmbecker69@gmx.de>
|
#
206fd35a |
| 29-Mar-2021 |
Rowan Tommins |
Handle reference zvals when outputting superglobals in phpinfo() Fixes <https://bugs.php.net/80915>. Closes GH-80915. Signed-off-by: Christoph M. Becker <cmbecker69@gmx.de> |
#
dd227f61 |
| 29-Mar-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #69668: SOAP special XML characters in namespace URIs not encoded Signed-off-by: Christoph M. Becker <cmbecker69@gmx.de>
|
#
75cb6782 |
| 24-Mar-2021 |
Christoph M. Becker |
Fix #69668: SOAP special XML characters in namespace URIs not encoded `xmlNewNs()` does not XML encode the passed `href`, so we need to do that manually. Closes GH-6804.
Fix #69668: SOAP special XML characters in namespace URIs not encoded `xmlNewNs()` does not XML encode the passed `href`, so we need to do that manually. Closes GH-6804. Signed-off-by: Christoph M. Becker <cmbecker69@gmx.de>
show more ...
|
#
4ed4b64d |
| 28-Mar-2021 |
Jakub Zelenka |
Update NEWS and UPGRADING for FPM addition of pm.max_spawn_rate |
#
5832be76 |
| 24-Mar-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #73533: Invalid memory access in php_libxml_xmlCheckUTF8
|
#
498eb8e0 |
| 23-Mar-2021 |
Christoph M. Becker |
Fix #73533: Invalid memory access in php_libxml_xmlCheckUTF8 A string passed to `php_libxml_xmlCheckUTF8()` may be longer than 1<<31-1 bytes, so we're better using a `size_t`. C
Fix #73533: Invalid memory access in php_libxml_xmlCheckUTF8 A string passed to `php_libxml_xmlCheckUTF8()` may be longer than 1<<31-1 bytes, so we're better using a `size_t`. Closes GH-6802.
show more ...
|
#
713b8213 |
| 21-Mar-2021 |
Jakub Zelenka |
Merge branch 'PHP-7.4' into PHP-8.0
|
#
538f95b1 |
| 21-Mar-2021 |
Jakub Zelenka |
Fix NEWS entry position for the latest FPM fix |
#
c483b591 |
| 28-Feb-2021 |
Jakub Zelenka |
Fix bug #80024: Duplication of info about inherited socket after pool removing |
#
37969dca |
| 21-Mar-2021 |
Jakub Zelenka |
Update NEWS for FPM process renaming on macOS |