From dec714885d5863f04979cb6a7c4eb6bd20837c6c Mon Sep 17 00:00:00 2001 From: Date: Fri, 19 Aug 2005 05:37:01 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 154 +++++++++++++++++++++++++++++++++++++++++++++++++ Zend/ChangeLog | 64 ++++++++++++++++++++ 2 files changed, 218 insertions(+) diff --git a/ChangeLog b/ChangeLog index c402ef235f..1ecac91c80 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,157 @@ +2005-08-18 Andrei Zmievski + + * ext/standard/array.c: + Rework range() to be able to work on binary strings and also on Unicode + code points. Binary strings are not interpreted as numeric. + + * ext/standard/string.c: + Use u_totitle() instead of u_toupper() in ucwords(). + + * ZendEngine2/zend_API.c + ZendEngine2/zend_API.h + ZendEngine2/zend_operators.h + ZendEngine2/zend_unicode.h: + - Implement zend_codepoint_to_uchar(). + - Rename and fix zend_get_unified_string_type() so that it does not + allow mixing of binary and Unicode types. + +2005-08-18 Edin Kadribasic + + * (PHP_4_4) + win32/php4dllts.dsp: + Sync with PCRE lib upgrade + +2005-08-18 Pierre-Alain Joye + + * (PHP_5_1) + pear/PEAR/Remote.php: + - fix bad revert and make the xmlrpc ext detections fallback + forgot that 5.1 still has pear in its branche + +2005-08-18 Wez Furlong + + * scripts/php-config.in: + mf 5.1 + + * (PHP_5_1) + scripts/php-config.in: + Add ext to the include path. + +2005-08-18 Dmitry Stogov + + * ZendEngine2/zend_API.c + ZendEngine2/zend_API.h + ZendEngine2/zend_exceptions.c: + Suppoer for unicode exception messages + +2005-08-18 Ilia Alshanetsky + + * (PHP_4_4) + NEWS + Zend/zend_alloc.c + ZendEngine2/zend_alloc.c: + MFH: Fixed bug #34156 (memory usage remains elevated after memory limit is + reached) + + * (PHP_5_1) + NEWS + ZendEngine2/zend_alloc.c: + MFH: Fixed bug #34156 (memory usage remains elevated after memory limit is + reached); + +2005-08-18 Dmitry Stogov + + * ZendEngine2/zend_API.h + ext/standard/array.c: + Unicode support for extract() + +2005-08-18 Antony Dovgal + + * ZendEngine2/zend_builtin_functions.c: + fix memleak + +2005-08-18 Ilia Alshanetsky + + * ZendEngine2/zend_alloc.c: + Fixed bug #34156 (memory usage remains elevated after memory limit is + reached) + +2005-08-18 Jani Taskinen + + * ext/oci8/oci8.c + ext/openssl/openssl.c + ext/oracle/oracle.c + ext/pcre/php_pcre.c + ext/session/mod_files.c + ext/simplexml/simplexml.c + ext/snmp/winsnmp.c + ext/standard/assert.c + ext/standard/php_fopen_wrapper.c + ext/sybase_ct/php_sybase_ct.c: + Nuked EOLs from error messages + + * ext/gd/libgd/gd_arc_f_buggy.c + ext/gd/libgd/gd_gd2.c + ext/gd/libgd/gd_gif_in.c + ext/gd/libgd/gd_io.c + ext/gd/libgd/gd_jpeg.c + ext/gd/libgd/gd_png.c + ext/gd/libgd/gd_ss.c + ext/gd/libgd/gd_wbmp.c + ext/gd/libgd/gdxpm.c + ext/gd/libgd/xbm.c: + Nuke EOLs from error messages + + * ext/ftp/ftp.c: + - Removed EOLs from error messages + + * ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h + ZendEngine2/zend_vm_opcodes.h + ext/dom/php_dom.c: + - Removed EOL from error message + +2005-08-18 Dmitry Stogov + + * ext/standard/var.c: + var_export() should escape \ and ' characters. + + * ZendEngine2/zend_exceptions.c + ext/dom/php_dom.c + ext/dom/tests/dom003.phpt + main/output.c: + Unicode support + + * ZendEngine2/zend.h: + -** empty log message *** + + * ZendEngine2/zend_API.c: + We don't need EMPY_STRING here. This function is execuited in non-unicode + context only. + + * ext/standard/tests/strings/bug29119.phpt + ext/standard/tests/strings/str_word_count.phpt: + Fixed tests + +2005-08-18 Rolland Santimano + + * ext/standard/string.c: + - Removed 'proto' from description of internal funcns: ucfirst()/ucwords() + +2005-08-18 Ilia Alshanetsky + + * (PHP_4_4) + NEWS + NEWS + sapi/apache2handler/sapi_apache2.c + sapi/apache2handler/sapi_apache2.c + sapi/apache2handler/sapi_apache2.c: + MFH: Fixed bug #33987 (php script as ErrorDocument causes crash in Apache + 2). + + * sapi/apache2handler/sapi_apache2.c: + Fixed bug #33987 (php script as ErrorDocument causes crash in Apache 2). + 2005-08-17 Greg Beaver * (PHP_5_1) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 26a9e9be59..bf085af4dd 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,67 @@ +2005-08-18 Andrei Zmievski + + * zend_API.c + zend_API.h + zend_operators.h + zend_unicode.h: + - Implement zend_codepoint_to_uchar(). + - Rename and fix zend_get_unified_string_type() so that it does not + allow mixing of binary and Unicode types. + +2005-08-18 Dmitry Stogov + + * zend_API.c + zend_API.h + zend_exceptions.c: + Suppoer for unicode exception messages + +2005-08-18 Ilia Alshanetsky + + * (PHP_5_0) + zend_alloc.c: + MFH: Fixed bug #34156 (memory usage remains elevated after memory limit is + reached) + + * (PHP_5_1) + zend_alloc.c: + MFH: Fixed bug #34156 (memory usage remains elevated after memory limit is + reached); + +2005-08-18 Dmitry Stogov + + * zend_API.h: + Unicode support for extract() + +2005-08-18 Antony Dovgal + + * zend_builtin_functions.c: + fix memleak + +2005-08-18 Ilia Alshanetsky + + * zend_alloc.c: + Fixed bug #34156 (memory usage remains elevated after memory limit is + reached) + +2005-08-18 Jani Taskinen + + * zend_vm_def.h + zend_vm_execute.h + zend_vm_opcodes.h: + - Removed EOL from error message + +2005-08-18 Dmitry Stogov + + * zend_exceptions.c: + Unicode support + + * zend.h: + -** empty log message *** + + * zend_API.c: + We don't need EMPY_STRING here. This function is execuited in non-unicode + context only. + 2005-08-17 Marcus Boerger * zend_operators.c -- 2.40.0