changelog               Thu Jun 18 01:33:09 2009 UTC

  Modified files:              
    /php-src    ChangeLog 
  Log:
  ChangeLog update
  
http://cvs.php.net/viewvc.cgi/php-src/ChangeLog?r1=1.3437&r2=1.3438&diff_format=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.3437 php-src/ChangeLog:1.3438
--- php-src/ChangeLog:1.3437    Wed Jun 17 01:33:06 2009
+++ php-src/ChangeLog   Thu Jun 18 01:33:07 2009
@@ -1,3 +1,278 @@
+2009-06-17  Jani Taskinen  <jani.taski...@sci.fi>
+
+    * (PHP_5_3)
+      NEWS:
+      Pierre, this can not be so hard
+
+    * (PHP_5_3)
+      NEWS:
+      unfuck the file, fucked up by Pierre as usual
+
+2009-06-17  Felipe Pena  <felipe...@gmail.com>
+
+    * (PHP_5_3)
+      NEWS:
+      - Reorder
+
+2009-06-17  Pierre-Alain Joye  <pierre....@gmail.com>
+
+    * (PHP_5_3)
+      NEWS:
+      - fix NEWS (thx Felipe!)
+
+    * (PHP_5_3)
+      NEWS:
+      - update with latest bits
+
+    * sapi/cgi/cgi_main.c:
+      - MF53: #47318, UMR when trying to activate user config
+
+    * (PHP_5_3)
+      sapi/cgi/cgi_main.c:
+      - kill unused var
+
+    * (PHP_5_3)
+      sapi/cgi/cgi_main.c:
+      - #47318, UMR when trying to activate user config
+
+2009-06-17  andy wharmby  <whar...@uk.ibm.com>
+
+    * (PHP_5_2)
+      tests/lang/compare_objects_basic1.phpt
+      tests/lang/compare_objects_basic1.phpt
+      tests/lang/compare_objects_basic2.phpt
+      tests/lang/compare_objects_basic2.phpt:
+      New test for standard object compare handler. Tested on Windows, Linux 
and
+      Linux 64
+
+    * tests/lang/compare_objects_basic1.phpt
+      tests/lang/compare_objects_basic1.phpt
+      tests/lang/compare_objects_basic1.phpt
+      tests/lang/compare_objects_basic2.phpt
+      tests/lang/compare_objects_basic2.phpt
+      tests/lang/compare_objects_basic2.phpt:
+        1.1.4;
+      New test for standard object compare handler. Tested on Windows, Linux 
and
+      Linux 64
+
+    * (PHP_5_2)
+      tests/lang/foreachLoopIterator.001.phpt
+      tests/lang/foreachLoopIterator.001.phpt
+      tests/lang/foreachLoopIterator.002.phpt
+      tests/lang/foreachLoopIterator.002.phpt
+      tests/lang/foreachLoopIteratorAggregate.001.phpt
+      tests/lang/foreachLoopIteratorAggregate.001.phpt
+      tests/lang/foreachLoopIteratorAggregate.002.phpt
+      tests/lang/foreachLoopIteratorAggregate.002.phpt
+      tests/lang/foreachLoopIteratorAggregate.003.phpt
+      tests/lang/foreachLoopIteratorAggregate.003.phpt
+      tests/lang/foreachLoopIteratorAggregate.004.phpt
+      tests/lang/foreachLoopIteratorAggregate.004.phpt:
+      New foreach tests. Tested on Windows, Linux and Linux 64 bit.
+
+    * tests/lang/foreachLoopIterator.001.phpt
+      tests/lang/foreachLoopIterator.001.phpt
+      tests/lang/foreachLoopIterator.001.phpt
+      tests/lang/foreachLoopIterator.002.phpt
+      tests/lang/foreachLoopIterator.002.phpt
+      tests/lang/foreachLoopIterator.002.phpt
+      tests/lang/foreachLoopIteratorAggregate.001.phpt
+      tests/lang/foreachLoopIteratorAggregate.001.phpt
+      tests/lang/foreachLoopIteratorAggregate.001.phpt
+      tests/lang/foreachLoopIteratorAggregate.002.phpt
+      tests/lang/foreachLoopIteratorAggregate.002.phpt
+      tests/lang/foreachLoopIteratorAggregate.002.phpt
+      tests/lang/foreachLoopIteratorAggregate.003.phpt
+      tests/lang/foreachLoopIteratorAggregate.003.phpt
+      tests/lang/foreachLoopIteratorAggregate.003.phpt
+      tests/lang/foreachLoopIteratorAggregate.004.phpt
+      tests/lang/foreachLoopIteratorAggregate.004.phpt
+      tests/lang/foreachLoopIteratorAggregate.004.phpt:
+        1.1.4;
+      New foreach tests. Tested on Windows, Linux and Linux 64 bit.
+
+2009-06-17  Hannes Magnusson  <hannes.magnus...@gmail.com>
+
+    * (PHP_5_3)
+      ext/date/php_date.c:
+      MFB5.2: "Make this happy on gcc2"
+
+2009-06-17  Felipe Pena  <felipe...@gmail.com>
+
+    * (PHP_5_3)
+      NEWS:
+      BFN #48578
+
+2009-06-17  Andrey Hristov  <p...@hristov.com>
+
+    * (PHP_5_3)
+      ext/mysqlnd/mysqlnd.h
+      ext/mysqlnd/mysqlnd_block_alloc.c:
+      MFH:
+      Fix two problems:
+      - The value of mysqli_get_client_info() has been changed recently and did
+      not include "mysqlnd" anymore thus the test suite was thinking the build
+      is always libmysql. This did not kept the suite from running pconn tests
+      - Going back to the libc allocator because the memory arena could be on a
+        persistent connections. If the build is not debug there will be no 
error
+        but the memory will be freed and in the second use of this pconn freed
+        memory will be used - not good! For now the arena doesn't take an
+      argument
+        whether it should allocate persistently or not, thus persistent is safe
+        for now.
+      
+      Johannes gave his +1 to commit this.
+
+    * ext/mysqlnd/mysqlnd.h
+      ext/mysqlnd/mysqlnd_block_alloc.c:
+      Fix two problems:
+      - The value of mysqli_get_client_info() has been changed recently and did
+      not include "mysqlnd" anymore thus the test suite was thinking the build
+      is always libmysql. This did not kept the suite from running pconn tests
+      - Going back to the libc allocator because the memory arena could be on a
+        persistent connections. If the build is not debug there will be no 
error
+        but the memory will be freed and in the second use of this pconn freed
+        memory will be used - not good! For now the arena doesn't take an
+      argument
+        whether it should allocate persistently or not, thus persistent is safe
+        for now.
+      
+      Johannes gave his +1 to commit this.
+
+2009-06-17  Felipe Pena  <felipe...@gmail.com>
+
+    * (PHP_5_3)
+      ext/fileinfo/libmagic/cdf.c:
+      - MFH: Fixed bug #48578 (Can't build 5.3 on FBSD 4.11) (Rasmus)
+
+    * ext/fileinfo/libmagic/cdf.c:
+      - Fixed bug #48578 (Can't build 5.3 on FBSD 4.11) (Rasmus)
+
+2009-06-17  Scott MacVicar  <sc...@macvicar.net>
+
+    * (PHP_5_3)
+      ext/spl/spl_dllist.c
+      ext/spl/tests/dllist_010.phpt
+      ext/spl/tests/dllist_011.phpt
+      ext/spl/tests/dllist_memleak.phpt:
+      MFH Add SplDoublyLinkedList::prev() and fix a memory leak when the 
iterator
+      pointer isn't at the end
+
+    * ext/spl/tests/dllist_010.phpt
+      ext/spl/tests/dllist_010.phpt
+      ext/spl/tests/dllist_011.phpt
+      ext/spl/tests/dllist_011.phpt:
+      
+      Update test to test a few more cases and another for calling prev() on a
+      blank DLL.
+
+    * ext/spl/spl_dllist.c
+      ext/spl/tests/dllist_010.phpt
+      ext/spl/tests/dllist_memleak.phpt
+      ext/spl/tests/dllist_memleak.phpt:
+      Add SplDoublyLinkedList::prev(), no point in having a DLL that only goes
+      one way
+
+2009-06-17  Ilia Alshanetsky  <i...@prohost.org>
+
+    * (PHP_5_2)
+      NEWS
+      configure.in
+      main/php_version.h:
+      
+      Back to dev
+
+    * (PHP_5_2)
+      NEWS
+      configure.in
+      main/php_version.h:
+      
+      5.2.10
+
+2009-06-17  Robin Fernandes  <ro...@soal.org>
+
+    * (PHP_5_3)
+      tests/classes/interface_optional_arg_003.inc
+      tests/classes/interface_optional_arg_003.phpt
+      tests/classes/iterators_008.phpt
+      tests/classes/static_properties_undeclared_assign.phpt
+      tests/classes/static_properties_undeclared_assignInc.phpt
+      tests/classes/static_properties_undeclared_assignRef.phpt
+      tests/classes/static_properties_undeclared_inc.phpt
+      tests/classes/static_properties_undeclared_isset.phpt
+      tests/classes/static_properties_undeclared_read.phpt:
+      Additional class related tests.
+
+    * tests/classes/interface_optional_arg_003.inc
+      tests/classes/interface_optional_arg_003.inc
+      tests/classes/interface_optional_arg_003.inc
+      tests/classes/interface_optional_arg_003.inc
+      tests/classes/interface_optional_arg_003.phpt
+      tests/classes/interface_optional_arg_003.phpt
+      tests/classes/interface_optional_arg_003.phpt
+      tests/classes/interface_optional_arg_003.phpt
+      tests/classes/iterators_008.phpt
+      tests/classes/iterators_008.phpt
+      tests/classes/static_properties_undeclared_assign.phpt
+      tests/classes/static_properties_undeclared_assign.phpt
+      tests/classes/static_properties_undeclared_assignInc.phpt
+      tests/classes/static_properties_undeclared_assignInc.phpt
+      tests/classes/static_properties_undeclared_assignInc.phpt
+      tests/classes/static_properties_undeclared_assignInc.phpt
+      tests/classes/static_properties_undeclared_assignRef.phpt
+      tests/classes/static_properties_undeclared_assignRef.phpt
+      tests/classes/static_properties_undeclared_assignRef.phpt
+      tests/classes/static_properties_undeclared_assignRef.phpt
+      tests/classes/static_properties_undeclared_inc.phpt
+      tests/classes/static_properties_undeclared_inc.phpt
+      tests/classes/static_properties_undeclared_isset.phpt
+      tests/classes/static_properties_undeclared_isset.phpt
+      tests/classes/static_properties_undeclared_read.phpt
+      tests/classes/static_properties_undeclared_read.phpt:
+      
+      Additional class related tests.
+
+    * tests/classes/iterators_008.phpt
+      tests/classes/iterators_008.phpt
+      tests/classes/static_properties_undeclared_assign.phpt
+      tests/classes/static_properties_undeclared_assign.phpt
+      tests/classes/static_properties_undeclared_inc.phpt
+      tests/classes/static_properties_undeclared_inc.phpt
+      tests/classes/static_properties_undeclared_isset.phpt
+      tests/classes/static_properties_undeclared_isset.phpt
+      tests/classes/static_properties_undeclared_read.phpt
+      tests/classes/static_properties_undeclared_read.phpt:
+      
+      file iterators_008.phpt was initially added on branch PHP_5_2.
+
+2009-06-17  Hannes Magnusson  <hannes.magnus...@gmail.com>
+
+    * ext/standard/tests/misc/time_nanosleep_error3.phpt:
+      fix skipf
+
+    * (PHP_5_2)
+      ext/standard/tests/misc/time_nanosleep_error3.phpt
+      ext/standard/tests/misc/time_nanosleep_error3.phpt
+      ext/standard/tests/misc/time_nanosleep_error3.phpt:
+      fix skipif
+
+2009-06-17  Pierre-Alain Joye  <pierre....@gmail.com>
+
+    * (PHP_5_3)
+      ext/standard/tests/file/bug41874.phpt:
+      - fix test
+
+    * (PHP_5_3)
+      ext/standard/tests/file/bug41874.phpt:
+      - missing --SKIPIF-- header
+
+2009-06-17  Rasmus Lerdorf  <ras...@lerdorf.com>
+
+    * ZendEngine2/zend.h
+      ZendEngine2/zend.h
+      ZendEngine2/zend.h:
+      Need the gcc version check here too
+
 2009-06-16  Pierre-Alain Joye  <pierre....@gmail.com>
 
     * (PHP_5_3)
@@ -46819,7 +47094,7 @@
 
     * sapi/litespeed/lsapi_main.c
       sapi/litespeed/lsapilib.c:
-      - Added missing $Id: ChangeLog,v 1.3437 2009/06/17 01:33:06 changelog 
Exp $ tags and nuked c++ comments
+      - Added missing $Id: ChangeLog,v 1.3438 2009/06/18 01:33:07 changelog 
Exp $ tags and nuked c++ comments
 
     * (PHP_5_3)
       ext/intl/locale/locale.c

Reply via email to