#
a31f4642 |
| 26-Feb-2019 |
Nikita Popov |
Allow exceptions in __toString() RFC: https://wiki.php.net/rfc/tostring_exceptions And convert some object to string conversion related recoverable fatal errors into Error excep
Allow exceptions in __toString() RFC: https://wiki.php.net/rfc/tostring_exceptions And convert some object to string conversion related recoverable fatal errors into Error exceptions. Improve exception safety of internal code performing string conversions.
show more ...
|
#
8f854c10 |
| 05-Jun-2019 |
Remi Collet |
keep DIR option to --with-unixODBC for old versions without libodbc.pc
|
#
9a495911 |
| 04-Jun-2019 |
Remi Collet |
this was in 7.3.5, not 7.3.6
|
#
cf9fd373 |
| 03-Jun-2019 |
Joe Watkins |
remove reverted commit from changelog
|
#
bfc10978 |
| 29-May-2019 |
Thomas Gerbet |
SimpleXMLElement and ResourceBundle implement Countable Both classes already have a count() method and are considered countable by \is_countable().
|
#
77cf3d7b |
| 16-May-2019 |
Dik Takken |
Allow array_merge() / array_merge_recursive() without arguments This allows writing array_merge(...$arrays) instead of array_merge([], ...$arrays)
Allow array_merge() / array_merge_recursive() without arguments This allows writing array_merge(...$arrays) instead of array_merge([], ...$arrays) and is in line with similar changes to array_push() and array_unshift() in PHP 7.3. Closes GH-4175.
show more ...
|
#
a8f4e8fe |
| 26-May-2019 |
Hugh McMaster |
ext/xml: Use PKG_CHECK_MODULES to detect the Expat library
|
#
32f87bb5 |
| 24-May-2019 |
Nikita Popov |
Add UPGRADING/NEWS entries
|
#
9df3e097 |
| 20-May-2019 |
Hugh McMaster |
Use PKG_CHECK_MODULES to detect unixODBC
|
#
0f7d6417 |
| 17-May-2019 |
Peter Kokot |
Add enchant pkg-config notice in UPGRADING
|
#
16e910cc |
| 17-May-2019 |
Peter Kokot |
Update UPGRADING about LiteSpeed
|
#
c27b531a |
| 14-May-2019 |
Peter Kokot |
Update changelogs
|
#
a07d422a |
| 30-Apr-2019 |
vladyslavstartsev |
Warn about non well-formed arguments in bcmath Co-Authored-By: Nikita Popov <nikita.ppv@googlemail.com> Co-Authored-By: Christoph M. Becker <cmbecker69@gmx.de>
|
#
dcfc2897 |
| 14-May-2019 |
Peter Kokot |
Update changelog
|
#
e829d087 |
| 06-Oct-2018 |
CHU Zhaowei |
Implement spread operator in arrays RFC: https://wiki.php.net/rfc/spread_operator_for_array Closes GH-3640.
|
#
357da6bc |
| 13-May-2019 |
Christoph M. Becker |
Deprecate and ignore $version parameter of curl_version() `curl_version()`[1] (of ext/curl) makes `curl_version_info()`[2] (of libcurl) available to PHP userland. The latter requires to
Deprecate and ignore $version parameter of curl_version() `curl_version()`[1] (of ext/curl) makes `curl_version_info()`[2] (of libcurl) available to PHP userland. The latter requires to pass an `age` argument which usually is `CURLVERSION_NOW`, so that the information returned by the runtime matches the declarations used during compile time. For C programs it is simply necessary to pass this information, and in rare occasions it might make sense to pass something else than `CURLVERSION_NOW`. curl.h notes: | The 'CURLVERSION_NOW' is the symbolic name meant to be used by | basically all programs ever that want to get version information. For the PHP binding, using a newer `age` than available at compile time will neither provide the PHP program more information, nor would using an older `age` have tangible benefits. We therefore deprecate the useless `$version` parameter, and if it is passed nonetheless, we use `CURLVERSION_NOW` instead of the supplied value, and raise a warning. [1] <https://www.php.net/manual/en/function.curl-version.php> [2] <https://curl.haxx.se/libcurl/c/curl_version_info.html>
show more ...
|
#
e96c776b |
| 12-May-2019 |
Theodore Brown |
Fix typos in upgrade notes
|
#
3ece7df9 |
| 08-May-2019 |
Hugh McMaster |
Use PKG_CHECK_MODULES to detect the iODBC library
|
#
755f6f6e |
| 10-May-2019 |
Hugh McMaster |
Use PKG_CHECK_MODULES to detect the systemd library
|
#
f13fdead |
| 09-May-2019 |
Kalle Sommer Nielsen |
NEWS and UPGRADING for the scatter filter
|
#
d0a56f70 |
| 09-May-2019 |
Nikita Popov |
Fixed bug #71030 Make sure to always fetch the RHS of a list assignment first, instead of special casing known self-assignments, which will not detect cases using references correctl
Fixed bug #71030 Make sure to always fetch the RHS of a list assignment first, instead of special casing known self-assignments, which will not detect cases using references correctly. As a side-effect, it is no longer possible to do something like byRef(list($x) = $y). This worked by accident previously, but only if $y was a CV and the self-assignment case did not trigger. However it shouldn't work for the same reason that byRef($x = $y) doesn't. Conversely byRef(list(&$x) = $y) and byRef($x =& $y) continue to be legal.
show more ...
|
#
72e1da81 |
| 07-May-2019 |
Christoph M. Becker |
Deprecate CURLPIPE_HTTP1 `CURLPIPE_HTTP1` is deprecated and has no effect as of cURL 7.62.0[1]. We therefore deprecate the PHP constant as well, and trigger a warning that it is no l
Deprecate CURLPIPE_HTTP1 `CURLPIPE_HTTP1` is deprecated and has no effect as of cURL 7.62.0[1]. We therefore deprecate the PHP constant as well, and trigger a warning that it is no longer supported, if used against cURL 7.62.0 and up. [1] <https://curl.haxx.se/libcurl/c/CURLMOPT_PIPELINING.html>
show more ...
|
#
09ea55cb |
| 09-Apr-2019 |
Nikita Popov |
Deprecate left-associative ternary Deprecate nesting ternary operators without explicit parentheses. RFC: https://wiki.php.net/rfc/ternary_associativity
|
#
fd2db119 |
| 27-Mar-2019 |
Nikita Popov |
Always generate fatal error for LSP failures RFC: https://wiki.php.net/rfc/lsp_errors
|
#
88f64d4a |
| 07-May-2019 |
Peter Kokot |
[ci skip] Add password registry RFC to changelog
|