Created
July 2, 2010 23:13
-
-
Save phiggins/462058 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0a1,327 | |
> Fri Jul 2 19:07:09 2010 Yuki Sonoda (Yugui) <[email protected]> | |
> | |
> * io.c (argf_inplace_mode_set): prohibits an assignment | |
> of a tainted value. Patch by unak. | |
> | |
> * util.c, file.c: prevents a buffer over-run on windows. | |
> Patch by unak. | |
> | |
> Wed May 26 13:27:18 2010 Yuki Sonoda (Yugui) <[email protected]> | |
> | |
> * random.c: refactoring. | |
> | |
> * random.c (rand_srand): a new function that wraps | |
> rand_init and (re)initialization of the random seed as | |
> a VALUE. | |
> | |
> * random.c (genrand_int32, genrand_real, rb_f_rand, | |
> rb_f_srand): using rand_srand. | |
> | |
> Mon Mar 15 11:49:48 2010 NARUSE, Yui <[email protected]> | |
> | |
> * random.c (rb_reset_random_seed): set seed in this. | |
> [ruby-core:28655] | |
> | |
> Mon Jun 29 20:29:11 2009 Tadayoshi Funaba <[email protected]> | |
> | |
> * rational.c (float_to_r): always returns rational. | |
> | |
> Sun Jul 19 20:41:24 2009 Tadayoshi Funaba <[email protected]> | |
> | |
> * complex.c (make_patterns): do not use \d. | |
> | |
> * rational.c (make_patterns): ditto. | |
> | |
> Fri Apr 30 03:38:14 2010 NAKAMURA Usaku <[email protected]> | |
> | |
> * numeric.c (fix_mul): the width of fixnum is same as long's on all | |
> platforms. | |
> | |
> Wed Aug 26 13:48:33 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * lib/tempfile.rb (Tempfile#unlink): reverted r23494, since the | |
> usage in RubyInline is considered wrong. | |
> | |
> Tue Feb 9 23:48:25 2010 Yusuke Endoh <[email protected]> | |
> | |
> * ext/bigdecimal/bigdecimal.c (BigDecimal_divide): fix precision too. | |
> | |
> Tue Feb 9 23:26:07 2010 Yusuke Endoh <[email protected]> | |
> | |
> * ext/bigdecimal/bigdecimal.c (BigDecimal_DoDivmod): fix precision. | |
> [ruby-core:17472][ruby-dev:35372][ruby-dev:40105][ruby-dev:40358] | |
> | |
> Thu Dec 10 01:12:55 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * parse.y (dyna_pop_gen): pop dvars. [ruby-dev:39861] | |
> | |
> Sat Dec 5 13:19:29 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * configure.in: default ac_cv_prog_CC to CC. | |
> | |
> Mon Feb 1 17:11:12 2010 Yuki Sonoda (Yugui) <[email protected]> | |
> | |
> * string (rb_string_value): warning for implicit conversion | |
> from Symbol to String. This behavior was introduced in r22606, | |
> merged in r22738 to ruby_1_9_1. It was an unexpected language | |
> feature change. It will be removed from Ruby in the 1.9.2. | |
> c.f. [ruby-dev:40274]. | |
> | |
> Thu Feb 26 13:23:20 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * iseq.c (cdhash_each): resurrects internal literals. | |
> | |
> Wed Feb 18 14:33:35 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * array.c (rb_ary_resurrect), string.c (rb_str_resurrect): new | |
> functions based on [ruby-dev:37983] | |
> | |
> * insns.def (putstring, duparray): use rb_{ary,str}_resurrect(). | |
> | |
> * iseq.c (iseq_data_to_ary): needs to result TS_VALUE. | |
> | |
> Wed Dec 9 09:50:35 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * string.c (rb_str_justify): fixed the case a fill size is a | |
> multiple of the length of the padding. [ruby-dev:39856] | |
> | |
> Sat Oct 31 17:19:28 2009 NAKAMURA, Hiroshi <[email protected]> | |
> | |
> * lib/net/http.rb (Net::HTTPResponse#each_response_header): | |
> cosmetic: '?\ ' -> '?\s' | |
> | |
> Fri Oct 30 22:09:47 2009 NAKAMURA, Hiroshi <[email protected]> | |
> | |
> * lib/net/http.rb (Net::HTTPResponse#each_response_header): | |
> accept multiline message header of HTTP response. see #1796. | |
> cf. RFC 2616 '4.2 Message Header'. | |
> | |
> * test/net/http/test_httpresponse.rb: added. | |
> | |
> Thu Oct 29 04:41:44 2009 NARUSE, Yui <[email protected]> | |
> | |
> * ruby.c (process_options): call rb_filesystem_encoding(). | |
> | |
> Wed Oct 28 16:32:49 2009 NARUSE, Yui <[email protected]> | |
> | |
> * encoding.c (get_filesystem_encoding): removed. | |
> | |
> * encoding.c (rb_locale_encindex): added. | |
> | |
> * encoding.c (rb_filesystem_encindex): added. | |
> | |
> * encoding.c (rb_filesystem_encindex): add an alias 'filesystem'. | |
> [ruby-dev:39574] | |
> | |
> * encoding.c (enc_find): add rdoc about special aliases. | |
> | |
> * gem_prelude.rb (Gem.set_home): use Encoding.find('filesystem'). | |
> | |
> * gem_prelude.rb (Gem.set_paths): ditto. | |
> | |
> Wed Oct 28 15:02:31 2009 NARUSE, Yui <[email protected]> | |
> | |
> * gem_prelude.rb (Gem.set_home): | |
> force_encoding(Encoding.filesystem_encoding) | |
> [ruby-core:25959] | |
> | |
> * gem_prelude.rb (Gem.set_paths): ditto. | |
> | |
> Wed Oct 28 14:24:45 2009 NARUSE, Yui <[email protected]> | |
> | |
> * encoding.c (get_filesystem_encoding): | |
> add Encoding.filesystem_encoding [ruby-dev:39546] | |
> also see [ruby-core:25959] | |
> | |
> Tue Oct 27 15:44:48 2009 Shugo Maeda <[email protected]> | |
> | |
> * lib/net/ftp.rb (getbinaryfile, list): call to_s to convert | |
> a Pathname instance into a string. [ruby-core:26237] | |
> | |
> Tue Oct 27 07:53:25 2009 Yukihiro Matsumoto <[email protected]> | |
> | |
> * gc.c (garbage_collect_with_gvl): do not garbage_collect when | |
> dont_gc flag turned on. [ruby-core:26327] | |
> | |
> Tue Oct 27 05:56:39 2009 NARUSE, Yui <[email protected]> | |
> | |
> * vm.c (invoke_block_from_c): return Qnil when its iseq is | |
> SPECIAL CONST. [ruby-core:26335] | |
> | |
> Mon Oct 26 12:06:27 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * io.c (io_fwrite): adjust stdio file position after direct write on | |
> BSDish platforms. [ruby-core:26300] | |
> | |
> Sun Oct 25 13:33:58 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * io.c (io_cntl): F_DUPFD is platform dependent. | |
> | |
> Sat Oct 24 00:36:47 2009 Tanaka Akira <[email protected]> | |
> | |
> * io.c (io_cntl): update max file descriptor by the result of | |
> fcntl(F_DUPFD). | |
> | |
> Fri Oct 23 09:12:59 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * lib/pathname.rb (Pathname::SAME_PATHS): FNM_SYSCASE is always | |
> non-nil. | |
> | |
> Thu Oct 22 20:20:27 2009 Tanaka Akira <[email protected]> | |
> | |
> * test/ruby/envutil.rb (assert_in_out_err): test_stdout and | |
> test_stderr should be an array. | |
> | |
> * test/ruby/test_rubyoptions.rb (test_notfound): test_stdin of | |
> assert_in_out_err should be a string. | |
> | |
> Tue Oct 20 16:41:18 2009 NAKAMURA Usaku <[email protected]> | |
> | |
> * include/ruby/win32.h (finite, scalb): inline'ed non-standard | |
> identifier macros. [ruby-core:2234] | |
> | |
> Tue Oct 20 15:38:02 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * parse.y (ripper_intern): enable literal optimization. | |
> | |
> * parse.y (method_call): dispatch symbols. a patch from Andy Keep in | |
> [ruby-core:26169]. [ruby-core:26165] | |
> | |
> * parse.y (mlhs_basic): fixed handling splat in middle of mlhs. a | |
> patch from Andy Keep in [ruby-core:26163] | |
> | |
> * parse.y (parser_here_document): dispatch delayed heredoc | |
> contents. based on a patch from Andy Keep in [ruby-core:24855]. | |
> | |
> Sat Jan 30 18:09:36 2010 Yuki Sonoda (Yugui) <[email protected]> | |
> | |
> * vm_method.c (rb_alias): treats an alias as if it is a newly defined | |
> method so that oklass in a method cache refers the class on which the | |
> aliasing occured. | |
> [ruby-core:26074] (#2202). | |
> | |
> Sat Jan 30 17:58:28 2010 Yuki Sonoda (Yugui) <[email protected]> | |
> | |
> * .gdbinit: follows r24470. | |
> | |
> Mon Oct 19 05:49:53 2009 Marc-Andre Lafortune <[email protected]> | |
> | |
> * lib/rexml/element.rb (text=): false should be converted to string. | |
> A patch by Teruo Oshida [ruby-dev:38351] | |
> | |
> Sun Oct 18 09:49:14 2009 Yuki Sonoda (Yugui) <[email protected]> | |
> | |
> * test/test_prime.rb | |
> (TestPrime#test_eratosthenes_works_fine_after_timeout): | |
> test for [ruby-dev:39465]. | |
> | |
> * lib/prime.rb (Prime::EratosthenesSieve): | |
> fixed [ruby-dev:39465]. | |
> suppressed memory reallocation. | |
> constantified some magic numbers. | |
> | |
> Fri Oct 17 00:05:53 2009 wanabe <[email protected]> | |
> | |
> * st.c (unpack_entries): save table->bins and never change the table | |
> during unpacking. Because st_insert() may cause GC and refer the | |
> table, i.e. st_foreach(). [Bug #2196] | |
> | |
> Fri Oct 16 18:42:18 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * bootstraptest/test_gc.rb: added tests based on [ruby-dev:39484] | |
> from wanabe <s.wanabe AT gmail.com>. | |
> | |
> Thu Oct 15 14:20:58 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * ext/iconv/iconv.c (iconv_create): cannot retry with given block. | |
> [ruby-dev:39487] | |
> | |
> Thu Oct 15 09:25:07 2009 NAKAMURA Usaku <[email protected]> | |
> | |
> * ext/socket/init.c (rsock_init_sock): mswin doesn't have S_IFSOCK | |
> flag in st_mode of struct stat. so, use rb_w32_issocket() function | |
> instead of S_ISSOCK macro. | |
> | |
> Thu Oct 15 00:26:07 2009 Tanaka Akira <[email protected]> | |
> | |
> * ext/socket/init.c (rsock_init_sock): validate file descriptor. | |
> | |
> Tue Oct 13 18:54:25 2009 Hidetoshi NAGAI <[email protected]> | |
> | |
> * ext/tk/variable.rb: bug fix. additional trace definition changes the | |
> option of first trace definition. | |
> | |
> Tue Oct 13 18:20:57 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * parse.y (parser_magic_comment): fixed normalization. | |
> | |
> Mon Oct 12 23:27:57 2009 Shugo Maeda <[email protected]> | |
> | |
> * lib/net/ftp.rb (login): use "anonymous@" as a default password. | |
> [ruby-dev:39451] | |
> | |
> Sun Oct 11 15:54:52 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * ext/gdbm/gdbm.c (fgdbm_select): fixed rdoc. a patch from Justin | |
> Collins in [ruby-core:26050]. | |
> | |
> Sun Oct 11 10:27:09 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * lib/irb/context.rb (IRB::Context#irb_name): removed duplicated | |
> attr_reader. [ruby-core:26047] | |
> | |
> * lib/irb/ruby-lex.rb (RubyLex#lex_int2): removed duplicated | |
> character class range. | |
> | |
> Sun Oct 11 09:04:08 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * include/ruby/ruby.h (RB_GC_GUARD_PTR): workaround for gcc | |
> optimization. | |
> | |
> * include/ruby/ruby.h (ruby_exec_node): declared. | |
> | |
> Sat Oct 10 23:57:44 2009 Nobuyoshi Nakada <[email protected]> | |
> | |
> * file.c (path_check_0): prevent from GC. | |
> | |
> Fri Oct 9 02:12:02 2009 Marc-Andre Lafortune <[email protected]> | |
> | |
> * ext/curses/curses.c: Many functions of module Curses could cause a | |
> crash if the ncurses library was not properly initialized. | |
> Fix pointed out by Alexander Beisig [ruby-core:22592] | |
> Functions fixed: attroff, attron, attrset, bkgd, bkgdset, | |
> can_change_color, close_screen, closed, color_content, curs_set, | |
> def_prog_mode, delch, deleteln, getmouse, getstr, has_colors, | |
> init_color, init_pair, insertln, keyname, mouseinterval, mousemask, | |
> pair_content, pair_number, reset_prog_mode, resizeterm, scrl, | |
> setscrreg, standend, standout, start_color, timeout, ungetmouse, | |
> use_default_colors | |
> | |
> Fri Oct 9 01:07:34 2009 Yusuke Endoh <[email protected]> | |
> | |
> * compile.c (ADD_TRACE): fire coverage event in ensure clause. | |
> [ruby-dev:39303] | |
> | |
> * iseq.h, iseq.c: ditto. | |
> | |
> Fri Oct 9 00:33:29 2009 Marc-Andre Lafortune <[email protected]> | |
> | |
> * lib/net/telnet.rb (cmd): Pass FailEOF options: patch by Brian | |
> Candler [ruby-core:22723] | |
> | |
> Mon Oct 5 17:19:33 2009 Yukihiro Matsumoto <[email protected]> | |
> | |
> * lib/delegate.rb (Delegator::public_api): take snapshot of | |
> public method at the beginning time. | |
> | |
> * lib/delegate.rb (SimpleDelegator#initialize): use | |
> Delegator.public_api since public_method might be added after | |
> initialization. [ruby-dev:39383] | |
> | |
> * lib/delegate.rb (DelegateClass): ditto. | |
> | |
> Tue Oct 6 18:56:09 2009 Yukihiro Matsumoto <[email protected]> | |
> | |
> * struct.c (rb_struct_select): Struct#select should return | |
> enumerator when no block given. | |
> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment