| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-12-22 | Should call initialize method if defined | ksss | |
| 2016-12-21 | One less argument for raisef(); fix #3355 | Yukihiro "Matz" Matsumoto | |
| This issue was reported by https://hackerone.com/mg36 | |||
| 2016-12-21 | Proc shouldn't have `initialize` method | ksss | |
| Fix #3356 | |||
| 2016-12-21 | Merge pull request #3358 from takjn/add-example-rx630 | Yukihiro "Matz" Matsumoto | |
| Added example for cross-compiling on Renesas RX630 | |||
| 2016-12-21 | Added example for cross-compiling for Renesas RX630 | Jun Takeda | |
| 2016-12-18 | Check if width is zero or negative before fill; fix #3347 | Yukihiro "Matz" Matsumoto | |
| Reported by https://hackerone.com/haquaman. | |||
| 2016-12-18 | Prohibit mixture of posarg and nextarg; ref #3347 | Yukihiro "Matz" Matsumoto | |
| 2016-12-18 | Add "not reached" mark in mrb_ary_concat() | Yukihiro "Matz" Matsumoto | |
| 2016-12-18 | NODE_NEGATE cdr may not be code-node; fix #3348 ref #3324 | Yukihiro "Matz" Matsumoto | |
| Reported by Denis Kasak https://hackerone.com/dkasak | |||
| 2016-12-18 | Zero length heredoc still crashed; ref Shopify/mruby-internal#81 | Yukihiro "Matz" Matsumoto | |
| 2016-12-17 | Merge pull request #3346 from clayton-shopify/fix-float-read | Yukihiro "Matz" Matsumoto | |
| Fix crash when exponent is -2147483648 | |||
| 2016-12-15 | Fix crash when exponent is -2147483648 | Clayton Smith | |
| 2016-12-14 | remove debug code; ref #3344 | Yukihiro "Matz" Matsumoto | |
| 2016-12-14 | Merge pull request #3345 from clayton-shopify/fix-range-beg-len | Yukihiro "Matz" Matsumoto | |
| Check type before calling mrb_range_ptr. | |||
| 2016-12-13 | Check type before calling mrb_range_ptr. | Clayton Smith | |
| 2016-12-13 | tLABEL should not come after conditional ternary; fix #3344 | Yukihiro "Matz" Matsumoto | |
| 2016-12-13 | Restore callinfo offset in mrb_yield_with_class() | Yukihiro "Matz" Matsumoto | |
| 2016-12-13 | void_expr_error(): n may be NULL. | Yukihiro "Matz" Matsumoto | |
| Reported from @clayton-shopify. | |||
| 2016-12-13 | Add assertion to make sure new capacity does not overflow. | Yukihiro "Matz" Matsumoto | |
| 2016-12-13 | Make sure str->capa is under MRB_INT_MAX; fix #3342 | Yukihiro "Matz" Matsumoto | |
| 2016-12-13 | Fixed wrong condition in new_sym() that breaks symbol data. | Yukihiro "Matz" Matsumoto | |
| 2016-12-13 | Failed to realloc irep->syms in certain condition. | Yukihiro "Matz" Matsumoto | |
| Also msym size changed to 512 from 256. | |||
| 2016-12-12 | should not try to set classpath for frozen classes; ref #3340 | Yukihiro "Matz" Matsumoto | |
| 2016-12-12 | Merge pull request #3341 from kou/support-pkg-config-in-mrbgem-rake | Yukihiro "Matz" Matsumoto | |
| Support pkg-config in mrbgem.rake | |||
| 2016-12-12 | freeze classes/modules; ref #3340 | Yukihiro "Matz" Matsumoto | |
| 2016-12-12 | freeze instance variables; ref #3340 | Yukihiro "Matz" Matsumoto | |
| 2016-12-12 | rename prefix RBASIC_ to MRB_; ref #3340 | Yukihiro "Matz" Matsumoto | |
| 2016-12-12 | Merge pull request #3340 from k0kubun/object-freeze | Yukihiro "Matz" Matsumoto | |
| Implement Object#freeze | |||
| 2016-12-11 | Support pkg-config in mrbgem.rake | Kouhei Sutou | |
| Example usage: MRuby::Gem::Specification.new('mruby-onig-regexp') do |spec| # ... if spec.search_package('onigmo') # Use onigmo.h when onigmo.pc exist. spec.cc.defines += ["HAVE_ONIGMO_H"] elsif spec.search_package('oniguruma') # Use oniguruma.h when oniguruma.pc exist. spec.cc.defines += ["HAVE_ONIGURUMA_H"] else # Use bundled Onigmo otherwise. # ... end end | |||
| 2016-12-11 | Implement Object#freeze | Takashi Kokubun | |
| 2016-12-10 | Merge pull request #3329 from bouk/reuse | Yukihiro "Matz" Matsumoto | |
| Mark all the built-in classes during GC sweep | |||
| 2016-12-10 | Merge branch 'bouk-negate' | Yukihiro "Matz" Matsumoto | |
| 2016-12-10 | Merge pull request #3324 from bouk/mruby/bouk-negate | Yukihiro "Matz" Matsumoto | |
| Don't generate code for NODE_NEGATE if the result isn't used Reported by https://hackerone.com/haquaman | |||
| 2016-12-10 | gc.c: dead_slot is boolean; ref #3339 | Yukihiro "Matz" Matsumoto | |
| 2016-12-10 | Merge pull request #3339 from kazuho/kazuho/retain-page-with-tt-env | Yukihiro "Matz" Matsumoto | |
| do not destroy a page with an active TT_ENV | |||
| 2016-12-10 | do not destroy a page with an active TT_ENV (e.g. an env referred from TT_FIBER) | Kazuho Oku | |
| 2016-12-10 | Clear parsing_heredoc at the end of file | Yukihiro "Matz" Matsumoto | |
| 2016-12-10 | Merge pull request #3338 from bouk/break-127 | Yukihiro "Matz" Matsumoto | |
| Fix segfault in gen_values with NOVAL and more than 127 args | |||
| 2016-12-09 | Fix segfault in gen_values with NOVAL and more than 127 args | Bouke van der Bijl | |
| 2016-12-09 | Merge pull request #3337 from bouk/undef-127 | Yukihiro "Matz" Matsumoto | |
| Fix segfault when undef is called with more than 126 arguments | |||
| 2016-12-08 | Fix segfault when undef is called with exactly 127 arguments | Bouke van der Bijl | |
| The issue is that when there are more than 126 arguments an array needs to be created to pass the arguments on with. Reported by https://hackerone.com/revskills | |||
| 2016-12-09 | Merge pull request #3336 from AltimitSystems/string.const.macro | Yukihiro "Matz" Matsumoto | |
| Removed unnecessary const macro - const keyword is already a dependency | |||
| 2016-12-08 | Removed unnecessary const macro - const keyword is already a dependency | Felix Jones | |
| 2016-12-08 | Merge pull request #3335 from mattn/fix-vs2013 | Yukihiro "Matz" Matsumoto | |
| fix build on vs2013-vs2015 | |||
| 2016-12-08 | disable define const on VS | Yasuhiro Matsumoto | |
| 2016-12-08 | fix build on vs2013-vs2015 | Yasuhiro Matsumoto | |
| 2016-12-08 | Merge pull request #3331 from dabroz/feature-load-exec | Yukihiro "Matz" Matsumoto | |
| Promote load_exec to mruby API as mrb_load_exec (fixes #3248) | |||
| 2016-12-08 | Merge pull request #3333 from kazuho/kazuho/mrb_gc_unregister | Yukihiro "Matz" Matsumoto | |
| fix issues of mrb_gc_unregister introduced in 09b1185 | |||
| 2016-12-08 | fix issues of mrb_gc_unregister introduced in 09b1185 | Kazuho Oku | |
| * fixes partial copy of objects in GC root array (due to missing `* sizeof(mrb_value)`) * restores the behavior that permitted an unregistered object to be used as an argument | |||
| 2016-12-07 | Promote load_exec to mruby API as mrb_load_exec (fixes #3248) | Tomasz Dąbrowski | |
