| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-07-07 | Enable indentation warning against `if` just after `else` | Nobuyoshi Nakada | |
| ```ruby if false puts 'false' else if true puts 'true' end # -:5: warning: mismatched indentations at 'end' with 'if' at 3 end ``` [Feature #15990] | |||
| 2019-07-05 | Fix segfault when using method reference operator without using result | Jeremy Evans | |
| Fixes [Bug #15985] | |||
| 2019-07-05 | Multiple codepoints are not allowed at single character literal | Nobuyoshi Nakada | |
| It has unintentionally passed since 2.5. | |||
| 2019-07-04 | Revert self-referencing finalizer warning [Feature #15974] | Nobuyoshi Nakada | |
| It has caused CI failures. * d0cd0866d82a58933e5dccd073c753c0c2ad4eb5 Disable GC during rb_objspace_reachable_object_p * 89cef1c56b3a0f9c5e6ccc22a5044477a4fd16c1 Version guard for [Feature #15974] * 796eeb6339952d92ae1b353d450c7883e589852d. Fix up [Feature #15974] * 928260c2a613bbdd4402c300e0bf86ae7562e52a. Warn in verbose mode on defining a finalizer that captures the object | |||
| 2019-07-03 | Just disable inlining with local varaible for now | Takashi Kokubun | |
| This partially reverts commit 712a66b0741605f5b2db670a292b9bb352f8a716. The previous fix made CI strange like: http://ci.rvm.jp/results/trunk-vm-asserts@silicon-docker/2124178 Let me just downgrade the behavior for now and deal with it later. [Bug #15971] | |||
| 2019-07-03 | Fix up [Feature #15974] | Nobuyoshi Nakada | |
| * Fixed warning condition * Fixed function signature * Use ident hash | |||
| 2019-07-03 | Revert "Avoid corrupting VM stack on inlined setlocal" | Koichi Sasada | |
| This reverts commit ea30dd702512ff9df34fe8c71c825f8f901bf5b1. because it fails when VM_CHECK_MODE=1. | |||
| 2019-07-02 | Check that String#scrub block does not modify receiver | Jeremy Evans | |
| Similar to the check used for String#gsub. Can fix possible segfault. Fixes [Bug #15941] | |||
| 2019-07-02 | Make String#-@ not freeze receiver if called on unfrozen subclass instance | Jeremy Evans | |
| rb_fstring behavior in this case is to freeze the receiver. I'm not sure if that should be changed, so this takes the conservative approach of duping the receiver in String#-@ before passing to rb_fstring. Fixes [Bug #15926] | |||
| 2019-07-02 | Implement Array#minmax | Jeremy Evans | |
| Array#minmax was previous not implemented, so calling #minmax on array was actually calling Enumerable#minmax. This is a simple implementation of #minmax by just calling rb_ary_min and rb_ary_max, which improves performance significantly. Fixes [Bug #15929] | |||
| 2019-07-02 | Avoid corrupting VM stack on inlined setlocal | Takashi Kokubun | |
| setlocal relies on cfp->ep, and frame-omitted method inlining introduced in Ruby 2.7 kept it wrong. This change might slow down frame-omitted method inlining for cfp->ep manipulation, and it obviously complicates the implementaion more. By introducing an optimization that changes Ruby's local variable to C local variable, we could optimize it and simplify the cfp->ep manipulation later. [Bug #15971] | |||
| 2019-07-02 | The behavior of statx(2) depends on the filesystem | Nobuyoshi Nakada | |
| birthtime may not be supported on some filesystems, and NotImplementedError can be raised. [Bug #15972] | |||
| 2019-07-02 | Adjust jit_support file path. | Hiroshi SHIBATA | |
| 2019-07-02 | Renamed to get rid of name clash | Nobuyoshi Nakada | |
| 2019-07-01 | Raise TypeError if calling ENV.freeze | Jeremy Evans | |
| Previously, you could call ENV.freeze, but it would not have the desired effect, as you could still modify ENV. Fixes [Bug #15920] | |||
| 2019-07-01 | marshal.c: check instance variable count | Nobuyoshi Nakada | |
| * marshal.c (w_ivar_each): ensure that no instance variable was removed while dumping other instance variables. [Bug #15968] | |||
| 2019-07-01 | marshal.c: check instance variable count | Nobuyoshi Nakada | |
| * marshal.c (w_obj_each): ensure that no instance variable was added while dumping other instance variables. [Bug #15968] | |||
| 2019-06-30 | Producer threads check is the primary condition | Nobuyoshi Nakada | |
| 2019-06-30 | Suppress "statement not reached" warning | Nobuyoshi Nakada | |
| 2019-06-30 | Suppress method redefinition warnings | Nobuyoshi Nakada | |
| 2019-06-30 | Suppress "literal in condition" warnings | Nobuyoshi Nakada | |
| 2019-06-30 | Suppress void context warnings in verbose mode | Nobuyoshi Nakada | |
| 2019-06-30 | Skip instead of return | Nobuyoshi Nakada | |
| 2019-06-30 | Fixed non-working test | Nobuyoshi Nakada | |
| 2019-06-30 | Fixed ClosedQueueError by a timing issue | Nobuyoshi Nakada | |
| 2019-06-30 | Reset the result between assertions | Nobuyoshi Nakada | |
| 2019-06-30 | Fixed an assertion | Nobuyoshi Nakada | |
| 2019-06-30 | Suppress unused variable warnings | Nobuyoshi Nakada | |
| 2019-06-30 | Wait for the helper thread to terminate | Nobuyoshi Nakada | |
| 2019-06-30 | Removed unused variables | Nobuyoshi Nakada | |
| 2019-06-29 | Escape control codes in regexp warning message | Nobuyoshi Nakada | |
| 2019-06-29 | Should not warn massign parameters as unused | Nobuyoshi Nakada | |
| 2019-06-29 | Rmove old TestTimeTZ::TZ#abbr attribute | Nobuyoshi Nakada | |
| 2019-06-29 | Fixed String#grapheme_clusters with wide encodings | Nobuyoshi Nakada | |
| * string.c (get_reg_grapheme_cluster): make regexp from properly encoded sources fro wide-char encodings. [Bug #15965] * regparse.c (node_extended_grapheme_cluster): suppress false duplicated range warning for the time being. | |||
| 2019-06-29 | Hoisted out WIDE_ENCODINGS | Nobuyoshi Nakada | |
| 2019-06-29 | Set file name and line number | Nobuyoshi Nakada | |
| 2019-06-29 | Adjust caller's line number, expect the next line as here-doc | Nobuyoshi Nakada | |
| 2019-06-28 | Removed unused variables | Nobuyoshi Nakada | |
| 2019-06-28 | Removed excess spaces | Nobuyoshi Nakada | |
| 2019-06-28 | Fixed name conflict between helper classes | Nobuyoshi Nakada | |
| 2019-06-28 | Skip instead of return | Nobuyoshi Nakada | |
| 2019-06-28 | Suppress unused variable warnings | Nobuyoshi Nakada | |
| 2019-06-28 | Use assert_separately instead of invoke_ruby | Nobuyoshi Nakada | |
| 2019-06-28 | Suppress redefinition and void context warnings | Nobuyoshi Nakada | |
| 2019-06-28 | Use assigned local variable | Nobuyoshi Nakada | |
| 2019-06-28 | Suppress void context warning in verbose mode | Nobuyoshi Nakada | |
| 2019-06-26 | test/ruby/test_array.rb (test_sort_with_replace): run in a subprocess | Yusuke Endoh | |
| This test invokes GC.start 100 times, which takes approx. six minutes in Solaris. This change runs the test in a separated process, which makes GC.start faster. | |||
| 2019-06-24 | Add new encoding CESU-8 [Feature #15931] | NARUSE, Yui | |
| 2019-06-23 | array.c: always check frozenness in Array#unshift. Fixes [Bug #15952] | Luke Gruber | |
| Closes: https://github.com/ruby/ruby/pull/2251 | |||
| 2019-06-23 | Module#constant_source_location [Feature #10771] | Nobuyoshi Nakada | |
