From: Date: Tue, 6 May 2008 01:31:45 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_2_0_0b1~87 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26603f68ebeb49b9961dcf4bb88f5f51aea86430;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index d5b1ee7b62..056da41940 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,126 @@ +2008-05-05 Ilia Alshanetsky + + * (PHP_5_2) + ext/standard/tests/strings/vsprintf_variation8.phpt: + MFB: Specify the necessary precision + + * (PHP_5_2) + NEWS + ext/simplexml/simplexml.c: + + MFB: Fixed bug #44798 (Memory leak assigning value to attribute). + +2008-05-05 Rasmus Lerdorf + + * ext/posix/posix.c: + No domainname element in utsname on OSX + + * (PHP_5_3) + ext/posix/posix.c: + There is no domainname element in utsname on OSX + +2008-05-05 Andrey Hristov + + * (PHP_5_2) + NEWS + ext/mysqli/mysqli.c + ext/mysqli/mysqli_fe.c + ext/mysqli/mysqli_repl.c + ext/mysqli/php_mysqli.h: + Fix build with libmysql 6.0.x + +2008-05-05 Antony Dovgal + + * (PHP_5_3) + ext/standard/basic_functions.c: + add atanh() for real + +2008-05-05 Dmitry Stogov + + * (PHP_5_3) + NEWS + ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.h + ZendEngine2/zend_execute.c + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h + ZendEngine2/tests/bug44913.phpt: + - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR) + - Fixed bug #44913 (Segfault when using return in combination with nested + loops + and continue 2) + + * ZendEngine2/tests/bug44913.phpt + ZendEngine2/tests/bug44913.phpt: + + - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR) + - Fixed bug #44913 (Segfault when using return in combination with nested + loops and continue 2) + + * ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.h + ZendEngine2/zend_execute.c + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h: + - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR) + - Fixed bug #44913 (Segfault when using return in combination with nested + loops and continue 2) + +2008-05-05 Derick Rethans + + * (PHP_5_3) + ext/standard/math.c: + - Fixed build. + +2008-05-05 Dmitry Stogov + + * ZendEngine2/zend_API.c + ZendEngine2/zend_API.c + ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.c + ZendEngine2/tests/ns_063.phpt + ZendEngine2/tests/ns_063.phpt + ZendEngine2/tests/ns_063.phpt: + Support for old-style constructors in namespaces + +2008-05-05 Kalle Sommer Nielsen + + * (PHP_5_3) + NEWS + ext/standard/basic_functions.c + ext/standard/math.c + ext/standard/php_math.h + ext/standard/tests/math/acosh_basic.phpt + ext/standard/tests/math/acosh_error.phpt + ext/standard/tests/math/acosh_variation.phpt + ext/standard/tests/math/asinh_basic.phpt + ext/standard/tests/math/asinh_error.phpt + ext/standard/tests/math/asinh_variation.phpt + ext/standard/tests/math/atanh_basic.phpt + ext/standard/tests/math/atanh_error.phpt + ext/standard/tests/math/atanh_variation.phpt: + Merge PHP_5_3 - Implemented Windows support for asinh(), acosh(), atanh(), + log1p() and expm1() + + [DOC] Merge_5_3 + + * ext/standard/basic_functions.c + ext/standard/math.c + ext/standard/php_math.h + ext/standard/tests/math/acosh_basic.phpt + ext/standard/tests/math/acosh_error.phpt + ext/standard/tests/math/acosh_variation.phpt + ext/standard/tests/math/asinh_basic.phpt + ext/standard/tests/math/asinh_error.phpt + ext/standard/tests/math/asinh_variation.phpt + ext/standard/tests/math/atanh_basic.phpt + ext/standard/tests/math/atanh_error.phpt + ext/standard/tests/math/atanh_variation.phpt: + Implemented Windows support for asinh(), acosh(), atanh(), log1p() and + expm1() + removed Windows check on tests + + [DOC] Windows support for asinh(), acosh(), atanh(), log1p() and expm1() + 2008-05-04 Etienne Kneuss * ext/gd/gd.c diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 4222a7b101..07346eca77 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,42 @@ +2008-05-05 Dmitry Stogov + + * (PHP_5_3) + zend_compile.c + zend_compile.h + zend_execute.c + zend_vm_def.h + zend_vm_execute.h + tests/bug44913.phpt: + - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR) + - Fixed bug #44913 (Segfault when using return in combination with nested + loops + and continue 2) + + * tests/bug44913.phpt + tests/bug44913.phpt: + + - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR) + - Fixed bug #44913 (Segfault when using return in combination with nested + loops and continue 2) + + * zend_compile.c + zend_compile.h + zend_execute.c + zend_vm_def.h + zend_vm_execute.h: + - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR) + - Fixed bug #44913 (Segfault when using return in combination with nested + loops and continue 2) + + * zend_API.c + zend_API.c + zend_compile.c + zend_compile.c + tests/ns_063.phpt + tests/ns_063.phpt + tests/ns_063.phpt: + Support for old-style constructors in namespaces + 2008-05-03 Felipe Pena * (PHP_5_3)