8acdde5b | 18-Oct-2024 |
Derick Rethans |
Merge branch 'PHP-8.2' into PHP-8.3
|
b2b294a2 | 18-Oct-2024 |
Derick Rethans |
Fixed bug GH-16037 (Assertion failure in ext/date/php_date.c) |
a920afd2 | 18-Oct-2024 |
Christoph M. Becker |
Merge branch 'PHP-8.4' * PHP-8.4: Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset
|
66fe549d | 18-Oct-2024 |
Christoph M. Becker |
Merge branch 'PHP-8.3' into PHP-8.4 * PHP-8.3: Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset
|
64f312f1 | 18-Oct-2024 |
Christoph M. Becker |
Merge branch 'PHP-8.2' into PHP-8.3 * PHP-8.2: Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset
|
9bc34182 | 17-Oct-2024 |
Christoph M. Becker |
Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset After normalization, `N` is supposed to be in range [0, 24], but for very large and very small `$utcOffset` this is not
Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset After normalization, `N` is supposed to be in range [0, 24], but for very large and very small `$utcOffset` this is not necessarily the case, since the normalization might yied `-inf` or `inf`. If that happens, we let the function fail silently, since it is highly unlikely that such `$utcOffset`s are passed in practice. Closes GH-16483.
show more ...
|
e61e2c1e | 18-Oct-2024 |
Dmitry Stogov |
Merge branch 'PHP-8.4' * PHP-8.4: Fix invalid target opline with jit->reuse_ip active (#16457)
|
8b5668ef | 18-Oct-2024 |
Dmitry Stogov |
Fix invalid target opline with jit->reuse_ip active (#16457) This is an alternative for #16440 |
42e179ef | 16-Oct-2024 |
Gina Peter Banyard |
ext/soap: Minor refactoring to wsdl_message() |
d48bc086 | 16-Oct-2024 |
Gina Peter Banyard |
ext/soap: Reduce scope and use proper names for XML attribute variables |
61713629 | 16-Oct-2024 |
Gina Peter Banyard |
ext/soap: Indentation fix |
f0a35e2c | 16-Oct-2024 |
Gina Peter Banyard |
ext/soap: Check services are not empty via an if guard |
81132bb2 | 16-Oct-2024 |
Gina Peter Banyard |
ext/soap: Eliminate some variable shadowing |
cfe2e113 | 16-Oct-2024 |
Gina Peter Banyard |
ext/soap: Use bool instead of int |
5e7c8762 | 16-Oct-2024 |
Gina Peter Banyard |
ext/soap: Replace memset with 0 initialization |
e2dee956 | 16-Oct-2024 |
Gina Peter Banyard |
ext/soap: Reduce scope of variable |
6ddab74d | 17-Oct-2024 |
Gina Peter Banyard |
sapi: Fix some variable shadowing (#16485) sapi_module, mime_type_map, zend_extensions, php_cgi_globals, and phpdbg_globals are true globals which are being shadowed |
b6f59d2a | 17-Oct-2024 |
Niels Dossche <7771979+nielsdos@users.noreply.github.com> |
Merge branch 'PHP-8.4' * PHP-8.4: Fix GH-16473: dom_import_simplexml stub is wrong
|
55266d42 | 17-Oct-2024 |
Niels Dossche <7771979+nielsdos@users.noreply.github.com> |
Merge branch 'PHP-8.3' into PHP-8.4 * PHP-8.3: Fix GH-16473: dom_import_simplexml stub is wrong
|
c26d5f20 | 17-Oct-2024 |
Niels Dossche <7771979+nielsdos@users.noreply.github.com> |
Merge branch 'PHP-8.2' into PHP-8.3 * PHP-8.2: Fix GH-16473: dom_import_simplexml stub is wrong
|
41af9335 | 17-Oct-2024 |
Niels Dossche <7771979+nielsdos@users.noreply.github.com> |
Fix GH-16473: dom_import_simplexml stub is wrong It's been wrong since PHP 8.0 at least, and the signature was inherited in 8.4-dev to the new DOM methods. Closes GH-16489. |
7aeafe4b | 17-Oct-2024 |
Niels Dossche <7771979+nielsdos@users.noreply.github.com> |
Merge branch 'PHP-8.4' * PHP-8.4: Fix GH-16406: Assertion failure in ext/phar/phar.c:2808
|
d8e51663 | 17-Oct-2024 |
Niels Dossche <7771979+nielsdos@users.noreply.github.com> |
Merge branch 'PHP-8.3' into PHP-8.4 * PHP-8.3: Fix GH-16406: Assertion failure in ext/phar/phar.c:2808
|
25817ad2 | 17-Oct-2024 |
Niels Dossche <7771979+nielsdos@users.noreply.github.com> |
Merge branch 'PHP-8.2' into PHP-8.3 * PHP-8.2: Fix GH-16406: Assertion failure in ext/phar/phar.c:2808
|
6a8d0a05 | 16-Oct-2024 |
Niels Dossche <7771979+nielsdos@users.noreply.github.com> |
Fix GH-16406: Assertion failure in ext/phar/phar.c:2808 When copying entries during conversion in phar_convert_to_other(), the header offset is not reset. This didn't matter in the past
Fix GH-16406: Assertion failure in ext/phar/phar.c:2808 When copying entries during conversion in phar_convert_to_other(), the header offset is not reset. This didn't matter in the past as it wasn't used anyway in the particular use-case, but since 1bb2a4f9 this is actually used and sanity-checked. Closes GH-16470.
show more ...
|