summaryrefslogtreecommitdiff
path: root/UPGRADING
Commit message (Collapse)AuthorAgeFilesLines
* Remove call_user_method() and call_user_method_array() from master, long ↵Kalle Sommer Nielsen2014-04-051-0/+2
| | | | time deprecated in favour of call_user_func*().
* BFNMichael Wallner2013-12-051-0/+3
|
* bump version, empty NEWS, UPGRADING and UPGRADING.INTERNALSFerenc Kovacs2013-11-061-72/+0
|
* NEWS + UPGRADINGRemi Collet2013-11-041-0/+6
|
* Fix English hereRasmus Lerdorf2013-11-021-2/+2
|
* Add crypt() change in UPGRADINGYasuo Ohgaki2013-10-311-0/+4
|
* ldap_escape() notesMichael Wallner2013-10-241-0/+6
|
* Thanks Daniel, I didn't think long enoughMichael Wallner2013-10-091-5/+0
|
* openssl NEWS,UPGRADINGMichael Wallner2013-10-081-0/+12
|
* add NEWS and UPGRADING about gost-cryptoMichael Wallner2013-10-031-0/+2
|
* fix bug #55285 XMLReader::getAttribute/No/Ns methods inconsistencyMichael Wallner2013-10-031-0/+4
|
* Implement variadic function syntaxNikita Popov2013-09-261-2/+4
| | | | As per RFC: https://wiki.php.net/rfc/variadics
* Fix typo: HTTP_ROW_POST_DATA → HTTP_RAW_POST_DATA.Adam Harvey2013-09-231-1/+1
| | | | Fixes bug #65745 (Typo in commit 4a3936ef4abdeb72c7d323fe4b6a65e1ae0ef181).
* NEWS/UPGRADING{,.INTERNALS} notes about temp POST streamMichael Wallner2013-09-171-0/+14
|
* Request non-keep-alive connections by default in HTTP 1.1 requests.Adam Harvey2013-09-111-0/+4
| | | | | | | | | | | | | | | | | | | | | | | As noted in FR #65634, at present we don't send a Connection request header when the protocol version is set to 1.1, which means that RFC-compliant Web servers should respond with keep-alive connections. Since there's no way of reusing the HTTP connection at present, this simply means that PHP will appear to hang until the remote server hits its connection timeout, which may be quite some time. This commit sends a "Connection: close" header by default when HTTP 1.1 (or later) is requested by the user via the context options. It can be overridden by specifying a Connection header in the context options. It isn't possible to disable sending of the Connection header, but given "Connection: keep-alive" is the same as the default HTTP 1.1 behaviour, I don't see this as a significant issue — users who want to opt in for that still can. As a note, although I've removed an efree(protocol_version), this doesn't result in a memory leak: protocol_version is freed in the out: block at the end of the function anyway, and there are no returns between the removed efree() and the later call. Yes, I ran the tests with valgrind to check that. ☺ Implements FR #65634 (HTTP wrapper is very slow with protocol_version 1.1).
* Update NEWS/UPGRADING with info about incompat ctxGustavo André dos Santos Lopes2013-09-021-0/+3
|
* add upgrading notes about bison and 2GuploadsMichael Wallner2013-08-091-0/+2
|
* Update UPGRADING and make typo fixes to OCI8 package.xmlChristopher Jones2013-07-251-0/+10
|
* Update NEWS, UPGRADING and UPGRADING.INTERNALSNikita Popov2013-06-171-0/+5
|
* - damned conflictsPierre Joye2013-03-041-21/+0
|
* Merge branch 'PHP-5.5'Pierre Joye2013-03-041-0/+22
|\ | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: - add test for imagecropauto - (s)rgb distance works way better for now, re enable threshold - disable threshold for now, will enable it again using CIEDE2000 - add todo for threshold - clean and enable threshold - add image crop support Conflicts: UPGRADING
| * - 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
| |
* | oops, unintended additionStanislav Malyshev2013-01-281-3/+0
| |
* | post-5.5 changes for bug #46439 as described in the RFCStanislav Malyshev2013-01-281-0/+3
| |
* | Merge branch 'PHP-5.5'Stanislav Malyshev2013-01-281-0/+3
|\ \ | |/ | | | | | | | | | | | | * PHP-5.5: Implement fix for bug #46439 - add CURLFile class for safer uploads Conflicts: UPGRADING
| * 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
| |
* | Remove PHP 5.5 changes from master UPGRADINGChristopher Jones2012-11-181-179/+0
|/
* 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