summaryrefslogtreecommitdiff
path: root/UPGRADING
Commit message (Collapse)AuthorAgeFilesLines
* Move some internal changes from UPGRADING to UPGRADING.INTERNALSNikita Popov2013-03-231-31/+0
|
* Add SplDoublyLinkedList::add to UPGRADINGEtienne Kneuss2013-03-221-0/+1
|
* Tweaks an add OPcache info to UPGRADINGRasmus Lerdorf2013-03-211-4/+37
|
* add array_column()Stanislav Malyshev2013-03-201-0/+1
|
* Add support for non-scalar Iterator keys in foreachNikita Popov2013-03-121-0/+2
| | | | RFC: https://wiki.php.net/rfc/foreach-non-scalar-keys
* Adding in NEWS/UPGRADING about process title change support.Keyur Govande2013-03-111-0/+2
|
* - add test for imagecropautoPierre Joye2013-03-041-0/+1
|
* - disable threshold for now, will enable it again using CIEDE2000Pierre Joye2013-03-011-0/+14
|
* - add image flip API supportPierre Joye2013-02-271-0/+3
|
* NEWS/UPGRADING for changes in sockets, intlGustavo Lopes2013-02-031-0/+8
|
* Add news for bug #60524Stanislav Malyshev2013-01-281-0/+3
|
* Implement fix for bug #46439 - add CURLFile class for safer uploadsStanislav Malyshev2013-01-281-0/+11
|
* add new featuresStanislav Malyshev2013-01-281-0/+4
|
* fix bug #60833 - self, parent, static behave inconsistently case-sensitiveStanislav Malyshev2013-01-271-0/+2
|
* Tinker with UPGRADING's wording for the format string changes for clarity.Adam Harvey2013-01-141-4/+5
|
* Deprecate ext/mysql.Adam Harvey2012-12-101-0/+4
| | | | | | | | | | Per https://wiki.php.net/rfc/mysql_deprecation, connecting to a MySQL database via ext/mysql now generates an E_DEPRECATED error. This commit includes the minimal EXPECTF updates required for the test suite to pass: it may be preferable to refactor some of the tests to suppress deprecation errors in situations where no other error is expected from mysql_[p]connect(), but I'm not enough of a MySQL expert to want to get my hands that dirty in a long standing test suite.
* Slight performance improvementDmitry Stogov2012-12-051-1/+1
|
* Optimized access to temporary and compiled VM variablesDmitry Stogov2012-12-041-0/+11
|
* . The VM stacks for passing function arguments and syntaticaly nested calls ↵Dmitry Stogov2012-11-301-0/+21
| | | | | | were merged into a single stack. The stack size needed for op_array execution is calculated at compile time and preallocated at once. As result all the stack push operatins don't require checks for stack overflow any more. . Generators implementation was improved using the new VM stack. Now it's a bit more clear and faster.
* Add the new password functions to UPGRADING.Adam Harvey2012-11-211-0/+4
| | | | | | As a public service announcement on behalf of the documentation team, please remember to update UPGRADING as well as NEWS when adding features to master or an alpha branch. :)
* Add actual branch version number to UPGRADINGChristopher Jones2012-11-181-1/+1
|
* Put the new php.ini directives together.Adam Harvey2012-11-181-4/+8
| | | | (And make colon usage more consistent.)
* Move the deprecated functions up to the Deprecated Functionality section soAdam Harvey2012-11-181-6/+6
| | | | they're more visible.
* Updated NEWSAnatoliy Belsky2012-11-141-2/+9
|
* updateAndrey Hristov2012-10-041-1/+6
|
* Add NEWS/UPGRADING for previous changeNikita Popov2012-09-221-0/+4
|
* Generators & UPGRADINGGustavo André dos Santos Lopes2012-09-121-0/+2
|
* Support list in foreachXinchen Hui2012-08-251-0/+2
| | | | RFC: https://wiki.php.net/rfc/foreachlist
* Adjust UPGRADING/NEWS for additional mcrypt deprecationsNikita Popov2012-08-161-1/+3
|
* Implemented 'finally' keywords for phpXinchen Hui2012-08-131-0/+2
| | | | | | | RFC: https://wiki.php.net/rfc/finally FR: https://bugs.php.net/bug.php?id=32100 and I have got some improvment ideas(performance), will implemented later. thanks
* Merge branch 'pull-request/132'Stanislav Malyshev2012-08-051-0/+7
|\ | | | | | | | | | | | | | | | | * pull-request/132: OK, bye bye JavaScript, let's just include credits before license Nicer (JSLint-compliant!) credits reveal JavaScript Removed now-unnecessary expose_php checks for logo Fixed small misalignment in prev commit Removed Logo GUIDs and replaced with Data URIs and div hidden with JS
| * Removed Logo GUIDs and replaced with Data URIs and div hidden with JSAndrew Faulds2012-07-141-0/+7
| | | | | | | | | | | | | | | | | | | | | | - removed php_logo_guid() - removed php_egg_logo_guid() - removed php_real_logo_guid() - removed zend_logo_guid() - removed logo GUID handling - removed logo GUIDs from source - added logo data URIs instead for phpinfo() - added credits to phpinfo() page, but hidden by default
* | add note for mcrypt_ecbStanislav Malyshev2012-08-051-0/+1
| |
* | Reflect changes made in merge 99e48d3Gustavo André dos Santos Lopes2012-07-221-0/+4
| |
* | typoStanislav Malyshev2012-07-151-1/+1
| |
* | add NEWS/UPGRADINGStanislav Malyshev2012-07-141-0/+2
|/
* Add new function hash_pbkdf2() to UGRAPDING docAnthony Ferrara2012-07-101-0/+3
|
* Update UPGRADING given 7596445Gustavo André dos Santos Lopes2012-06-251-0/+3
|
* UPGRADING entry for boolval()David Soria Parra2012-06-071-0/+3
|
* Updated UPGRADING for the changes in eb346efGustavo André dos Santos Lopes2012-06-041-0/+34
|
* Merge branch 'pull-request/54'Stanislav Malyshev2012-05-241-1/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * pull-request/54: Allow arbitrary expressions for empty() This change is as per RFC https://wiki.php.net/rfc/empty_isset_exprs. The change allows passing the result of function calls and other expressions to the empty() language construct. This is accomplished by simply rewriting empty(expr) to !expr. The change does not affect the suppression of errors when using empty() on variables. empty($undefinedVar) will continue not to throw errors. When an expression is used inside empty() on the other hand, errors will not be suppressed. Thus empty($undefinedVar + $somethingElse) *will* throw a notice. The change also does not make empty() into a real function, so using 'empty' as a callback is still not possible. In addition to the empty() changes the commit adds nicer error messages when isset() is used on function call results or other expressions.
| * Allow arbitrary expressions for empty()Nikita Popov2012-05-131-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change is as per RFC https://wiki.php.net/rfc/empty_isset_exprs. The change allows passing the result of function calls and other expressions to the empty() language construct. This is accomplished by simply rewriting empty(expr) to !expr. The change does not affect the suppression of errors when using empty() on variables. empty($undefinedVar) will continue not to throw errors. When an expression is used inside empty() on the other hand, errors will not be suppressed. Thus empty($undefinedVar + $somethingElse) *will* throw a notice. The change also does not make empty() into a real function, so using 'empty' as a callback is still not possible. In addition to the empty() changes the commit adds nicer error messages when isset() is used on function call results or other expressions.
* | Note recent changes to ext/intl in UPGRADINGGustavo André dos Santos Lopes2012-05-201-1/+8
| |
* | Keep date precision in MessageFormatter.Gustavo André dos Santos Lopes2012-05-131-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | MessageFormatter::parse and MessageFormat::format (and their static equivalents) now don't throw away better than second precision in the arguments. It's already bad enough that in MessageFormatter and IntlDateFormatter we use seconds since epoch instead of milliseconds since epoch, deviating from the ICU date representations. But we don't need to throw away extra precision when parsing dates; we can keep the seconds since epoch convention and return non integer doubles with only a small BC impact. Note that we already could return doubles from MessageFormatter::parse if the date was sufficiently in the past or in the future.
* | Updated UPGRADING with changes to ext/intl.Gustavo André dos Santos Lopes2012-05-131-0/+6
|/
* Fixed bug #61038; "Z" and better behavior for unpack()theanomaly.is@gmail.com2012-04-171-0/+6
| | | | | | Added new "Z" argument to pack/unpack, now allowing "a" to return data without stripping, and "A" strips all trailing white space, while "Z" will strip everything after the first null.
* Implement const array/string dereferenceXinchen Hui2012-04-171-0/+2
| | | | RFC:https://wiki.php.net/rfc/constdereference
* Update UPGRADING with changes.Gustavo André dos Santos Lopes2012-04-011-0/+72
|
* Put new function in correct section.Gustavo André dos Santos Lopes2012-04-011-2/+2
|
* Align section headings with the latest (5.4) migration on-line doc.Christopher Jones2012-03-051-163/+53
| | | | | This will aid future reuse of UPGRADING text.