| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-04-21 | Commented out `String#scan` because it is not implemented yet | KOBAYASHI Shuji | |
| 2019-04-20 | Merge pull request #4393 from robfors/twiddle_wakka | Yukihiro "Matz" Matsumoto | |
| Fixes the twiddle wakka comparison algorithm | |||
| 2019-04-20 | Merge pull request #4390 from shuujii/add-type-check-in-String-aset | Yukihiro "Matz" Matsumoto | |
| Add type check (conversion) in `String#[]=` | |||
| 2019-04-19 | Fixes the twiddle wakka comparison algorithm to support passing only a major ↵ | Rob | |
| number | |||
| 2019-04-20 | Merge pull request #4392 from dearblue/true-false-p | Yukihiro "Matz" Matsumoto | |
| Add `mrb_true_p()` and `mrb_false_p()` macro functions | |||
| 2019-04-19 | Add `mrb_true_p()` and `mrb_false_p()` macro functions | dearblue | |
| 2019-04-19 | Add type check (conversion) in `String#[]=` | KOBAYASHI Shuji | |
| Before this patch: 'a'[0] = 1 #=> 1 'a'[:a] = '1' #=> ArgumentError 'a'[:a, 0] = '1' #=> ArgumentError 'a'[0, :a] = '1' #=> ArgumentError 'a'[0, 1] = 1 #=> 1 After this patch / Ruby: 'a'[0] = 1 #=> TypeError 'a'[:a] = '1' #=> TypeError 'a'[:a, 0] = '1' #=> TypeError 'a'[0, :a] = '1' #=> TypeError 'a'[0, 1] = 1 #=> TypeError | |||
| 2019-04-19 | Merge pull request #4388 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-duplicated-include-Comparable-in-mrblib-string.rb Remove duplicated `include Comparable` in `mrblib/string.rb` | |||
| 2019-04-18 | Remove duplicated `include Comparable` in `mrblib/string.rb` | KOBAYASHI Shuji | |
| 2019-04-18 | Merge pull request #4387 from shuujii/add-Array-sample-test | Yukihiro "Matz" Matsumoto | |
| Add `Array#sample` test | |||
| 2019-04-17 | Add `Array#sample` test | KOBAYASHI Shuji | |
| And simplify tests for `Array#shuffle` and `Array#shuffle!`. | |||
| 2019-04-16 | Merge pull request #4385 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/avoid-potential-zero-size-array-declaration Avoid potential zero size array declaration; fix #4382 | |||
| 2019-04-16 | Avoid potential zero size array declaration; fix #4382 | KOBAYASHI Shuji | |
| 2019-04-16 | Fixed a bug in recursive `mrb_top_run` calls; fix #4384 | Yukihiro "Matz" Matsumoto | |
| 2019-04-16 | Merge pull request #4383 from Shokuji/fix_mruby-io_test | Yukihiro "Matz" Matsumoto | |
| Fix test in mruby-io | |||
| 2019-04-16 | Merge branch 'master' into fix_mruby-io_test | Shokuji | |
| 2019-04-16 | Merge pull request #4381 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-missing-assertions-in-mruby-random-test Fix missing assertions in `mruby-random` test | |||
| 2019-04-15 | Fix missing assertions in `mruby-random` test | KOBAYASHI Shuji | |
| 2019-04-15 | Fix test, popen and cmd in mruby-io | Shouji Kuboyama | |
| 2019-04-15 | Fixed wrong function names; fix #4380 | Yukihiro "Matz" Matsumoto | |
| 2019-04-15 | Merge pull request #4379 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/extract-similar-codes-to-macros-for-math-opcode-in-mrb_vm_exec Extract similar codes to macros for math opcode in `mrb_vm_exec()` | |||
| 2019-04-14 | Extract similar codes to macros for math opcode in `mrb_vm_exec` | KOBAYASHI Shuji | |
| 2019-04-14 | Merge pull request #4378 from dearblue/memleak-hashtable | Yukihiro "Matz" Matsumoto | |
| Fix memory leak for hash table index if occur out of memory | |||
| 2019-04-14 | Merge pull request #4377 from dearblue/wrong-iv-size | Yukihiro "Matz" Matsumoto | |
| Fix wrong size of instance variable if occur out of memory | |||
| 2019-04-14 | Merge pull request #4376 from dearblue/leak-symbols | Yukihiro "Matz" Matsumoto | |
| Fix leaked function symbols | |||
| 2019-04-14 | Merge pull request #4375 from dearblue/forgotten-structs | Yukihiro "Matz" Matsumoto | |
| Include `RFiber` and `RIstruct` as a part of `RVALUE` | |||
| 2019-04-14 | Merge pull request #4374 from dearblue/hexdump | Yukihiro "Matz" Matsumoto | |
| Fix hexdigits convertion | |||
| 2019-04-14 | Fix memory leak for hash table index if occur out of memory | dearblue | |
| 2019-04-14 | Fix wrong size of instance variable if occur out of memory | dearblue | |
| 2019-04-14 | Remove pointer check after `mrb_malloc()` | dearblue | |
| 2019-04-14 | Fix leaked function symbols | dearblue | |
| - `free_heap()` in src/gc.c - `symhash()` in src/symbol.c - `no_optimize()` in mrbgems/mruby-compiler/core/codegen.c | |||
| 2019-04-14 | Fix string index for appending | dearblue | |
| `sizeof(string-literal)` is included `'\0'` character | |||
| 2019-04-14 | Fix hexdigits convertion | dearblue | |
| 2019-04-14 | Include `RFiber` and `RIstruct` as a part of `RVALUE` | dearblue | |
| 2019-04-14 | Merge pull request #4373 from shuujii/fix-broken-NaN-with-MRB_NAN_BOXING | Yukihiro "Matz" Matsumoto | |
| Fix broken NaN with `MRB_NAN_BOXING` | |||
| 2019-04-13 | Fix broken NaN with `MRB_NAN_BOXING` | KOBAYASHI Shuji | |
| Example: $ bin/mruby -e '(Float::INFINITY - Float::INFINITY).nan?' zsh: segmentation fault Cause: `SET_FLOAT_VALUE` is not used. It is needed for normalizing NaN. Treatment: In my environment, this issue could be reproduced only when `infinity - infinity`, however `SET_FLOAT_VALUE` should be used in all arithmetic operations (regardless of boxing setting), I think. So I fixed all similar codes by extracting to macro. | |||
| 2019-04-12 | Small refactoring in `mrb_funcall_with_block`. | Yukihiro "Matz" Matsumoto | |
| 2019-04-12 | Merge pull request #4372 from shuujii/refine-assert_float | Yukihiro "Matz" Matsumoto | |
| Refine `assert_float` | |||
| 2019-04-12 | Deallocate `s->lines` in `codegen_error`; ref #4370 | Yukihiro "Matz" Matsumoto | |
| 2019-04-12 | The number of local variables should be less than 1024; fix #4370 | Yukihiro "Matz" Matsumoto | |
| The `env` stores stack length in a 10 bit field. See `MRB_ENV_STACK_LEN()` macro. | |||
| 2019-04-12 | Refine `assert_float` | KOBAYASHI Shuji | |
| Avoid arithmetic operations when `exp` and/or `act` are infinity or NaN. | |||
| 2019-04-12 | Merge pull request #4369 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-incorrect-flags-updating-in-mrb_regexp_p Remove incorrect flags updating in `mrb_regexp_p()` | |||
| 2019-04-12 | Merge pull request #4371 from clayton-shopify/fix-buffer-overflows | Yukihiro "Matz" Matsumoto | |
| Fix buffer overflows in parser. | |||
| 2019-04-11 | Fix buffer overflows in parser. | Clayton Smith | |
| 2019-04-11 | Remove incorrect flags updating in `mrb_regexp_p()` | KOBAYASHI Shuji | |
| 2019-04-10 | Merge pull request #4368 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-mrb_immediate_p-in-mrb_obj_freeze-and-mrb_obj_frozen Use `mrb_immediate_p()` in `mrb_obj_freeze()` and `mrb_obj_frozen()` | |||
| 2019-04-10 | Use `mrb_immediate_p()` in `mrb_obj_freeze()` and `mrb_obj_frozen()` | KOBAYASHI Shuji | |
| 2019-04-10 | Remove too aggressive `initialize` call in `mrb_instance_new`. | Yukihiro "Matz" Matsumoto | |
| 2019-04-10 | Remove `MRB_API` from `mrb_instance_new`. | Yukihiro "Matz" Matsumoto | |
| 2019-04-10 | Merge pull request #4367 from shuujii/extract-frozen-checking-to-function | Yukihiro "Matz" Matsumoto | |
| Extract frozen checking to function | |||
