#
4d883a0e |
| 21-May-2021 |
Joe Watkins |
note in upgrading for b227a722859e83fdba230f746477f6322ae33609 |
#
532c60cb |
| 06-May-2021 |
Máté Kocsis |
Add support for tentative return types of internal methods RFC: https://wiki.php.net/rfc/internal_method_return_types Closses GH-6971 |
#
959e5787 |
| 12-May-2021 |
Nikita Popov |
Disable -a mode without readline To avoid confusing, as -a without readline is not actually interactive. Discussion: https://externals.io/message/114426 Closes GH-6976. |
#
6d5c60e9 |
| 14-May-2021 |
Nikita Popov |
Add UPGRADING/NEWS for full_path for file uploads [ci skip] |
#
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 ...
|
#
3ccc0409 |
| 08-May-2021 |
Michael Voříšek |
Remove no longer used "log_errors_max_len" ini directive (#6838) This is a re-application of the original match against master. The patch was originally applied to master, then reverted
Remove no longer used "log_errors_max_len" ini directive (#6838) This is a re-application of the original match against master. The patch was originally applied to master, then reverted from there, incorrectly applied to PHP-8.0, reverted from there due to ABI break, and now lands on master again. We can only hope that it does not get reverted again ;)
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 ...
|
#
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 ...
|
#
9b794f8e |
| 07-May-2021 |
P.I.E. Security Team |
Expose libsodium's Ristretto255 API (#6922) |
#
01ce8d3a |
| 07-May-2021 |
Ben Ramsey |
Add entries for new behavior of PDO_ODBC server info/version attributes |
#
251da73a |
| 06-May-2021 |
Ayesh Karunaratne |
[skip-ci] Update UPGRADING file with new `IMAP` namespace Followed by the bundled extension namespace RFC, #6925 updated the `IMAPConnection` class to `IMAP\Connection`. This update
[skip-ci] Update UPGRADING file with new `IMAP` namespace Followed by the bundled extension namespace RFC, #6925 updated the `IMAPConnection` class to `IMAP\Connection`. This updates the UPGRADING file to reflect that change.
show more ...
|
#
54222a6f |
| 01-May-2021 |
Kamil Tekiela |
Implement mysqli_fetch_column (#6798) * Implement mysqli_fetch_column |
#
9a1da9f6 |
| 22-Feb-2021 |
Nikita Popov |
Don't use separate static variables in inherited methods RFC: https://wiki.php.net/rfc/static_variable_inheritance Closes GH-6719. |
#
3e6b4479 |
| 07-Dec-2020 |
Nikita Popov |
Partially deprecate Serializable If Serializable is implemented, require that __serialize() and __unserialize() are implemented as well, else issue a deprecation warning. Al
Partially deprecate Serializable If Serializable is implemented, require that __serialize() and __unserialize() are implemented as well, else issue a deprecation warning. Also deprecate use of PDO::FETCH_SERIALIZE. RFC: https://wiki.php.net/rfc/phase_out_serializable Closes GH-6494.
show more ...
|
#
c276c16b |
| 26-Apr-2021 |
Aaron Piotrowski |
Implement Fibers RFC: https://wiki.php.net/rfc/fibers Closes GH-6875. |
#
6cd0b48c |
| 19-Apr-2021 |
Matt Brown |
Implement never return type The never type can be used to indicate that a function never returns, for example because it always unwinds. RFC: https://wiki.php.net/rfc/noreturn_t
Implement never return type The never type can be used to indicate that a function never returns, for example because it always unwinds. RFC: https://wiki.php.net/rfc/noreturn_type Closes GH-6761.
show more ...
|
#
45bad647 |
| 14-Apr-2021 |
Kamil Tekiela |
Mysqli bind in execute (#6271) |
#
cbcfd860 |
| 13-Apr-2021 |
David Gebler |
Add fsync() and fdatasync() functions fsync is a straightforward wrapper around the same C function (implemented on Windows API as _commit() with identical signature). From the
Add fsync() and fdatasync() functions fsync is a straightforward wrapper around the same C function (implemented on Windows API as _commit() with identical signature). From the man pages: fsync() transfers ("flushes") all modified in-core data of (i.e., modified buffer cache pages for) the file referred to by the file descriptor fd to the disk device (or other permanent storage device) so that all changed information can be retrieved even if the system crashes or is rebooted. This includes writing through or flushing a disk cache if present. The call blocks until the device reports that the transfer has completed. RFC: https://wiki.php.net/rfc/fsync_function Closes GH-6650.
show more ...
|
#
462da6e0 |
| 31-Mar-2021 |
Josh Soref |
Fix spelling and grammar mistakes This PR corrects misspellings identified by the check-spelling action. The misspellings have been reported at jsoref@b6ba3e2#commitcomment-48946465
Fix spelling and grammar mistakes This PR corrects misspellings identified by the check-spelling action. The misspellings have been reported at jsoref@b6ba3e2#commitcomment-48946465 The action reports that the changes in this PR would make it happy: jsoref@602417c Closes GH-6822.
show more ...
|
#
caaf2e99 |
| 29-Mar-2021 |
George Peter Banyard |
[skip-ci] Update UPGRADING documents for the new argument for fputcsv() |
#
4ed4b64d |
| 28-Mar-2021 |
Jakub Zelenka |
Update NEWS and UPGRADING for FPM addition of pm.max_spawn_rate |
#
661731d4 |
| 21-Mar-2021 |
Jakub Zelenka |
Upadate NEWS and UPRADING with info about FPM openmetrics format addition |
#
cd40fc3c |
| 13-Mar-2021 |
Máté Kocsis |
Convert resources to objects in ext/ldap Closes GH-6770 |
#
7e9f6d2a |
| 13-Mar-2021 |
Dharman |
Deprecate OO style mysqli::get_client_info method Deprecate passing connection object to mysqli_get_client_info() Closes GH-6777. |