summaryrefslogtreecommitdiff
path: root/UPGRADING
Commit message (Collapse)AuthorAgeFilesLines
* Document removal of opcache.fast_shutdownNikita Popov2017-12-181-0/+5
| | | | [ci skip]
* Fix typo in UPGRADING, should be oci_unregister_taf_callbackTyson Andre2017-11-161-1/+1
| | | | | | | See de65a2243f5e52ccafc69889ab0b64f4481c5358 which exposes the unregister functionality. [ci skip]
* Mention spl_object_id in UPGRADING notesTyson Andre2017-11-061-0/+3
| | | | This was implemented in PR #2611
* [ci skip] hash_hmac_algos() is new in PHP 7.2.0Christoph M. Becker2017-09-271-0/+3
|
* [ci skip] Fix more typos in UPGRADINGJannes Jeising2017-09-201-1/+1
|
* [ci skip] Fix typos in UPGRADINGChristoph M. Becker2017-09-141-3/+3
|
* [ci-skip] Add missing UPGRADING entry for commit 0d0f7cdChristoph M. Becker2017-09-111-0/+5
| | | | | There is a respective entry in NEWS, but that would likely be missed by the doc team.
* Fixed bug #75170Nikita Popov2017-09-071-0/+4
| | | | | | | This change may result in different mt_rand/rand sequences being generated on 64-bit systems for a specific seed. See also https://externals.io/message/100229.
* UPGRADINGRemi Collet2017-09-051-0/+3
|
* Note deprecation of $errcontextNikita Popov2017-08-121-0/+2
|
* Add ftp_append to create a new file or append data to an existing file (RFC959)Andreas Treichel2017-08-021-0/+3
|
* Fix typo in PHP 7.2 changelogjrfnl2017-07-241-1/+1
|
* Fix typo in UPGRADING for 7.2Issei.M2017-07-241-1/+1
|
* * Implemented #65187 (exif_read_data/thumbnail: add support for stream resource)Kalle Sommer Nielsen2017-07-121-0/+2
| | | | * ext/exif now uses FAST_ZPP
* NEWS for SodiumRemi Collet2017-07-111-0/+3
|
* ZipArchive implements countable, added ZipArchive::count() methodRemi Collet2017-07-101-0/+2
|
* Upgrading note for #74837Remi Collet2017-07-101-0/+4
|
* Deprecated the read_exif_data() aliasKalle Sommer Nielsen2017-07-081-0/+3
|
* Add missing NEWS entry, update UPGRADINGAndrey Andreev2017-07-071-2/+2
| | | | | | | | This was done back in January, but never noted in the NEWS file. References: https://github.com/php/php-src/pull/2312 https://github.com/php/php-src/pull/2321
* Fixed bug #74514 5 session functions incorrectly warn when calling in ↵Yasuo Ohgaki2017-07-011-0/+7
| | | | read-only/getter mode
* Implement object type annotationMichał Brzuchalski2017-06-251-0/+3
| | | | RFC: https://wiki.php.net/rfc/object-typehint
* Fixed Bug #74537 (Align --with-pdo-oci configure option with --with-oci8 syntax)Christopher Jones2017-06-201-0/+4
|
* Mention OCI8 TAF callback support in UPGRADINGChristopher Jones2017-06-201-0/+7
|
* Merge branch 'pull-request/2528'Christoph M. Becker2017-06-191-0/+3
|\ | | | | | | | | | | * pull-request/2528: Change flags to use SQLITE3_OPEN_READ* constants instead of a fake-boolean, add tests on errors Implement writing to BLOBs in SQLite3
* | add UPGRADING noteAnatol Belski2017-06-091-0/+3
| |
* | add PREG_UNMATCHED_AS_NULL flag to allow distinguish between unmatched ↵Nicolas Grekas2017-05-291-5/+6
| | | | | | | | subpatterns and empty matches
* | Added more EXIF MAKERNOTE formats:Kalle Sommer Nielsen2017-05-281-1/+2
| | | | | | | | | | | | | | - AGFA, - Kyocera - Ricoh - Epson
* | Allow overriding abstract methodsPedro Magalhães2017-05-241-0/+3
|/ | | | RFC: https://wiki.php.net/rfc/allow-abstract-function-override
* Ensure number_format() doesn't include sign for zeroCraig Duncan2017-05-091-0/+1
|
* Fixed bug #74269: Strict comparison of initial trait property valuesPedro Magalhães2017-05-011-0/+2
|
* Add trailing comma syntax support for mixed and unmixed group use listsSammy Kaye Powers2017-05-011-0/+2
| | | | RFC: https://wiki.php.net/rfc/list-syntax-trailing-commas
* Fix typosVivek Dinesh2017-03-271-2/+2
| | | | [skip ci]
* Change 'undefined constant' from E_NOTICE to E_WARNING and mention deprecationRowan Collins2017-03-231-0/+3
| | | | | Implements RFC "Deprecate and Remove Bareword (Unquoted) Strings" [https://wiki.php.net/rfc/deprecate-bareword-strings]
* Fix typoAdam Baratz2017-03-211-1/+1
|
* Add note to the UPGRADING about JSON_OBJECT_AS_ARRAY priority changesJakub Zelenka2017-03-201-0/+5
|
* Zip: add support for encrypted archiveRemi Collet2017-03-021-0/+12
|
* Merge branch 'pull-request/2355'Christoph M. Becker2017-02-141-0/+4
|\ | | | | | | | | | | | | * pull-request/2355: Deprecate INTL_IDNA_VARIANT_2003 We also add a respective note to UPGRADING.
* | Implement Parameter Type Widening RFCNiklas Keller2017-02-041-0/+6
| |
* | Add UPGRADING notes for deprecationsNikita Popov2017-02-031-2/+28
|/
* [ci skip] add upgrading note about PHP_OS_FAMILYJoe Watkins2017-01-261-0/+1
|
* Switch to the v2 version of these functions.Rasmus Lerdorf2017-01-221-0/+4
| | | | | The sqlite3 docs suggest always using prepare_v2 and the close_v2 could potentially help with an fd leak we have been seeing
* Disallow non-crypto hashes in HMAC and PBKDF2Andrey Andreev2017-01-181-0/+4
| | | | For this purpose add is_crypto flag to php_hash_ops.
* Fixed bug #46564Libor M2017-01-071-0/+5
| | | | | | bcmod() no longer truncates fractionals to integers. This matches the behavior of fmod(). It also matches the behavior of bcpowmod(). It also matches the behavior of bcmod() in HHVM.
* Update UPGRADING wrt. PR 1303Christoph M. Becker2017-01-061-0/+5
|
* Merge branch 'PHP-7.1'Joe Watkins2017-01-061-0/+3
|\ | | | | | | | | | | * PHP-7.1: Increase realpath_cache_size default value add UPGRADING note for realpath_cache_size
| * Document the changes to lexical scoping in 7.1.Adam Harvey2016-12-301-0/+2
| | | | | | | | | | Fixes bug #73844 (Cannot use lexical variable $variable as a parameter name inside array_walk()).
| * Update UPGRADING wrt. bug #72785Christoph M. Becker2016-12-301-0/+3
| |
| * extend UPGRADINGAnatol Belski2016-12-181-4/+24
| |
| * Fix session upgrade documentationTobias Schultze2016-12-041-8/+8
| |
| * Update UPGRADING with info about AEAD changes in openssl_(en|de)cryptJakub Zelenka2016-11-271-0/+2
| |