#
32aff25c |
| 10-May-2021 |
Máté Kocsis |
Convert resources to objects in ext/pgsql Closes GH-6791 Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> |
#
57a635c6 |
| 10-May-2021 |
Ayesh Karunaratne |
Move resource-object classes of PSpell to `\PSpell` namespace [namespaces in bundled extensions](https://wiki.php.net/rfc/namespaces_in_bundled_extensions) changes for PSpell. - Re
Move resource-object classes of PSpell to `\PSpell` namespace [namespaces in bundled extensions](https://wiki.php.net/rfc/namespaces_in_bundled_extensions) changes for PSpell. - Rename `PSpell` class to `\PSpell\Dictionary` - Rename `PSpellConfig` class to `\PSpell\Config` - Add entries to `UPGRADING` file. Related: bd12c94f
show more ...
|
#
e0b947a8 |
| 09-May-2021 |
Ayesh Karunaratne |
Move resource-object classes of LDAP to `\LDAP` namespaces (#6963) Another change as per accepted [namespaces in bundled extensions RFC](https://wiki.php.net/rfc/namespaces_in_bundled_extens
Move resource-object classes of LDAP to `\LDAP` namespaces (#6963) Another change as per accepted [namespaces in bundled extensions RFC](https://wiki.php.net/rfc/namespaces_in_bundled_extensions). Related: #6925, #5945, #6960
show more ...
|
#
09062704 |
| 08-May-2021 |
Nikita Popov |
Revert "Remove no longer used "log_errors_max_len" ini directive (#6838)" This reverts commit d2d227e54765a5de863c6608fd64e1228ab08108. This is an ABI break. |
#
c2b52847 |
| 08-May-2021 |
Ben Ramsey |
Add entries for log_errors_max_len INI directive removal |
#
68224f2a |
| 08-May-2021 |
Ayesh Karunaratne |
Move FTP extension class `FTPConnection` to `FTP\Connection` With the [namespaces in bundled extensions RFC](https://wiki.php.net/rfc/namespaces_in_bundled_extensions) passed, renaming the n
Move FTP extension class `FTPConnection` to `FTP\Connection` With the [namespaces in bundled extensions RFC](https://wiki.php.net/rfc/namespaces_in_bundled_extensions) passed, renaming the new `\FTPConnection` class to `\FTP\Connection`. This also adds an entry to `./UPGRADING` file. Related: #6925, #5945
show more ...
|
#
c4fe9fb3 |
| 07-May-2021 |
Ben Ramsey |
Add entries for new Sodium functions to NEWS |
#
01ce8d3a |
| 07-May-2021 |
Ben Ramsey |
Add entries for new behavior of PDO_ODBC server info/version attributes |
#
ab3052ab |
| 07-May-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80863: ZipArchive::extractTo() ignores references
|
#
57918b1a |
| 07-May-2021 |
Christoph M. Becker |
Fix #80863: ZipArchive::extractTo() ignores references We need to cater to references, when traversing the files to extract. While we're at it, we move the `zval_file` declaration into a
Fix #80863: ZipArchive::extractTo() ignores references We need to cater to references, when traversing the files to extract. While we're at it, we move the `zval_file` declaration into a narrower scope. Closes GH-6959.
show more ...
|
#
dd3e56ba |
| 06-May-2021 |
Nikita Popov |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fixed bug #81015
|
#
178bbe34 |
| 06-May-2021 |
Nikita Popov |
Fixed bug #81015 Make sure that the previous opline is part of the same block, otherwise it may be non-dominating. The test case does not fail on PHP-7.4, but I think the genera
Fixed bug #81015 Make sure that the previous opline is part of the same block, otherwise it may be non-dominating. The test case does not fail on PHP-7.4, but I think the general problem can appear on 7.4 as well, so I'm applying the patch to that branch.
show more ...
|
#
bf9dc534 |
| 05-May-2021 |
Nikita Popov |
Fixed bug #81007 Backport a change from the master branch. We usually test 32-bit using -m32 from an x86-64 host, probably nobody tried using an actual 32-bit host. |
#
f020d537 |
| 04-May-2021 |
Sara Golemon |
Reset for 8.0.7 |
#
d1c0cbdc |
| 04-May-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #81011: mb_convert_encoding removes references from arrays
|
#
0cafd53d |
| 04-May-2021 |
Christoph M. Becker |
Fix #81011: mb_convert_encoding removes references from arrays We need to dereference references. Closes GH-6938. |
#
0328ff49 |
| 04-May-2021 |
Derick Rethans |
Reset PHP-7.4 for 7.4.20 |
#
c2a06f5d |
| 03-May-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #79100: Wrong FTP error messages
|
#
42c72ef4 |
| 22-Apr-2021 |
Christoph M. Becker |
Fix #79100: Wrong FTP error messages First we need to properly clear the `inbuf`, what is an amendment to commit d2881adcbc[1]. Then we need to report `php_pollfd_for_ms()` fail
Fix #79100: Wrong FTP error messages First we need to properly clear the `inbuf`, what is an amendment to commit d2881adcbc[1]. Then we need to report `php_pollfd_for_ms()` failures right away; just setting `errno` does not really help, since at least in some cases it would have been overwritten before we actually could check it. We use `php_socket_strerror()` to get a proper error message, and define `ETIMEDOUT` to the proper value on Windows; otherwise we catch the definition in errno.h, which is not compatible with WinSock. The proper solution for this issue would likely be to include something like ext/sockets/windows_common.h. Finally, we ensure that we only report warnings using `inbuf`, if it is not empty. [1] <http://git.php.net/?p=php-src.git;a=commit;h=d2881adcbc9be60de7e7d45a3316b0e11b7eb1e8>. Closes GH-6718.
show more ...
|
#
645815c5 |
| 03-May-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #73246: XMLReader: encoding length not checked
|
#
272df442 |
| 22-Apr-2021 |
Christoph M. Becker |
Fix #73246: XMLReader: encoding length not checked libxml2 expects the passed encoding to be NUL terminated, so we reject strings with NUL bytes right away. Closes GH-6899. |
#
7bc9df4a |
| 29-Apr-2021 |
Matteo Beccati |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Revert "Fix #80892: PDO::PARAM_INT is treated the same as PDO::PARAM_STR"
|
#
b8e49fe8 |
| 29-Apr-2021 |
Matteo Beccati |
Revert "Fix #80892: PDO::PARAM_INT is treated the same as PDO::PARAM_STR" This reverts commit 340a06778c39054c7d715bceab82175840d92443. |
#
4c80e439 |
| 27-Apr-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #80460: ODBC doesn't account for SQL_NO_TOTAL indicator
|
#
7f839762 |
| 26-Mar-2021 |
Christoph M. Becker |
Fix #80460: ODBC doesn't account for SQL_NO_TOTAL indicator The `StrLen_or_IndPtr` parameter usually may be `SQL_NO_TOTAL`; we need to cater to that possibility to avoid working with neg
Fix #80460: ODBC doesn't account for SQL_NO_TOTAL indicator The `StrLen_or_IndPtr` parameter usually may be `SQL_NO_TOTAL`; we need to cater to that possibility to avoid working with negative string lengths and other issues. A noteable exemption are calls to `SQLGetData()` which return `SQL_SUCCESS`; in that case `SQL_NO_TOTAL` can not occur. Closes GH-6809.
show more ...
|