From b0bcdbd2a68e313f4f178cc41e7984a539c5bf27 Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 29 Dec 2005 12:05:16 +0000 Subject: * eval.c (rb_mod_define_method): should save safe_level in the proc object. [ruby-dev:28146] * test/drb/drbtest.rb (DRbService::self.ext_service): increase timeout limit. a patch from Kazuhiro NISHIYAMA . [ruby-dev:28132] * eval.c (ev_const_get): fixed a bug in constant reference during instance_eval. [yarv-dev:707] * eval.c (ev_const_defined): ditto. * lib/yaml.rb (YAML::add_domain_type): typo fixed. a patch from Joel VanderWerf . [ruby-talk:165285] [ruby-core:6995] * ext/digest/sha2/sha2.c (ULL): support AIX C. a patch from Kailden . [ruby-core:06984] * ext/syck/rubyext.c (rb_syck_compile): avoid potential memory leak. * ext/syck/rubyext.c (syck_set_ivars): avoid potential memory leak by explicit symbol allocation. * lib/delegate.rb (Delegator::method_missing): should delegate block as well. * lib/cgi.rb (CGI::QueryExtension::MorphingBody): fix criteria to use Tempfile. A fix from Zev Blut . [ruby-core:06076] * string.c: remove global functions work on $_. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9757 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index fc9fc3ce7..e10e8438b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,11 @@ Thu Dec 29 17:02:07 2005 Tanaka Akira * test/ruby/envutil.rb (EnvUtil.rubybin): search "ruby" instead of "miniruby". [ruby-dev:28140] +Thu Dec 29 14:35:10 2005 Yukihiro Matsumoto + + * eval.c (rb_mod_define_method): should save safe_level in the + proc object. [ruby-dev:28146] + Thu Dec 29 11:22:34 2005 Hirokazu Yamamoto * lib/generator.rb: reimplemented Generator class with Thread instead of @@ -23,6 +28,12 @@ Tue Dec 27 23:59:53 2005 Nobuyoshi Nakada * lib/optparse.rb (CompletingHash#match): fix for 1.9. +Tue Dec 27 16:59:52 2005 Yukihiro Matsumoto + + * test/drb/drbtest.rb (DRbService::self.ext_service): increase + timeout limit. a patch from Kazuhiro NISHIYAMA + . [ruby-dev:28132] + Tue Dec 27 14:17:55 2005 Tanaka Akira * configure.in: define IA64 for portability. (HP aC++/ANSI C doesn't @@ -74,6 +85,22 @@ Tue Dec 27 08:22:15 2005 GOTOU Yuuzou * ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLSocket#post_connection_chech): treat wildcard character in commonName. [ruby-dev:28121] +Mon Dec 26 08:50:36 2005 Yukihiro Matsumoto + + * eval.c (ev_const_get): fixed a bug in constant reference during + instance_eval. [yarv-dev:707] + + * eval.c (ev_const_defined): ditto. + + * lib/yaml.rb (YAML::add_domain_type): typo fixed. a patch from + Joel VanderWerf . + [ruby-talk:165285] [ruby-core:6995] + +Fri Dec 23 10:30:23 2005 Yukihiro Matsumoto + + * ext/digest/sha2/sha2.c (ULL): support AIX C. a patch from + Kailden . [ruby-core:06984] + Wed Dec 21 16:47:35 2005 Hirokazu Yamamoto * file.c (w32_io_info): should return handle because FileIndex is @@ -179,6 +206,14 @@ Sat Dec 17 21:50:41 2005 Hirokazu Yamamoto * ext/syck/rubyext.c (syck_mark_parser): should mark anchor nodes because they hold ruby objects. (ie: rb_syck_bad_anchor_handler) +Sat Dec 17 11:00:17 2005 Yukihiro Matsumoto + + * ext/syck/rubyext.c (rb_syck_compile): avoid potential memory + leak. + + * ext/syck/rubyext.c (syck_set_ivars): avoid potential memory + leak by explicit symbol allocation. + Sat Dec 17 03:57:01 2005 Tanaka Akira * bignum.c (rb_big_rshift): fix a GC problem on @@ -206,6 +241,19 @@ Fri Dec 16 11:44:43 2005 Hirokazu Yamamoto ... these fixes won't fix [ruby-dev:27839]. more work is needed. +Fri Dec 16 04:38:55 2005 Yukihiro Matsumoto + + * lib/delegate.rb (Delegator::method_missing): should delegate + block as well. + +Thu Dec 15 19:57:12 2005 Yukihiro Matsumoto + + * lib/cgi.rb (CGI::QueryExtension::MorphingBody): fix criteria to + use Tempfile. A fix from Zev Blut . + [ruby-core:06076] + + * string.c: remove global functions work on $_. + Thu Dec 15 12:35:14 2005 Yukihiro Matsumoto * lib/tmpdir.rb: merged RDoc patch from Eric Hodel