summaryrefslogtreecommitdiff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 7.0.0Lior Kaplan2014-08-191-1/+1
| | | | Follow up for d9f3eac
* Change to ext/reflection should be in its own categoryTjerk Meesters2014-08-181-1/+3
|
* Updated NEWS for d790ecTjerk Meesters2014-08-181-0/+1
|
* Add NEWS entry for log() improvementsSara Golemon2014-08-141-0/+1
|
* NEWS and UPGRADING for intdiv()Andrea Faulds2014-08-061-0/+1
|
* NEWS and UPGRADINGAndrea Faulds2014-08-011-0/+3
|
* Fix handling of session user module custom handlers.Sara Golemon2014-07-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | According to the documentation, returning TRUE from user based session handlers should indicate success, while returning FALSE should indicate failure. The existing logic relied on casting the return value to an integer and returning that from the function. However, the internal handlers use SUCCESS/FAILURE where SUCCESS == 0, and FAILURE == -1, so the following behavior map occurs: return false; => return 0; => return SUCCESS return true; => return 1; => return <undefined> Since the session API checks against FAILURE, both boolean responses wind up appearing like "not FAILURE". This diff reasserts boolean responses to behave as documented and introduces some special handling for integer responses of 0 and -1 so that code can be written for older and newer versions of PHP.
* Add NEWS. This doesn't need UPGRADING (or an RFC), IMO.Adam Harvey2014-06-111-0/+5
|
* Remove call_user_method() and call_user_method_array() from master, long ↵Kalle Sommer Nielsen2014-04-051-0/+3
| | | | time deprecated in favour of call_user_func*().
* fix NEWS file for masterStanislav Malyshev2013-12-231-59/+1
|
* fix newskrakjoe2013-12-221-2/+0
|
* fix news filekrakjoe2013-12-221-6/+0
|
* Merge branch 'PHP-5.6'krakjoe2013-12-221-0/+67
|\ | | | | | | | | | | | | | | | | | | * PHP-5.6: stop warnings from unused opcode map - BFN Conflicts: NEWS Zend/zend_vm_opcodes.h
| * Merge branch 'PHP-5.5' into PHP-5.6krakjoe2013-12-221-0/+63
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: stop warnings from unused opcode map - BFN - Fixed bug #66311 (Stack smashing protection kills PDO/ODBC queries) patch by: michael at orlitzky dot com Included new .c file in build too Fixed little typo in zend_vm_gen.php Moved to new file, killing a lot of warnings
| | * Merge branch 'PHP-5.4' into PHP-5.5krakjoe2013-12-221-0/+4
| | |\ | | | | | | | | | | | | | | | | | | | | * PHP-5.4: stop warnings from unused opcode map - BFN
| | | * - BFNFelipe Pena2013-12-221-0/+4
| | | |
| | | * keep 'em sortedBoris Lytochkin2013-12-201-3/+3
| | | |
| | | * Fixed SNMP_ERR_TOOBIG handling for bulk walk operationsBoris Lytochkin2013-12-201-0/+3
| | | |
| | | * Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real)Remi Collet2013-12-191-0/+3
| | | |
| | * | Fixed SNMP_ERR_TOOBIG handling for bulk walk operations. (Boris Lytochkin)Boris Lytochkin2013-12-201-0/+3
| | | |
| | * | NEWSRemi Collet2013-12-191-0/+3
| | | |
| | * | Fixed reavlidate_path=1 behavior to avoid caching of symlinks values.Dmitry Stogov2013-12-181-0/+4
| | | |
| | * | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-12-161-0/+3
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: Fix bug #65873 - Integer overflow in exif_read_data()
| | | * Fix bug #65873 - Integer overflow in exif_read_data()Stanislav Malyshev2013-12-161-0/+3
| | | |
| | * | Disallowed JMP into a finally block.Xinchen Hui2013-12-131-0/+1
| | | |
| | * | Update NEWS for 5.5.7 releaseJulien Pauli2013-12-121-1/+5
| | | |
| | * | Fixed bug #65486 mysqli_poll() is broken on Win x64Anatol Belski2013-12-121-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While this issue is visible in mysqli_poll() functions, the cause lays deeper in the stream to socket casting API. On Win x64 the SOCKET datatype is a 64 or 32 bit unsigned, while on Linux/Unix-like it's 32 bit signed integer. The game of casting 32 bit var to/from 64 bit pointer back and forth is the best way to break it. Further more, while socket and file descriptors are always integers on Linux, those are different things using different APIs on Windows. Even though using integer instead of SOCKET might work on Windows, this issue might need to be revamped more carefully later. By this time this patch is tested well with phpt and apps and shows no regressions, neither in mysqli_poll() nor in any other parts.
| | * | Merge branch 'PHP-5.4' into PHP-5.5Adam Harvey2013-12-071-0/+4
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: Switch to using freetype-config for freetype detection.
| | | * Switch to using freetype-config for freetype detection.Adam Harvey2013-12-071-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes GD compilation against libfreetype 2.5.1 and later after they made the rather interesting decision to change their include directory layout in a point release. The original suggestion in the bug was to use pkg-config, but my inclination is to use freetype-config instead: we should be able to get the same configuration information without actually needing pkg-config installed, since pkg-config is by no means guaranteed to exist on many Unices and distros, whereas freetype-config should always be present if a libfreetype build environment is installed. Let's try it out and see what happens. Fixes bug #64405 (Use freetype-config for determining freetype2 dir(s)).
| | | * Merge branch 'PHP-5.3' into PHP-5.4Stanislav Malyshev2013-12-101-1/+5
| | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.3: 5.3.29-dev Fix CVE-2013-6420 - memory corruption in openssl_x509_parse Conflicts: configure.in main/php_version.h
| | | | * 5.3.29-devStanislav Malyshev2013-12-101-0/+2
| | | | |
| | | | * Fix CVE-2013-6420 - memory corruption in openssl_x509_parseStanislav Malyshev2013-12-101-1/+3
| | | | |
| | | | * Fix CVE-2013-4073 - handling of certs with null bytesStanislav Malyshev2013-08-131-0/+4
| | | | |
| | | | * Merge PHP 5.3.27 NEWSJohannes Schlüter2013-07-101-6/+4
| | | | |
| | | | * This will be PHP 5.3.28Johannes Schlüter2013-06-191-0/+7
| | | | |
| | | | * Fixed bug #63186 (compile failure on netbsd)Matteo Beccati2013-06-141-0/+1
| | | | |
| | | | * missing colonAnatol Belski2013-06-101-1/+1
| | | | |
| | | | * Backported the fix for bug #53437Anatol Belski2013-06-101-0/+4
| | | | |
| | | | * Fixed bug #64997 (Segfault while using RecursiveIteratorIterator on 64-bits ↵Xinchen Hui2013-06-091-1/+5
| | | | | | | | | | | | | | | | | | | | systems)
| | | | * Fixed bug #64966 (segfault in zend_do_fcall_common_helper_SPEC)Xinchen Hui2013-06-091-0/+2
| | | | |
| | | | * Fixed bug #64934 Apache2 TS crash with get_browser()Anatol Belski2013-06-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In favour of reading the browscap.ini into a true global var only once in MINIT, the price for that is to deep copy the any data from it.
| | | | * Add NEWS for PHP 5.3.26Johannes Schlüter2013-06-051-3/+1
| | | | |
| | | | * Fixed bug #64960 (Segfault in gc_zval_possible_root)Xinchen Hui2013-06-051-0/+2
| | | | |
| | * | | NEWSRemi Collet2013-12-101-0/+1
| | | | |
| | * | | Fixed bug #66112 (Use after free condition in SOAP extension). (martin dot ↵Dmitry Stogov2013-12-101-0/+4
| | | | | | | | | | | | | | | | | | | | koegler at brz dot gv dot at)
| | * | | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-12-081-0/+1
| | |\ \ \ | | | |/ / | | | | | | | | | | | | | | | * PHP-5.4: Replace invalid code with a proper #error
| | | * | Replace invalid code with a proper #errorLior Kaplan2013-12-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This code creates a nasty error as mentioned in bugs #31131, #37062 Patch taken from Debian's PHP package: 044-strtod_arm_fix
| | | * | Fixed bug #61645 (fopen and O_NONBLOCK)Michael Wallner2013-12-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | if a mode like "rn" was passed to fopen(), then php_stream_parse_fopen_modes() would assign O_WRONLY to flags, because O_NONBLOCK tainted flags for the r/w/+ check
| | * | | BFNMichael Wallner2013-12-061-0/+1
| | | | |
| | * | | Merge branch 'PHP-5.4' into PHP-5.5Adam Harvey2013-12-031-0/+3
| | |\ \ \ | | | |/ / | | | | | | | | | | | | | | | * PHP-5.4: Remove 128.0.0.0/16 and 191.255.0.0/16 from the reserved list.