#
dcd77232 |
| 23-Oct-2019 |
Remi Collet |
add new ffi.preload option in php.ini and display ini entries in MINFO |
Revision tags: php-7.1.33, php-7.2.24, php-7.3.11, php-7.4.0RC4, php-7.3.11RC1, php-7.2.24RC1 |
|
#
21e631e4 |
| 06-Oct-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
#
6623e7ac |
| 02-Oct-2019 |
Nikita Popov |
Add support for mbstring.regex_retry_limit This is very similar to the existing mbstring.regex_stack_limit, but for backtracking. The default value matches pcre.backtrack_limit. Only
Add support for mbstring.regex_retry_limit This is very similar to the existing mbstring.regex_stack_limit, but for backtracking. The default value matches pcre.backtrack_limit. Only used on libonig >= 2.8.0.
show more ...
|
Revision tags: php-7.4.0RC3 |
|
#
1cde9e85 |
| 30-Sep-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
Revision tags: php-7.2.23 |
|
#
1806ce9c |
| 24-Sep-2019 |
Nikita Popov |
Add max_depth option to unserialize() Add a max_depth option to unserialize and an unserialize_max_depth ini setting, which can be used to control the depth limit. The default value
Add max_depth option to unserialize() Add a max_depth option to unserialize and an unserialize_max_depth ini setting, which can be used to control the depth limit. The default value is 4096. This option is intended to prevent stack overflows during the unserialization of deeply nested structures. This fixes bug #78549 and addresses oss-fuzz #17581, #17589, #17664, and #17788.
show more ...
|
Revision tags: php-7.3.10, php-7.4.0RC2, php-7.2.23RC1, php-7.3.10RC1, php-7.4.0RC1 |
|
#
790ed7d5 |
| 02-Sep-2019 |
Nikita Popov |
Enable display_startup_errors by default |
#
6926018b |
| 03-Sep-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.4' * PHP-7.4: Document opcache.preload_user directive
|
#
61dcae50 |
| 03-Sep-2019 |
Christoph M. Becker |
Document opcache.preload_user directive |
#
38d2c9bd |
| 02-Sep-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #76577: outdated documentation concerning track_errors
|
#
86ddc469 |
| 02-Sep-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: Fix #76577: outdated documentation concerning track_errors
|
#
cd63908a |
| 02-Sep-2019 |
Christoph M. Becker |
Fix #76577: outdated documentation concerning track_errors |
#
ea5854ca |
| 30-Aug-2019 |
Nikita Popov |
Make error_reporting=E_ALL the default |
Revision tags: php-7.1.32, php-7.2.22, php-7.3.9 |
|
#
29925cef |
| 27-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.4' * PHP-7.4: add ffi to php.ini extension [ci skip]
|
#
f08095fa |
| 27-Aug-2019 |
Pavel Dyakonov |
add ffi to php.ini extension [ci skip] |
Revision tags: php-7.4.0beta4, php-7.2.22RC1, php-7.3.9RC1, php-7.4.0beta2, php-7.1.31, php-7.2.21, php-7.3.8, php-7.4.0beta1 |
|
#
54401001 |
| 17-Jul-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.4' * PHP-7.4: Allow multiple cache instances per user/host on Windows
|
#
e2ed7e67 |
| 16-Jul-2019 |
Christoph M. Becker |
Allow multiple cache instances per user/host on Windows Formerly, there was at most a single OPcache instance per user and the so called system ID (which is determined from the PHP versi
Allow multiple cache instances per user/host on Windows Formerly, there was at most a single OPcache instance per user and the so called system ID (which is determined from the PHP version). Sometimes multiple OPcaches might be desired, though, particularly for unrelated CLI scripts, which may even be necessary (e.g. for our test suite in parallel mode). We therefore introduce a new INI directive `opcache.cache_id` which allows to configure independent OPcache instances for the same user. We also use `GetUserNameW()` instead of `php_win32_get_username()`, because the latter retrieves the user name encoded in the `default_charset`, which can obviously yield different results for different charsets, leading to OPcache "incompatibilities". Slightly worse, some characters may not even be encodeable in the `default_charset` and would be replaced by question marks, which could result in different users sharing the same OPcache. We also refactor, and re-use existing APIs to avoid duplicated code.
show more ...
|
Revision tags: php-7.2.21RC1, php-7.3.8RC1 |
|
#
7556600d |
| 15-Jul-2019 |
Christoph M. Becker |
Fix #65547: Default value for sunrise/sunset zenith still wrong The value of the zenith angle to calculate sunrise and sunset times is commonly defined as 90°50', and is "obtained by add
Fix #65547: Default value for sunrise/sunset zenith still wrong The value of the zenith angle to calculate sunrise and sunset times is commonly defined as 90°50', and is "obtained by adding the average apparent radius of the Sun (16') to the average amount of atmospheric refraction at the horizon (34')", according to http://aa.usno.navy.mil/faq/docs/RST_defs.php. This value is also used for the Sunrise/Sunset Algorithm published in the Almanac for Computers, 1990, see https://web.archive.org/web/20161202180207/http://williams.best.vwh.net/sunrise_sunset_algorithm.htm.
show more ...
|
Revision tags: php-7.4.0alpha3, php-7.3.7 |
|
#
d41ab644 |
| 02-Jul-2019 |
Joe Watkins |
Merge branch 'PHP-7.4' * PHP-7.4: simple ignore arguments in exceptions implementation
|
Revision tags: php-7.2.20, php-7.4.0alpha2, php-7.3.7RC3, php-7.3.7RC2, php-7.2.20RC2 |
|
#
0819e6dc |
| 17-Jun-2019 |
Joe Watkins |
simple ignore arguments in exceptions implementation |
#
ca8f3486 |
| 17-Jun-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
#
1b63528d |
| 17-Jun-2019 |
Nikita Popov |
Merge branch 'PHP-7.3' into PHP-7.4
|
#
9f0515c4 |
| 15-Jun-2019 |
Erik Lundin |
Add syslog.filter=raw This passes through syslog message unchanged, without splitting messages at newlines. |
Revision tags: php-7.4.0alpha1, php-7.3.7RC1, php-7.2.20RC1, php-7.2.19, php-7.3.6, php-7.1.30, php-7.2.19RC1, php-7.3.6RC1 |
|
#
c71e35ea |
| 01-May-2019 |
Kalle Sommer Nielsen |
Merge branch 'PHP-7.4' * PHP-7.4: Remove some more interbase leftovers Fix typo NEWS for ext/interbase unbundling
|
#
eaab0a2b |
| 01-May-2019 |
Kalle Sommer Nielsen |
Remove some more interbase leftovers |
Revision tags: php-7.1.29, php-7.2.18, php-7.3.5 |
|
#
7502df13 |
| 24-Apr-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.4' * PHP-7.4: Remove html_errors from INI Quick Reference as INI values are identical to Engine values
|