| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-11-01 | Add `preview` to version. | mimaki | |
| 2020-10-30 | Fix the condition to detect core mrbgems. | Yukihiro "Matz" Matsumoto | |
| 2020-10-29 | Exclude symbols from `mruby-test` gem only used for tests. | Yukihiro "Matz" Matsumoto | |
| 2020-10-29 | Use `mrb` dump format for non core mrbgems by default. | Yukihiro "Matz" Matsumoto | |
| If you confirm the gem is cdump safe, add `spec.enable_cdump` in `mrbgem.rake` file. Some external gems e.g. `mruby-mgem-template` do not work with cdump. | |||
| 2020-10-29 | Use clear `if` instead of `unless` for condition. | Yukihiro "Matz" Matsumoto | |
| 2020-10-29 | Use instance variable `@dir` instead of access method `dir`. | Yukihiro "Matz" Matsumoto | |
| 2020-10-29 | Remove `mrblib_dir` and `objs_dir` configuration from gems. | Yukihiro "Matz" Matsumoto | |
| Always use `mrblib` and 'src` for directory names. | |||
| 2020-10-29 | Merge pull request #5105 from shuujii/fix-typo-in-Range-last | Yukihiro "Matz" Matsumoto | |
| Fix typo in `Range#last` | |||
| 2020-10-29 | Merge pull request #5104 from shuujii/fix-typo-in-doc-guides-compile.md | Yukihiro "Matz" Matsumoto | |
| Fix typo in `doc/guides/compile.md` [ci skip] | |||
| 2020-10-29 | Fix typo in `Range#last` | KOBAYASHI Shuji | |
| 2020-10-29 | Fix typo in `doc/guides/compile.md` [ci skip] | KOBAYASHI Shuji | |
| 2020-10-29 | Use `default' gembox by default. | Yukihiro "Matz" Matsumoto | |
| I changed to use `full-core` gembox for debugging. It should have been reverted before `mruby3` branch was merged. | |||
| 2020-10-29 | Remove long-time deprecated `minirake`. | Yukihiro "Matz" Matsumoto | |
| 2020-10-29 | The path of the gem should be relative from `MRUBY_ROOT`. | Yukihiro "Matz" Matsumoto | |
| It was relative from the directory of the build configuration file, but the document says it's relative from `MRUBY_ROOT`. When the default configuration file was `MRUBY_ROOT/build_config.rb`, it was OK for most of the cases. | |||
| 2020-10-29 | Move `build_config.rb` -> `build_config/default.rb`; ref #5098 | Yukihiro "Matz" Matsumoto | |
| In addition, update the documents referring `build_config.rb` which is no longer used. The new `build_config.rb` describes the new configuration structure in the comment. | |||
| 2020-10-29 | Restore original name for default `build_config_name`; ref #5098 | Yukihiro "Matz" Matsumoto | |
| 2020-10-29 | Use `Dir.glob` instead of `map`. | Yukihiro "Matz" Matsumoto | |
| 2020-10-29 | Add beginless/endless ranges tests. | Yukihiro "Matz" Matsumoto | |
| 2020-10-29 | Raise exception from `Range#first` with beginless ranges. | Yukihiro "Matz" Matsumoto | |
| 2020-10-29 | Implement `Range#last` in `mruby-range-ext` in Ruby. | Yukihiro "Matz" Matsumoto | |
| This reduce unnecessary calls of `mrb_funcall()`. | |||
| 2020-10-29 | Merge pull request #5098 from shuujii/revert-MRUBY_TARGET-mechanism | Yukihiro "Matz" Matsumoto | |
| Revert `MRUBY_TARGET` mechanism; ref #5096 | |||
| 2020-10-29 | Merge pull request #5102 from dearblue/c++-exc | Yukihiro "Matz" Matsumoto | |
| Fixed build with `conf.enable_cxx_exception` | |||
| 2020-10-29 | Merge pull request #5103 from shuujii/fix-mrb_obj_id-to-Float | Yukihiro "Matz" Matsumoto | |
| Fix `mrb_obj_id` to `Float` | |||
| 2020-10-28 | Fix `mrb_obj_id` to `Float` | KOBAYASHI Shuji | |
| 2020-10-28 | Fixed build with `conf.enable_cxx_exception` | dearblue | |
| The problem was manifested by commit 5069fb15e41998dffef8e0ba566b3a82be369ba3. | |||
| 2020-10-24 | Merge pull request #5101 from dearblue/env-new | Yukihiro "Matz" Matsumoto | |
| Reorganize `env_new()` as `mrb_env_new()` | |||
| 2020-10-24 | Reorganize `env_new()` as `mrb_env_new()` | dearblue | |
| The `mrb_env_new()` function is a global function, but it is still treated as an internal function. | |||
| 2020-10-23 | Merge pull request #5099 from dearblue/getargs-array | Yukihiro "Matz" Matsumoto | |
| Prohibit array changes by "a"/"*" specifier of `mrb_get_args()` | |||
| 2020-10-23 | Merge pull request #5100 from dearblue/getargv-array | Yukihiro "Matz" Matsumoto | |
| Prohibit array changes by `mrb_get_argv()` | |||
| 2020-10-22 | Prohibit array changes by `mrb_get_argv()` | dearblue | |
| The `mrb_get_argv()` function will now return `const mrb_value *`. This is because it is difficult for the caller to check if it is a splat argument (array object) and to write-barrier if necessary. | |||
| 2020-10-22 | Prohibit array changes by "a"/"*" specifier of `mrb_get_args()` | dearblue | |
| The "a"/"*" specifier of the `mrb_get_args()` function will now return `const mrb_value *`. This is because it is difficult for the caller to check if it is an array object and write-barrier if necessary. And it requires calling `mrb_ary_modify()` on the unmodified array object, which is also difficult (this is similar to #5087). | |||
| 2020-10-19 | Revert `MRUBY_TARGET` mechanism; ref #5096 | KOBAYASHI Shuji | |
| * In explanation of mruby, the expression `build_config.rb` is frequently used including official documents, so I think that it will not make sense if the file is no longer used. * The `MRUBY_TARGET` mechanism seems to have little improvement, so I don't think it should be changed to avoid unnecessary confusion. * `MRUBY_TARGET` and `MRuby.targets` represent somewhat different things, so using the same term "target" is a bit confusing. The mechanism that can be written short when using a file under `build_config` (renamed from `target`) directory remains (`build_config/${MRUBY_CONFIG}.rb` is used if the path specified in `MRUBY_CONFIG` doesn't exist). | |||
| 2020-10-16 | Add startless range (another part of #5085) | Yukihiro "Matz" Matsumoto | |
| Ref #5093; close #5085 | |||
| 2020-10-16 | Remove uninitialized local variable warning. | Yukihiro "Matz" Matsumoto | |
| Fix for #5093 | |||
| 2020-10-16 | Turn of `enable_debug` by default; ref #5096 | Yukihiro "Matz" Matsumoto | |
| It was once turned off by #4045 | |||
| 2020-10-16 | Typo fixed; ref #5095 | Yukihiro "Matz" Matsumoto | |
| Thanks to @YunzheZJU | |||
| 2020-10-16 | Use `conf.enable_debug`; close #5095 | Yukihiro "Matz" Matsumoto | |
| According to `doc/guides/compile.md`; thanks to @YunzheZJU | |||
| 2020-10-16 | Merge pull request #5094 from mruby-Forum/mruby3-preview3.0.0-preview | Yukihiro "Matz" Matsumoto | |
| mruby 3.0.0-preview. | |||
| 2020-10-16 | mruby 3.0.0-preview. | Hiroshi Mimaki | |
| 2020-10-15 | Merge branch 'zubycz-work_for_merge' | Yukihiro "Matz" Matsumoto | |
| 2020-10-15 | Merge branch 'work_for_merge' of https://github.com/zubycz/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| zubycz-work_for_merge | |||
| 2020-10-15 | Fix out of bound access in `parse.y`. | Yukihiro "Matz" Matsumoto | |
| 2020-10-15 | Merge pull request #5084 from mruby/mruby3 | Yukihiro "Matz" Matsumoto | |
| Mruby3 | |||
| 2020-10-14 | Add indent to `lv` in the C dump. | Yukihiro "Matz" Matsumoto | |
| 2020-10-14 | Avoid using C struct dump for test Ruby code. | Yukihiro "Matz" Matsumoto | |
| Files under `test/t` and `mrbgem/*/test` are for tests, not for actual execution. So symbols in those files need not to be pre-allocated. This change slightly reduce the memory consumption. | |||
| 2020-10-13 | Introduce endless range (a part of #5085) | taiyoslime | |
| Co-Authored-By: n4o847 <[email protected]> Co-Authored-By: smallkirby <[email protected]> | |||
| 2020-10-12 | Merge pull request #5091 from zubycz/remove_unnecessary_assignment | Yukihiro "Matz" Matsumoto | |
| Remove unnecessary assignment in String#upto | |||
| 2020-10-12 | Revert "Add a new function `mrb_exc_protect()`." | Yukihiro "Matz" Matsumoto | |
| This reverts commit 8746a6fe4e7bda8a0fbc0eaece9314ec51a0c255. We already have `mrb_protect()`, `mrb_ensure()` and `mrb_rescue()` functions. If you need to handle exceptions from C functions, use those functions above. | |||
| 2020-10-12 | Add a new function `mrb_exc_protect()`. | Yukihiro "Matz" Matsumoto | |
| `mrb_exc_protect()` takes two C functions, `body` to be executed first, and `resc` to be executed when an error happens during `body` execution. Since `mrb_exc_protect()` should be compiled with the proper compiler, we will not see the problem like #5088 that was caused by `setjmp()` and `throw` mixture. | |||
| 2020-10-12 | Cause error explicitly from `MRB_TRY()` with `cxx_exception`; ref #5088 | Yukihiro "Matz" Matsumoto | |
| `MRB_TRY()` does not work when compiled by C compiler with `cxx_exception` configuration. We should explicitly warn. | |||
