From: Date: Mon, 25 Aug 2008 01:34:25 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: BEFORE_HEAD_NS_CHANGE~587 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=136078c50fabce94cfa4c96542c2992100d26f77;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index b11effc543..382a6d30b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,92 @@ +2008-08-24 Felipe Pena + + * ext/odbc/php_odbc.c: + - New parameter parsing API + - CS + +2008-08-24 Etienne Kneuss + + * (PHP_5_3) + ZendEngine2/zend_compile.c + ZendEngine2/zend_interfaces.c + ZendEngine2/zend_interfaces.h: + MFH: + - Copy custom callback to the child class if any + - Prevent overwriting valid parent callbacks when implementing + Serializable + - Export zend_user_(un)serialize to be available for custom callbacks + + * ZendEngine2/zend_compile.c + ZendEngine2/zend_interfaces.c: + - Fix the order, and avoid overwriting when implementing Serializable + + * ZendEngine2/zend_compile.c + ZendEngine2/zend_interfaces.c + ZendEngine2/zend_interfaces.h: + - Export zend_user_(un)serialize functions to be used by custom callbacks + - Transfer custom (un)serialize callbacks through inheritance + +2008-08-24 Marcus Boerger + + * (PHP_5_3) + ZendEngine2/zend_gc.c + ZendEngine2/zend_objects.c + ZendEngine2/zend_objects_API.c + ZendEngine2/zend_objects_API.h: + - MFH Fix issue with destruction of overloaded objects + + * (PHP_5_3) + ext/spl/tests/iterator_068.phpt: + - Add new test + + * ext/spl/tests/iterator_068.phpt + ext/spl/tests/iterator_068.phpt: + + - Add new test + + * ZendEngine2/zend_gc.c + ZendEngine2/zend_objects.c + ZendEngine2/zend_objects_API.c + ZendEngine2/zend_objects_API.h: + - Fix issue with destruction of overloaded objects + +2008-08-24 Pierre-Alain Joye + + * (PHP_5_3) + ext/curl/config.w32: + - fix zlib detection and enable features available in 7.18.1 + +2008-08-24 Marcus Boerger + + * ext/pcre/php_pcre.c + ext/pcre/tests/preg_filter.phpt: + - Added function preg_filter() + [DOC] preg_filter() is basically the same as preg_replace but unlike the + latter it returns matches. + +2008-08-24 Felipe Pena + + * ext/spl/php_spl.c: + - Removed unused variable + + * ext/gd/gd.c + ext/wddx/wddx.c: + - MFB: New parameter parsing API + - CS (wddx) + + * (PHP_5_3) + ext/xml/xml.c: + - Removed unnecessary variable + + * ext/xml/xml.c: + MFB: + - New parameter parsing API + - Fixed crash in xml_parse_into_struct + + * ext/xmlrpc/xmlrpc-epi-php.c: + - MFB: New parameter parsing API + - WS, Cosmetics + 2008-08-23 Pierre-Alain Joye * (PHP_5_3) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 40fef5ee67..bafe652f96 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,40 @@ +2008-08-24 Etienne Kneuss + + * (PHP_5_3) + zend_compile.c + zend_interfaces.c + zend_interfaces.h: + MFH: + - Copy custom callback to the child class if any + - Prevent overwriting valid parent callbacks when implementing + Serializable + - Export zend_user_(un)serialize to be available for custom callbacks + + * zend_compile.c + zend_interfaces.c: + - Fix the order, and avoid overwriting when implementing Serializable + + * zend_compile.c + zend_interfaces.c + zend_interfaces.h: + - Export zend_user_(un)serialize functions to be used by custom callbacks + - Transfer custom (un)serialize callbacks through inheritance + +2008-08-24 Marcus Boerger + + * (PHP_5_3) + zend_gc.c + zend_objects.c + zend_objects_API.c + zend_objects_API.h: + - MFH Fix issue with destruction of overloaded objects + + * zend_gc.c + zend_objects.c + zend_objects_API.c + zend_objects_API.h: + - Fix issue with destruction of overloaded objects + 2008-08-22 Felipe Pena * zend_compile.c: