diff --git a/ChangeLog b/ChangeLog index 6e35d7b60c..c1853c37c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,107 @@ Thu Jul 1 21:37:11 2010 Nobuyoshi Nakada * test/ruby/envutil.rb (EnvUtil#invoke_ruby): integrated with runexec. +Thu Jul 1 16:19:53 2010 NARUSE, Yui + + * thread_pthread.c (thread_start_func_1): don't call + native_thread_init_stack(th) on cygwin to avoid the segv + introduced by r27789. Cygwin's signal implementation is half + baked so USE_SIGNALSTACK is not defined and it needs another + treatment. + +Thu Jul 1 13:00:54 2010 Nobuyoshi Nakada + + * common.mk (test-knownbug): ignore known bugs. + +Thu Jul 1 08:40:26 2010 Nobuyoshi Nakada + + * marshal.c (w_object): suppress empty instance variable entry on + compatible dump objects. + +Wed Jun 30 07:29:11 2010 Nobuyoshi Nakada + + * test/ruby/test_rubyoptions.rb (test_script_from_stdin): by using + a pipe, get rid of not-well-defined behavior after the child + process terminated in pty. + +Wed Jun 30 02:30:26 2010 Yutaka Kanemoto + + * thread_pthread.c (get_stack): use pthread_getthrds_np() for AIX. + + * configure.in: ditto. + +Tue Jun 29 21:11:15 2010 Masaya Tarui + + * ext/stringio/stringio.c (strio_write): add RB_GC_GUARD. + +Tue Jun 29 19:39:59 2010 Masaki Suketa + + * test/win32ole/test_win32ole_method.rb (is_ruby64): check + ruby binary is mswin64 or mingw64. [ruby-dev:41756] + +Tue Jun 29 14:18:21 2010 NAKAMURA Usaku + + * file.c (rb_realpath_internal, realpath_rec): skip UNC share root + on DOSISH platforms. + http://pc12.2ch.net/test/read.cgi/tech/1272248179/600 + +Tue Jun 29 11:52:33 2010 Narihiro Nakamura + + * gc.c (unlink_heap_slot, slot_sweep): unlink heaps_slot of + heaps_slot linked list if heaps_slot is empty at slot_sweep. + fixed [ruby-dev:41543], [ruby-core:24894]. + +Tue Jun 29 01:22:08 2010 Aaron Patterson + + * ext/fiddle/fiddle.h: added FFI type detection to avoid bug in ffi + header files. Thanks Yugui! [ruby-core:30917] + +Mon Jun 28 22:14:22 2010 Yusuke Endoh + + * test/rdoc/test_rdoc_ri_driver.rb (TestRDocRIDriver#test_formatter): + fix a test accordingly to r28455. + +Mon Jun 28 21:56:14 2010 Yusuke Endoh + + * thread.c (rb_fd_resize, rb_fd_copy): avoid NULL dereference upon + failed realloc by using xrealloc instead of not realloc. a patch + from Jim Meyering in [ruby-core:30920] + [Bug #3489] + +Mon Jun 28 20:32:33 2010 Masaki Suketa + + * test/win32ole/test_win32ole_method.rb (test_offset_vtbl): check + that Ruby is 32bit or 64bit binary in order to get correct offset + value. [ruby-dev:41741] + +Mon Jun 28 05:32:51 2010 Yusuke Endoh + + * lib/rdoc/ri/driver.rb (RDoc::RI::Driver#formatter): should use bs + format when stdout is piped. [ruby-core:30734] + +Mon Jun 28 03:12:03 2010 Yusuke Endoh + + * bootstraptest/test_class.rb: add a test for [ruby-core:30843]. + +Mon Jun 28 02:43:35 2010 Yusuke Endoh + + * class.c (rb_mod_init_copy): when class is dup'ed, a metaclass of the + class should be attached to the dup'ed class, not the original + class. [ruby-core:30843] [Bug #3461] + +Sun Jun 27 23:31:17 2010 Nobuyoshi Nakada + + * include/ruby/io.h, io.c: reverted r21709. + + * ruby.c (load_file_internal): nothing to read if EOF reached + while reading shebang. [ruby-core:30910] + +Sun Jun 27 13:25:07 2010 Tanaka Akira + + * io.c (simple_sendfile): don't try to send data more than SSIZE_MAX + with single sendfile call.. + based on the patch by Eric Wong. [ruby-core:30908] + Sun Jun 27 10:41:38 2010 Nobuyoshi Nakada * lib/rubygems/require_paths_builder.rb (write_require_paths_file_if_needed):