History log of /PHP-8.1/UPGRADING (Results 51 – 75 of 1208)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 16d499ac 13-Jun-2021 Joe Watkins

Merge branch 'phpdbg-no-remote'

* phpdbg-no-remote:
The remote functionality is not being used. It significantly complicates current code and makes it harder to add new features.

Merge branch 'phpdbg-no-remote'

* phpdbg-no-remote:
The remote functionality is not being used. It significantly complicates current code and makes it harder to add new features.

This commit drops all remote related functionality.

show more ...


# ae9f6e7a 10-Jun-2021 deltragon

Add IntlDatePatternGenerator (#6771)

Add IntlDatePatternGenerator class per RFC https://wiki.php.net/rfc/intldatetimepatterngenerator.

# 81f6d36c 05-May-2021 Ben Morss

Add avif support to ext/gd

This backports avif support from upstream libgd into bundled libgd
and exposes the functionality through new imagecreatefromavif()
and imageavif() function

Add avif support to ext/gd

This backports avif support from upstream libgd into bundled libgd
and exposes the functionality through new imagecreatefromavif()
and imageavif() functions.

Closes GH-7026.

Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de>

show more ...

# fc147ed8 05-Jun-2021 David Carlier

sockets exposing TC_DEFER_ACCEPT to optimise tcp exchanges.

# 95a9e558 16-May-2021 David Carlier

Pull #6989 FreeBSD defines SO_ACCEPTFILTER

# 28382aa1 23-May-2021 David Carlier

pcntl: Adding pcntl_rfork support.

# 01775fa1 26-May-2021 Máté Kocsis

Declare tentative return types for ext/mysqli (#6998)

# 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)

12345678910>>...49