#
34f0f60d |
| 19-Jan-2021 |
Gabriel Caruso |
Next is 8.0.3 |
#
9ce200f6 |
| 19-Jan-2021 |
Gabriel Caruso |
Fix NEWS placeholder for the next version This aligns with the PHP-7.4 and PHP-7.3 branches, and should fix the `sgolemon/php-release` script run for releasing 8.0.2. |
#
a33d0c3a |
| 19-Jan-2021 |
Derick Rethans |
Update NEWS and version |
#
e8a89c49 |
| 19-Jan-2021 |
Derick Rethans |
Update NEWS for PHP 7.4.15RC1 |
#
05d16801 |
| 19-Jan-2021 |
Nikita Popov |
Fixed bug #80644: ResourceBundle::get() doesn't reset error state |
#
cfae999f |
| 19-Jan-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #69279: Compressed ZIP Phar extractTo() creates garbage files
|
#
68f5289e |
| 18-Dec-2020 |
Christoph M. Becker |
Fix #69279: Compressed ZIP Phar extractTo() creates garbage files When extracting compressed files from an uncompressed Phar, we must not use the direct file pointer, but rather get an u
Fix #69279: Compressed ZIP Phar extractTo() creates garbage files When extracting compressed files from an uncompressed Phar, we must not use the direct file pointer, but rather get an uncompressed file pointer. We also add a test to show that deflated and stored entries are properly extracted. This also fixes #79912, which appears to be a duplicate of #69279. Co-authored-by: Anna Filina <afilina@gmail.com> Closes GH-6599.
show more ...
|
#
c321896a |
| 18-Jan-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80595: Resetting POSTFIELDS to empty array breaks request
|
#
38ad37ad |
| 15-Jan-2021 |
Christoph M. Becker |
Fix #80595: Resetting POSTFIELDS to empty array breaks request This is mainly to work around https://github.com/curl/curl/issues/6455, but not building the mime structure for empty hasht
Fix #80595: Resetting POSTFIELDS to empty array breaks request This is mainly to work around https://github.com/curl/curl/issues/6455, but not building the mime structure for empty hashtables is a general performance optimization, so we do not restrict it to affected cURL versions (7.56.0 to 7.75.0). The minor change to bug79033.phpt is unexpected, but should not matter in practice. Closes GH-6606.
show more ...
|
#
2d0dd4d0 |
| 17-Jan-2021 |
Anatol Belski |
NEWS: Fix typo [ci skip] Signed-off-by: Anatol Belski <ab@php.net> |
#
880bf622 |
| 14-Jan-2021 |
Nikita Popov |
Fixed bug #80617: Type narrowing warning in ZEND_TYPE_INIT_CODE |
#
f9fbba41 |
| 13-Jan-2021 |
Daniil Gentili |
Fixed bug #80596: Fix anonymous class union typehint errors Cut off part after null byte when resolving the class name, to avoid cutting off a larger part lateron. Closes GH-660
Fixed bug #80596: Fix anonymous class union typehint errors Cut off part after null byte when resolving the class name, to avoid cutting off a larger part lateron. Closes GH-6601.
show more ...
|
#
3edf5c96 |
| 14-Jan-2021 |
Dmitry Stogov |
Fixed bug #80422 (php_opcache.dll crashes when using Apache 2.4 with JIT) |
#
94a151a0 |
| 27-Dec-2020 |
Jens de Nies |
Fixed bug #80545 This converts the remaining "non well-formed" warnings in bcmath to ValueErrors, in line with the other warning promotions that have been performed in this extension
Fixed bug #80545 This converts the remaining "non well-formed" warnings in bcmath to ValueErrors, in line with the other warning promotions that have been performed in this extension. Closes GH-80545.
show more ...
|
#
95a13ca9 |
| 11-Jan-2021 |
Christoph M. Becker |
Revert fix for bug 76813 and re2c version bump CentOS 7 ships with re2c 0.13.5 by default, so we should not have bumped the required re2c version to 0.13.7. However, 0.13.5 does not
Revert fix for bug 76813 and re2c version bump CentOS 7 ships with re2c 0.13.5 by default, so we should not have bumped the required re2c version to 0.13.7. However, 0.13.5 does not support default rules, so we cannot use them to fix bug 76813. This reverts commit 420184ad529443182c9a348a55b1c9216005c613 and 5e15c9c41f8318a8392c2e2c78544f218736549c. Closes GH-6593.
show more ...
|
#
25103c37 |
| 11-Jan-2021 |
Christoph M. Becker |
Revert "Fix #76813: Access violation near NULL on source operand" This reverts commit 5e15c9c41f8318a8392c2e2c78544f218736549c, since re2c default rules are only available as of re2c 0.1
Revert "Fix #76813: Access violation near NULL on source operand" This reverts commit 5e15c9c41f8318a8392c2e2c78544f218736549c, since re2c default rules are only available as of re2c 0.13.7.
show more ...
|
#
e497a9f2 |
| 09-Jan-2021 |
Anatol Belski |
NEWS: Add xxhash note [ci skip] Signed-off-by: Anatol Belski <ab@php.net> |
#
f674a334 |
| 05-Jan-2021 |
Christoph M. Becker |
Fix #80592: all floats are the same in ODBC parameters We must not release the strings until we are done with them. Closes GH-6579. |
#
66a74f2f |
| 05-Jan-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #77565: Incorrect locator detection in ZIP-based phars
|
#
d1b1c043 |
| 05-Jan-2021 |
Christoph M. Becker |
Fix #77565: Incorrect locator detection in ZIP-based phars We must not assume that the first end of central dir signature in a ZIP archive actually designates the end of central director
Fix #77565: Incorrect locator detection in ZIP-based phars We must not assume that the first end of central dir signature in a ZIP archive actually designates the end of central directory record, since the data in the archive may contain arbitrary byte patterns. Thus, we better search from the end of the data, what is also slightly more efficient. There is, however, no way to detect the end of central directory signature by searching from the end of the ZIP archive with absolute certainty, since the signature could be part of the trailing comment. To mitigate, we check that the comment length fits to the found position, but that might still not be the correct position in rare cases. Closes GH-6507.
show more ...
|
#
121790ea |
| 04-Jan-2021 |
Christoph M. Becker |
[ci skip] Add forgotten NEWS entry (bug 80560) |
#
764b7bf1 |
| 04-Jan-2021 |
George Peter Banyard |
Fix bug #80584: 0x and 0X are considered valid hex numbers by filter_var() Closes GH-6573 |
#
9f96b2bd |
| 16-Dec-2020 |
Christoph M. Becker |
Fix #76929: zip-based phar does not respect phar.require_hash Based on the patch provided by david at bamsoftware. Closes GH-6517. |
#
4d1c1e45 |
| 04-Jan-2021 |
Stanislav Malyshev |
[ci skip] Update NEWS |
#
e6593206 |
| 04-Jan-2021 |
Stanislav Malyshev |
[ci skip] Update NEWS |