#
92f6e215 |
| 08-Jul-2021 |
Nikita Popov |
Deprecate FILE_BINARY and FILE_TEXT constants These constants have no effect. Part of https://wiki.php.net/rfc/deprecations_php_8_1.
|
#
63901584 |
| 08-Jul-2021 |
Nikita Popov |
Deprecate calling mb_check_encoding() without argument Part of https://wiki.php.net/rfc/deprecations_php_8_1.
|
#
dcc8463a |
| 08-Jul-2021 |
Nikita Popov |
Deprecate IAP functions on objects Deprecate use of key(), current(), next(), prev(), reset() and end() on objects. Cast the object to array first. Part of https://wiki.php.net/
Deprecate IAP functions on objects Deprecate use of key(), current(), next(), prev(), reset() and end() on objects. Cast the object to array first. Part of https://wiki.php.net/rfc/deprecations_php_8_1.
show more ...
|
#
5bb83b37 |
| 08-Jul-2021 |
Nikita Popov |
Deprecate date_sunrise() and date_sunset() date_sunrise() and date_sunset() are deprecated in favor of date_sun_info(). Part of https://wiki.php.net/rfc/deprecations_php_8_1.
|
#
6e16e1da |
| 17-Apr-2020 |
Marco Pivetta |
Make ReflectionProperty/Method always accessible With this patch, it is no longer required to call `ReflectionProperty#setAccessible()` or `ReflectionMethod#setAccessible()` with `tr
Make ReflectionProperty/Method always accessible With this patch, it is no longer required to call `ReflectionProperty#setAccessible()` or `ReflectionMethod#setAccessible()` with `true`. If a userland consumer already got to the point of accessing object/class information via reflection, it makes little sense for `ext/reflection` to disallow accessing `private`/`protected` symbols by default. After this patch, calling `ReflectionProperty#setAccessible(true)` or `ReflectionMethod#setAccessible(true)` on newly instantiated `ReflectionProperty` or `ReflectionMethod` respectively will have no effect. RFC: https://wiki.php.net/rfc/make-reflection-setaccessible-no-op Closes GH-5412.
show more ...
|
#
a5360e80 |
| 06-Jul-2021 |
Máté Kocsis |
Add support for final class constants RFC: https://wiki.php.net/rfc/final_class_const Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
|
#
069a9fa5 |
| 05-Jul-2021 |
George Peter Banyard |
Pure Intersection types (#6799) Implement pure intersection types RFC RFC: https://wiki.php.net/rfc/pure-intersection-types Co-authored-by: Nikita Popov <nikic@php.net>
Pure Intersection types (#6799) Implement pure intersection types RFC RFC: https://wiki.php.net/rfc/pure-intersection-types Co-authored-by: Nikita Popov <nikic@php.net> Co-authored-by: Ilija Tovilo <ilutov@php.net>
show more ...
|
#
b11785c5 |
| 25-Jun-2021 |
Cameron Porter |
Fixed bug #81085: Add version 7.71.0 blob options. Adds support for the following options beginning with version 7.71.0: CURLOPT_ISSUERCERT_BLOB CURLOPT_PROXY_ISSUERCERT
Fixed bug #81085: Add version 7.71.0 blob options. Adds support for the following options beginning with version 7.71.0: CURLOPT_ISSUERCERT_BLOB CURLOPT_PROXY_ISSUERCERT CURLOPT_PROXY_ISSUERCERT_BLOB CURLOPT_PROXY_SSLCERT_BLOB CURLOPT_PROXY_SSLKEY_BLOB CURLOPT_SSLCERT_BLOB CURLOPT_SSLKEY_BLOB Closes GH-7194.
show more ...
|
#
fb701948 |
| 22-Jun-2021 |
Juliette <663378+jrfnl@users.noreply.github.com> |
UPGRADING: update information re: return type for internal methods (#7182) As discussed in 7051.
|
#
ed88daec |
| 18-Jun-2021 |
Joe Watkins |
missing news/upgrading entry
|
#
deb7955b |
| 17-Jun-2021 |
Nikita Popov |
Fix #81150 Add UPGRADING note for float to int deprecation [ci skip]
|
#
1c08f8a4 |
| 18-May-2021 |
Nikita Popov |
Allow named args after unpack Currently, argument unpacking and named arguments cannot be mixed at all. This relaxes the restriction to allow foo(...$args, named: $arg). The variant
Allow named args after unpack Currently, argument unpacking and named arguments cannot be mixed at all. This relaxes the restriction to allow foo(...$args, named: $arg). The variant foo(named: $arg, ...$args) is still forbidden, because we can't ensure that positional parameters come before named parameters in that case (without more intrusive changes). Effectively this just enforces a required style, as the order of unpack and named args doesn't matter for the cases where both could be well-defined. ML discussion: https://externals.io/message/114589 Closes GH-7009.
show more ...
|
#
805471e8 |
| 08-Jun-2021 |
Nikita Popov |
Fix bug #81112: Implement JsonSerializable for SplFixedArray This returns an array for SplFixedArray JSON encoding, which is more appropriate than an object with integer string keys.
Fix bug #81112: Implement JsonSerializable for SplFixedArray This returns an array for SplFixedArray JSON encoding, which is more appropriate than an object with integer string keys. Closes GH-7117.
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 ...
|