|
1 |
| -Fri Sep 26 12:52:36 2014 Nobuyoshi Nakada <nobu@ruby-lang.org> |
| 1 | +Mon Oct 27 20:20:14 2014 NAKAMURA Usaku <usa@ruby-lang.org> |
2 | 2 |
|
3 |
| - * ext/stringio/stringio.c (strio_write): ASCII-8BIT StringIO |
4 |
| - should be writable any encoding strings, without conversion. |
5 |
| - [ruby-core:65240] [Bug #10285] |
| 3 | + * lib/rexml/entity.rb: keep the entity size within the limitation. |
| 4 | + reported by Willis Vandevanter <[email protected]> and |
| 5 | + patched by nahi. |
6 | 6 |
|
7 |
| -Wed Sep 24 02:30:55 2014 Nobuyoshi Nakada < [email protected]> |
| 7 | +Sun Oct 26 03:31:46 2014 Nobuyoshi Nakada < [email protected]> |
8 | 8 |
|
9 |
| - * parse.y (parse_ident): just after a label, new expression should |
10 |
| - start, cannot be a modifier. [ruby-core:65211] [Bug #10279] |
| 9 | + * vm_method.c (rb_method_entry_make): warn redefinition only for |
| 10 | + already defined methods, but not for undefined methods. |
| 11 | + [ruby-dev:48691] [Bug #10421] |
| 12 | + |
| 13 | +Sun Oct 26 03:21:30 2014 Nobuyoshi Nakada < [email protected]> |
| 14 | + |
| 15 | + * class.c (unknown_keyword_error): delete expected keywords |
| 16 | + directly from raw table, so that the given block is not called. |
| 17 | + [ruby-core:65837] [Bug #10413] |
11 | 18 |
|
12 |
| -Fri Mar 7 12:06:19 2014 Martin Bosslet < [email protected]> |
| 19 | +Wed Oct 22 23:02:49 2014 CHIKANAGA Tomoyuki < [email protected]> |
| 20 | + |
| 21 | + * ext/openssl/lib/openssl/ssl.rb (DEFAULT_PARAMS): override |
| 22 | + options even if OpenSSL::SSL::OP_NO_SSLv3 is not defined. |
| 23 | + this is pointed out by Stephen Touset. [ruby-core:65711] [Bug #9424] |
| 24 | + |
| 25 | +Wed Oct 22 23:02:49 2014 Martin Bosslet < [email protected]> |
13 | 26 |
|
14 | 27 | * test/openssl/test_ssl.rb: Reuse TLS default options from
|
15 | 28 | OpenSSL::SSL::SSLContext::DEFAULT_PARAMS.
|
16 | 29 |
|
17 |
| -Thu Mar 6 10:33:31 2014 Martin Bosslet < [email protected]> |
| 30 | +Wed Oct 22 23:02:49 2014 Martin Bosslet < [email protected]> |
18 | 31 |
|
19 | 32 | * lib/openssl/ssl.rb: Explicitly whitelist the default
|
20 | 33 | SSL/TLS ciphers. Forbid SSLv2 and SSLv3, disable
|
21 | 34 | compression by default.
|
22 | 35 | Reported by Jeff Hodges.
|
23 | 36 | [ruby-core:59829] [Bug #9424]
|
24 | 37 |
|
| 38 | +Sun Oct 19 03:22:53 2014 Kazuki Tsujimoto < [email protected]> |
| 39 | + |
| 40 | + * vm_core.h, vm.c, proc.c: fix GC mark miss on bindings. |
| 41 | + [ruby-dev:48616] [Bug #10368] |
| 42 | + |
| 43 | + * test/ruby/test_eval.rb: add a test code. |
| 44 | + |
| 45 | +Sun Oct 19 03:13:38 2014 Nobuyoshi Nakada < [email protected]> |
| 46 | + |
| 47 | + * parse.y (parser_here_document): do not append already appended |
| 48 | + and disposed code fragment. [ruby-dev:48647] [Bug #10392] |
| 49 | + |
| 50 | +Thu Oct 16 22:10:11 2014 Nobuyoshi Nakada < [email protected]> |
| 51 | + |
| 52 | + * ext/stringio/stringio.c (strio_write): ASCII-8BIT StringIO |
| 53 | + should be writable any encoding strings, without conversion. |
| 54 | + [ruby-core:65240] [Bug #10285] |
| 55 | + |
| 56 | +Thu Oct 16 22:06:03 2014 Nobuyoshi Nakada < [email protected]> |
| 57 | + |
| 58 | + * vm_eval.c (eval_string_with_cref): fix super from eval with |
| 59 | + scope. set klass in the current control frame to the class of |
| 60 | + the receiver in the context to be evaluated, this class/module |
| 61 | + must match the actual receiver to call super. |
| 62 | + [ruby-core:65122] [Bug #10263] |
| 63 | + |
| 64 | +Thu Oct 16 00:30:30 2014 Tanaka Akira < [email protected]> |
| 65 | + |
| 66 | + * lib/find.rb (Find.find): Call to_path for arguments to obtain |
| 67 | + strings. |
| 68 | + [ruby-core:63713] [Bug #10035] Reported by Herwin. |
| 69 | + |
| 70 | +Thu Oct 16 00:20:12 2014 Eric Wong < [email protected]> |
| 71 | + |
| 72 | + * object.c (rb_class_real): do not dereference 0 VALUE |
| 73 | + |
| 74 | + * test/ruby/test_module.rb (test_inspect_segfault): |
| 75 | + Test case and bug report by Thomas Stratmann. |
| 76 | + [ruby-core:65214] [Bug #10282] |
| 77 | + |
| 78 | +Thu Oct 16 00:10:45 2014 Nobuyoshi Nakada < [email protected]> |
| 79 | + |
| 80 | + * signal.c (rb_f_kill): get rid of deadlock as unhandled and |
| 81 | + discarded signals do not make interrupt_cond signaled. |
| 82 | + based on the patch by Kazuki Tsujimoto at [ruby-dev:48606]. |
| 83 | + [Bug #9820] |
| 84 | + |
| 85 | +Thu Oct 16 00:10:45 2014 Nobuyoshi Nakada < [email protected]> |
| 86 | + |
| 87 | + * signal.c (rb_f_kill): should not ignore signal unless the |
| 88 | + default handler is registered. [ruby-dev:48592] [Bug #9820] |
| 89 | + |
| 90 | +Wed Oct 15 23:58:13 2014 CHIKANAGA Tomoyuki < [email protected]> |
| 91 | + |
| 92 | + merge r47598 partially. extracted commits are as follows. [Bug #9728] |
| 93 | + https://github.com/k-takata/Onigmo/commit/15ddec6d18e27fdc1988236764e766fd5892ecf5 |
| 94 | + |
| 95 | +Wed Oct 15 23:50:33 2014 SHIBATA Hiroshi < [email protected]> |
| 96 | + |
| 97 | + * lib/fileutils.rb: handle ENOENT error with symlink targeted to |
| 98 | + non-exists file. [ruby-dev:45933] [Bug #6716] |
| 99 | + |
| 100 | +Wed Oct 15 23:25:24 2014 NARUSE, Yui < [email protected]> |
| 101 | + |
| 102 | + * configure.in: NetBSD's ksh, used by configure, needs escapes. |
| 103 | + |
| 104 | +Wed Oct 15 23:13:43 2014 Eric Wong < [email protected]> |
| 105 | + |
| 106 | + * array.c (ary_recycle_hash): add RB_GC_GUARD |
| 107 | + (rb_ary_diff): remove volatile |
| 108 | + [Bug #10369] |
| 109 | + |
| 110 | +Wed Oct 15 23:10:07 2014 Nobuyoshi Nakada < [email protected]> |
| 111 | + |
| 112 | + * dir.c (dir_s_aref): fix rdoc. `Dir.glob` allows an array but |
| 113 | + `Dir[]` not. the former accepts an optional parameter `flags`, |
| 114 | + while the latter accepts arbitrary number of arguments but no |
| 115 | + `flags`. [ruby-core:65265] [Bug #10294] |
| 116 | + |
| 117 | +Wed Oct 15 23:08:02 2014 Rei Odaira < [email protected]> |
| 118 | + |
| 119 | + * configure.in: Fix typo. [Bug #9914] |
| 120 | + |
| 121 | +Wed Oct 15 22:46:52 2014 NAKAMURA Usaku < [email protected]> |
| 122 | + |
| 123 | + * error.c: update exception tree. [DOC] |
| 124 | + reported by @hemge via twitter. |
| 125 | + |
| 126 | +Wed Sep 24 02:30:55 2014 Nobuyoshi Nakada < [email protected]> |
| 127 | + |
| 128 | + * parse.y (parse_ident): just after a label, new expression should |
| 129 | + start, cannot be a modifier. [ruby-core:65211] [Bug #10279] |
| 130 | + |
| 131 | +Wed Sep 24 02:21:41 2014 NAKAMURA Usaku < [email protected]> |
| 132 | + |
| 133 | + * win32/Makefile.sub (VCSUP): nothing to do if this worktree is not |
| 134 | + under any VCS (it means that the worktree may be from the release |
| 135 | + package). |
| 136 | + |
| 137 | +Wed Sep 24 02:06:33 2014 Tanaka Akira < [email protected]> |
| 138 | + |
| 139 | + * test/ruby/test_time_tz.rb: Fix test error with tzdata-2014g. |
| 140 | + [ruby-core:65058] [Bug #10245] Reported by Vit Ondruch. |
| 141 | + |
| 142 | +Wed Sep 24 02:06:33 2014 SHIBATA Hiroshi < [email protected]> |
| 143 | + |
| 144 | + * test/minitest/test_minitest_unit.rb: removed obsoleted condition |
| 145 | + for Ruby 1.8. |
| 146 | + * test/ruby/test_time_tz.rb: ditto. |
| 147 | + |
| 148 | +Wed Sep 24 01:43:13 2014 CHIKANAGA Tomoyuki < [email protected]> |
| 149 | + |
| 150 | + * version.h (RUBY_VERSION): bump RUBY_VERSION to 2.1.4. |
| 151 | + |
25 | 152 | Fri Sep 19 00:58:34 2014 CHIKANAGA Tomoyuki < [email protected]>
|
26 | 153 |
|
27 | 154 | * version.h (RUBY_VERSION): bump RUBY_VERSION to 2.1.3.
|
|
0 commit comments