From: Date: Wed, 29 Oct 2003 01:32:08 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_2_0_0RC1~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e05a4acc8f39b7bcd1b84909bf5360f0195d8b59;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index a0dca0fc03..12d7790423 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,80 @@ +2003-10-28 Sara Golemon + + * ext/standard/user_filters.c: + Allow userfilter instantiation to programmatically fail by returning false. + Equivalent of Cspace filter "failure" by returning NULL. + +2003-10-28 Andi Gutmans + + * ZendEngine2/zend_language_parser.y: + - Head up! I'm reverting the patch which allows for expressions in constant + - declerations. Allowing the access of other constants in this code is + - flawed. We are reverting back to PHP 4's static scalars. + - Don't worry if you get the following msg when compiling: + - "zend_language_parser.y contains 3 useless nonterminals and 22 useless + rules" + - I didn't nuke the code in case we have some brilliant ideas after beta 2 + +2003-10-28 Sara Golemon + + * main/streams/filter.c: + Stop looking once we've found a matching filter. + + * main/streams/filter.c: + Extend Filter matching to check wildcards at multiple levels. + Ex: foo.bar.baz.bomb + Searches: + foo.bar.baz.bomb itself, + foo.bar.baz.*, + foo.bar.*, and + foo.* + + Also changed tempvar "char wildcard[128];" to an estrdup() to + deal with potential filternames longer than 127 bytes. + +2003-10-28 George Schlossnagle + + * NEWS: + note pcntl_wait() + +2003-10-28 Marcus Boerger + + * ZendEngine2/zend_interfaces.c: + Give some freedon to c iterators but not in userspace. + +2003-10-28 George Schlossnagle + + * ext/pcntl/config.m4 + ext/pcntl/pcntl.c + ext/pcntl/php_pcntl.h: + Added pcntl_wait, a wraspper around wait()/wait3() + +2003-10-28 Shane Caraveo + + * ZendEngine2/zend_compile.c: + fix crash in do_implement_interface when compiling + pear/PHPUnit/Framework/TestCase.php line 63 + while only interface_gets_implemented is the issue in this instance, both + these vars were unitialized, causing potential other issues + +2003-10-28 Ilia Alshanetsky + + * ext/sqlite/libsqlite/src/btree_rb.c: + Fixed compiler warning. + +2003-10-28 Shane Caraveo + + * ext/dom/document.c: + fix win32 build + +2003-10-28 Ilia Alshanetsky + + * NEWS + ext/standard/basic_functions.c + ext/standard/php_uuencode.h + ext/standard/uuencode.c: + By popular demand renaming uu(encode/decode) to convert_uu(encode/decode). + 2003-10-27 Moriyoshi Koizumi * ext/standard/file.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 25ab890dba..64c00df0be 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,27 @@ +2003-10-28 Andi Gutmans + + * zend_language_parser.y: + - Head up! I'm reverting the patch which allows for expressions in constant + - declerations. Allowing the access of other constants in this code is + - flawed. We are reverting back to PHP 4's static scalars. + - Don't worry if you get the following msg when compiling: + - "zend_language_parser.y contains 3 useless nonterminals and 22 useless + rules" + - I didn't nuke the code in case we have some brilliant ideas after beta 2 + +2003-10-28 Marcus Boerger + + * zend_interfaces.c: + Give some freedon to c iterators but not in userspace. + +2003-10-28 Shane Caraveo + + * zend_compile.c: + fix crash in do_implement_interface when compiling + pear/PHPUnit/Framework/TestCase.php line 63 + while only interface_gets_implemented is the issue in this instance, both + these vars were unitialized, causing potential other issues + 2003-10-25 Marcus Boerger * zend_API.c