From: Date: Sat, 16 Dec 2006 01:31:02 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_1_0_0RC1~684 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=344ee28eb1bce066c48215d01e80b0abd9b22364;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 249bff0b2e..d954282f1f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,77 @@ +2006-12-15 Andrei Zmievski + + * README.UNICODE: + Update with INI file info. + + * unicode-progress.txt + ext/standard/basic_functions.c: + Unicode support in ini_*() functions. + + * ZendEngine2/zend_alloc.c: + __builtin_expect() exists only in GCC 3.0 and higher. + + * ZendEngine2/zend_API.h: + Make all macros (RETURN_*, RETVAL_*, ZVAL_*, add_*) that convert binary + strings to Unicode actually issues errors on failure. I'm surprised we + haven't done this already. + + * ZendEngine2/zend_unicode.c: + Fix potential buffer overflow in default conversion error handler. + + * ZendEngine2/zend.c: + Make utf8_conv stop on conversion errors when converting to UTF-16. + +2006-12-15 Andi Gutmans + + * ZendEngine2/zend_alloc.c: + - MF 5.2 (put cookie in first place) + + * (PHP_5_2) + ZendEngine2/zend_alloc.c: + - I prefer cookie to be the first element. + +2006-12-15 Dmitry Stogov + + * (PHP_5_2) + NEWS + ZendEngine2/zend_alloc.c + ZendEngine2/zend_alloc.c: + Added internal heap protection + . safe unlinking + . cookies + . canary protection (debug build only) + +2006-12-15 Wez Furlong + + * ext/pdo_sqlite/pdo_sqlite.c + ext/pdo_sqlite/php_pdo_sqlite.h + ext/pdo_sqlite/php_pdo_sqlite_int.h + ext/pdo_sqlite/sqlite_driver.c + ext/pdo_sqlite/sqlite_statement.c: + merge php5 pdo_sqlite into head; this source compiles on both php5 and + php6. + +2006-12-15 Ilia Alshanetsky + + * (PHP_5_2) + configure.in + main/php_version.h: + back to dev + + * (PHP_5_2) + NEWS + configure.in + main/php_version.h: + 5.2.1RC1 + +2006-12-15 Andrei Zmievski + + * (PHP_5_2) + ext/standard/var_unserializer.c + ext/standard/var_unserializer.re: + Support for 'S' format in unserialize() (forward compatibility with PHP + 6) + 2006-12-14 Andrei Zmievski * ext/standard/var.c diff --git a/Zend/ChangeLog b/Zend/ChangeLog index f7d1871197..88152e8073 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,37 @@ +2006-12-15 Andrei Zmievski + + * zend_alloc.c: + __builtin_expect() exists only in GCC 3.0 and higher. + + * zend_API.h: + Make all macros (RETURN_*, RETVAL_*, ZVAL_*, add_*) that convert binary + strings to Unicode actually issues errors on failure. I'm surprised we + haven't done this already. + + * zend_unicode.c: + Fix potential buffer overflow in default conversion error handler. + + * zend.c: + Make utf8_conv stop on conversion errors when converting to UTF-16. + +2006-12-15 Andi Gutmans + + * zend_alloc.c: + - MF 5.2 (put cookie in first place) + + * (PHP_5_2) + zend_alloc.c: + - I prefer cookie to be the first element. + +2006-12-15 Dmitry Stogov + + * zend_alloc.c + zend_alloc.c: + Added internal heap protection + . safe unlinking + . cookies + . canary protection (debug build only) + 2006-12-12 Sara Golemon * (PHP_5_2)