| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-12-01 | Fix compile error by #3309 | Nobuyoshi Nakada | |
| 2016-11-30 | Prevent array size calculation overflows. | Clayton Smith | |
| 2016-11-30 | Prohibit instantiation of immediate objects | Yukihiro "Matz" Matsumoto | |
| 2016-11-30 | Merge pull request #3278 from bouk/dup-class | Yukihiro "Matz" Matsumoto | |
| Copy over INSTANCE_TT when duping class | |||
| 2016-11-30 | check ttype before object allocation; fix #3294 | Yukihiro "Matz" Matsumoto | |
| 2016-11-29 | Use size_t to calculate bytes needed for array. | Clayton Smith | |
| 2016-11-29 | ary_concat: support self concatenation; fix #3302 | Yukihiro "Matz" Matsumoto | |
| 2016-11-28 | pre-allocate arena overflow error | Yukihiro "Matz" Matsumoto | |
| 2016-11-27 | Added Exception check in mrb_exc_set(); close #3292 | Yukihiro "Matz" Matsumoto | |
| PR #3293 just checks for NoMethodError. | |||
| 2016-11-25 | Merge pull request #3287 from bouk/proc-arity | Yukihiro "Matz" Matsumoto | |
| Fix calling .arity on Proc with undefined `initialize` | |||
| 2016-11-25 | Merge pull request #3284 from bouk/remove-method-segfault | Yukihiro "Matz" Matsumoto | |
| Fix segfault on remove_method with invalid argument | |||
| 2016-11-25 | Merge pull request #3282 from bouk/fix-break-instance-class | Yukihiro "Matz" Matsumoto | |
| Fix segfault when defining class inside instance_exec on primitive | |||
| 2016-11-24 | Get String length after args in String#chomp! | Clayton Smith | |
| Fixes RCE issue Reported by @bouk | |||
| 2016-11-24 | Fix calling .arity on Proc with undefined `initialize` | Francois Chagnon | |
| Reported by @bouk | |||
| 2016-11-24 | Fix segfault on remove_method with invalid argument | Bouke van der Bijl | |
| Reported by https://hackerone.com/jpenalbae | |||
| 2016-11-24 | Fix segfault when defining class inside instance_exec on primitive | Bouke van der Bijl | |
| 2016-11-24 | Copy over INSTANCE_TT when duping class | Bouke van der Bijl | |
| 2016-11-24 | fixed a bug in self modifying Array#[]=; fix #3274 | Yukihiro "Matz" Matsumoto | |
| 2016-11-24 | always call Hash#default if no key found; fix #3272 | Yukihiro "Matz" Matsumoto | |
| 2016-11-24 | Add pointer casting from mrb_malloc(); ref #3267 | Yukihiro "Matz" Matsumoto | |
| 2016-11-24 | Avoid casting from int to unsigned char for C++; ref #3267 | Yukihiro "Matz" Matsumoto | |
| 2016-11-24 | Add constant export declaration for MRBC output compiled as C++ | Tomasz Dąbrowski | |
| Otherwise, C++ compilers will skip this constant when producing object files. | |||
| 2016-11-24 | Fixes for compiling mruby as C++ | Tomasz Dąbrowski | |
| 2016-11-23 | local_variables() should not touch unshared env | Yukihiro "Matz" Matsumoto | |
| 2016-11-23 | Implement Float shift methods in C | Yukihiro "Matz" Matsumoto | |
| 2016-11-22 | int64_value(): use FIXABLE() | Yukihiro "Matz" Matsumoto | |
| 2016-11-22 | accept floats as bit operator operands; fix #3260 | Yukihiro "Matz" Matsumoto | |
| 2016-11-22 | Removed fix_shift_get_width() | Yukihiro "Matz" Matsumoto | |
| Fixnum is usually big enough for shift width. | |||
| 2016-11-22 | add bit operators ~,&,|,^ to Float class (mruby special) | Yukihiro "Matz" Matsumoto | |
| 2016-11-18 | Range#include?: simplify condition; ref #3255 | Yukihiro "Matz" Matsumoto | |
| 2016-11-18 | Merge pull request #3255 from ksss/range-include | Yukihiro "Matz" Matsumoto | |
| Fix condition of Range#include? | |||
| 2016-11-18 | Fix condition of Range#include? | ksss | |
| 2016-11-17 | String#include? does not take integers | Yukihiro "Matz" Matsumoto | |
| 2016-11-17 | renamed "inline" to "istruct" to represent inline struct; ref #3251 | Yukihiro "Matz" Matsumoto | |
| 2016-11-17 | inline structures data type for mruby (MRB_TT_INLINE) (fix #3237) | Tomasz Dąbrowski | |
| Inline structures have no instance variables, no finalizer, and offer as much space as possible in RBASIC object. This means 24 bytes on 64-bit platforms and 12 bytes on 32-bit platforms. mruby-inline-struct gem is only provided for testing. | |||
| 2016-11-17 | Merge pull request #3253 from ksss/range | Yukihiro "Matz" Matsumoto | |
| Ranges should not rewrite | |||
| 2016-11-17 | Ranges should not rewrite | ksss | |
| 2016-11-16 | Correct argument specifications for few methods: | Tomasz Dąbrowski | |
| - Struct#values_at - Module#define_method - String#chop - String#chop! | |||
| 2016-11-16 | Fixed rindex calling into mrb_equal bug | Yukihiro "Matz" Matsumoto | |
| Fixed by Alex Snaps and reported by Mathieu Leduc-Hamel, both from shopify.com. Thank you! | |||
| 2016-11-16 | Fixed a memory problem in Array#to_h | Yukihiro "Matz" Matsumoto | |
| Reported from Alex Snaps via Mathieu Leduc-Hamel, both from shopify.com. Thank you! | |||
| 2016-11-15 | class/module statement should re-open; fix #3225 | Yukihiro "Matz" Matsumoto | |
| 2016-11-13 | move mrb_str_dup() to mrb_class_path; ref #2470 | Yukihiro "Matz" Matsumoto | |
| Class#to_s used to return same string repeatedly, that mean you can modify "class name" by modifying the return value from Class#to_s. | |||
| 2016-11-12 | Hash#[] to call Hash#default | Yukihiro "Matz" Matsumoto | |
| 2016-11-11 | Merge pull request #3224 from ksss/define_method | Yukihiro "Matz" Matsumoto | |
| Module#define_method supports proc argument | |||
| 2016-11-10 | Merge branch 'mrb.class_under_defined' | Felix Jones | |
| 2016-11-10 | Renamed class_under_defined to class_defined_under | Felix Jones | |
| 2016-11-08 | class variables in higher order have a priority; fix #3235 | Yukihiro "Matz" Matsumoto | |
| 2016-11-07 | fixed wrong stack adjustment for ensure clauses; fix #3175 | Yukihiro "Matz" Matsumoto | |
| 2016-11-06 | Added mrb_class_under_defined | Felix Jones | |
| 2016-11-05 | associate REnv to the executing block; fix #3214 | Yukihiro "Matz" Matsumoto | |
