#
bf94010b |
| 08-Jul-2021 |
Nikita Popov |
Deprecate FILTER_SANITIZE_STRING/STRIPPED Deprecate the FILTER_SANITIZE_STRING and FILTER_SANITIZE_STRIPPED filters. This is part of https://wiki.php.net/rfc/deprecations_php_8_
Deprecate FILTER_SANITIZE_STRING/STRIPPED Deprecate the FILTER_SANITIZE_STRING and FILTER_SANITIZE_STRIPPED filters. This is part of https://wiki.php.net/rfc/deprecations_php_8_1.
show more ...
|
#
1c07b11b |
| 08-Jul-2021 |
Nikita Popov |
Deprecate odbc_result_all() Part of https://wiki.php.net/rfc/deprecations_php_8_1. |
#
625b89af |
| 08-Jul-2021 |
Nikita Popov |
Deprecate mysqli::init() In favor of parent::__construct(). Part of https://wiki.php.net/rfc/deprecations_php_8_1. |
#
bf0c1ce1 |
| 08-Jul-2021 |
Nikita Popov |
Deprecate mhash Deprecate mhash(), mhash_keygen_s2k(), mhash_count(), mhash_get_block_size() and mhash_get_hash_name() in favor of the normal hash_*() functions. Part of htt
Deprecate mhash Deprecate mhash(), mhash_keygen_s2k(), mhash_count(), mhash_get_block_size() and mhash_get_hash_name() in favor of the normal hash_*() functions. Part of https://wiki.php.net/rfc/deprecations_php_8_1.
show more ...
|
#
1c50784a |
| 08-Jul-2021 |
Nikita Popov |
Deprecate IntlCalendar::roll() with bool argument Pass 1 instead of true and -1 instead of false. Part of https://wiki.php.net/rfc/deprecations_php_8_1. |
#
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. |
Revision tags: php-8.0.1, php-7.4.14, php-7.3.26, php-7.4.14RC1, php-8.0.1RC1, php-7.3.26RC1, php-8.0.0, php-7.3.25, php-7.4.13, php-8.0.0RC5, php-7.4.13RC1, php-8.0.0RC4, php-7.3.25RC1, php-7.4.12, php-8.0.0RC3, php-7.3.24, php-8.0.0RC2, php-7.4.12RC1, php-7.3.24RC1, php-7.2.34, php-8.0.0rc1, php-7.4.11, php-7.3.23, php-8.0.0beta4, php-7.4.11RC1, php-7.3.23RC1, php-8.0.0beta3, php-7.4.10, php-7.3.22, php-8.0.0beta2, php-7.3.22RC1, php-7.4.10RC1, php-8.0.0beta1, php-7.4.9, php-7.2.33, php-7.3.21, php-8.0.0alpha3, php-7.4.9RC1, php-7.3.21RC1, php-7.4.8, php-7.2.32, php-8.0.0alpha2, php-7.3.20, php-8.0.0alpha1, php-7.4.8RC1, php-7.3.20RC1, php-7.4.7, php-7.3.19, php-7.4.7RC1, php-7.3.19RC1, php-7.4.6, php-7.2.31, php-7.4.6RC1, php-7.3.18RC1 |
|
#
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 ...
|
#
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) |