From: Date: Sun, 20 Mar 2005 01:35:48 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-5.0.1b1~740 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b42ccfbff992c755a825e1c1c639de8c2652878;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 9b55b2b4c4..26ae47a0b5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,71 @@ +2005-03-19 Marcus Boerger + + * ZendEngine2/zend_object_handlers.c: + - More fixes to gracefully act on exception thrown in overload methods + + * ZendEngine2/zend_object_handlers.c: + - Fix #31185 + +2005-03-19 Jani Taskinen + + * NEWS: + less wordy + + * (PHP_5_0) + NEWS: + reorder + +2005-03-19 Marcus Boerger + + * main/main.c: + - We don't need to block those here (works as it works with normal error + overloading) + + * ZendEngine2/zend_execute_API.c: + - Fix all incarnations of bug #30266 + + * ext/standard/array.c + ext/standard/tests/array/bug30266.phpt: + - Check another incarnation of bug #30266 + +2005-03-19 Antony Dovgal + + * ext/bz2/bz2.c: + fix #32373 (segfault in bzopen('/wrong/path')) + +2005-03-19 Marcus Boerger + + * ext/pgsql/tests/24sync_query_prepared.phpt + ext/pgsql/tests/26async_query_prepared.phpt: + - Add missing skipif part + + * NEWS: + - ext/pgsql was updated + +2005-03-19 Christopher Kings-Lynne + + * ext/pgsql/pgsql.c: + Another oversight - make sure constants related to pg_result_error_field + are #if'd as well as the function itself + + * ext/pgsql/tests/02connection.phpt + ext/pgsql/tests/03sync_query.phpt: + Add regression tests for pg_transaction_status and pg_result_error_field + + * ext/pgsql/pgsql.c: + Minor oversight in #if for an internal function + +2005-03-19 Rui Hirokawa + + * ext/mbstring/php_mbregex.c: + oniguruma updated to 3.7.1 and changed UChar to OnigUChar. + +2005-03-19 Andi Gutmans + + * ZendEngine2/zend_interfaces.c + ZendEngine2/zend_interfaces.h: + - Fix typos + 2005-03-18 Jani Taskinen * ext/ingres_ii/config.w32 diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 65ec0ceaeb..d856557cca 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,20 @@ +2005-03-19 Marcus Boerger + + * zend_object_handlers.c: + - More fixes to gracefully act on exception thrown in overload methods + + * zend_object_handlers.c: + - Fix #31185 + + * zend_execute_API.c: + - Fix all incarnations of bug #30266 + +2005-03-19 Andi Gutmans + + * zend_interfaces.c + zend_interfaces.h: + - Fix typos + 2005-03-16 Wez Furlong * (PHP_5_0)