| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-06-25 | test/net/imap/test_imap.rb: use Thread#stop? to wait for server thread | Yusuke Endoh | |
| Still timeout occurs. Retry for 5dd8fdd3f328f741fae4abba00c478e8a51d2a7e. https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable11x/ruby-master/log/20190625T032405Z.fail.html.gz | |||
| 2019-06-25 | Fixed broken ruby/spec related a53ab897c35586a836710a8afeb1e8c1abd9b087 | Hiroshi SHIBATA | |
| 2019-06-25 | Do not allocate a string to check if a scalar is an integer | Jean Boussier | |
| 2019-06-25 | Remove string_cache in ScalarScanner | Jean Boussier | |
| 2019-06-25 | Reduce string allocations in scalar_scanner | Jean Boussier | |
| 2019-06-25 | Removed CHANGELOG from rdoc files. | SHIBATA Hiroshi | |
| 2019-06-25 | Retired to write CHANGELOG.rdoc. Because It has no update from 2015. | SHIBATA Hiroshi | |
| 2019-06-25 | Dump Hash ivars before elements | Aaron Patterson | |
| When the Hash is revived, the ivars will be set before elements. This is for the case when the hash setter depends on ivars set on the hash. | |||
| 2019-06-25 | Add test to demonstrate issue deserializing hash with ivar | Jordan Owens | |
| Currently the elements of a hash are revived before any ivar values. This causes an issue when the `[]=` method references an instance variable. | |||
| 2019-06-25 | Round trip exception backtraces | Aaron Patterson | |
| This commit allows exception backtraces to round trip | |||
| 2019-06-25 | Refactor exception dumping | Aaron Patterson | |
| 2019-06-25 | Dumping the backtrace never worked, so remove it | Aaron Patterson | |
| Dumping the backtrace for exceptions never worked, so lets remove it. | |||
| 2019-06-25 | Fix IO#scanf on pipes on Windows | Jeremy Evans | |
| IO.seek on a pipe on Windows raises Errno::EINVAL instead of Errno::ESPIPE. Fixes Ruby Bug #15199 | |||
| 2019-06-25 | Require version file relatively | David RodrÃguez | |
| 2019-06-25 | Bump version to 1.2.0. | SHIBATA Hiroshi | |
| 2019-06-25 | Fixed the wrong path for io-console. | Hiroshi SHIBATA | |
| 2019-06-25 | Order of arguments might be incorrect in arm32 coroutine implementation. | Samuel Williams | |
| 2019-06-25 | * 2019-06-25 | git | |
| 2019-06-25 | Refactor calculation of corresponding token depth | aycabta | |
| 2019-06-24 | Try using arm32 implementation for fibers. | Samuel Williams | |
| 2019-06-24 | remove UNREACHABLE | NARUSE, Yui | |
| 2019-06-24 | array.c: Wrong heap size given to ruby_sized_xfree when freeing shared roots | Luke Gruber | |
| Fixes [Bug #15953] Closes: https://github.com/ruby/ruby/pull/2253 | |||
| 2019-06-24 | Add new encoding CESU-8 [Feature #15931] | NARUSE, Yui | |
| 2019-06-24 | Try using arm64 implementation for fibers. | Samuel Williams | |
| 2019-06-24 | Use spaces for indentation in `configure.ac`. | Samuel Williams | |
| 2019-06-24 | * remove trailing spaces. | git | |
| 2019-06-24 | Print warning if not using native coroutine. | Samuel Williams | |
| 2019-06-24 | * 2019-06-24 | git | |
| 2019-06-24 | httpstatus.rb 100% coverage | masakazutakewaka | |
| 2019-06-24 | Adds WebAssembly MIME type | Rob | |
| 2019-06-24 | Remove extraneous spaces at the end of status line | Nobuyoshi Nakada | |
| Remove extraneous spaces after the status code that is non-compliant with RFC, i.e `HTTP 200 OK `, to unnecessary confusion for WEBrick users, by a risk that WEBrick instances in the wild will have server responses flagged as suspicious or malicious due to a similar bug in [Cobalt Strike misconfiguration]. Reported by Matt Tennis <mtennis@paloaltonetworks.com> [Cobalt Strike misconfiguration]: https://blog.fox-it.com/2019/02/26/identifying-cobalt-strike-team-servers-in-the-wild/ | |||
| 2019-06-23 | Max length of UNIX socket path is 104 bytes on macOS | Nobuyoshi Nakada | |
| 2019-06-23 | Do not lengthen UNIX socket path | Nobuyoshi Nakada | |
| * spec/ruby/library/socket/unixsocket/recvfrom_spec.rb: do not lengthen UNIX socket path, which is very stricted. | |||
| 2019-06-23 | vcs.rb: handle --dryrun option | Nobuyoshi Nakada | |
| 2019-06-24 | Update NEWS. | Samuel Williams | |
| - Add note regarding IA64 removal. - Add note about Thread allocation performance improvements. | |||
| 2019-06-23 | array.c add back shared array optimization to ary_ensure_room_for_unshift | Luke Gruber | |
| Bug fix in commit ec8e5f5aa64e2a [Bug #15952] disabled an optimization in this function. Closes: https://github.com/ruby/ruby/pull/2252 | |||
| 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 | Get rid of error with frozen string literal | Nobuyoshi Nakada | |
| [Bug #14194] | |||
| 2019-06-23 | Disable frozen-string-literal to disable deduplication | Nobuyoshi Nakada | |
| [Bug #14194] | |||
| 2019-06-23 | Get rid of error with frozen string literal | MSP-Greg (Greg L) | |
| [Bug #14194] | |||
| 2019-06-23 | Make autoloading_const_entry static | Nobuyoshi Nakada | |
| 2019-06-23 | * expand tabs. | git | |
| 2019-06-23 | NEWS: Module#constant_source_location | Nobuyoshi Nakada | |
| [Feature #10771] | |||
| 2019-06-23 | Module#constant_source_location [Feature #10771] | Nobuyoshi Nakada | |
| 2019-06-23 | Split global search for module | Nobuyoshi Nakada | |
| 2019-06-23 | Hoisted out autoloading_const_entry | Nobuyoshi Nakada | |
| 2019-06-23 | Fix issue with Array#rindex when rb_equal modifies receiver array | Luke Gruber | |
| Fixes [Bug #15951] Closes: https://github.com/ruby/ruby/pull/2250 | |||
| 2019-06-23 | * 2019-06-23 | git | |
| 2019-06-23 | Frozen objects in WeakMap | Nobuyoshi Nakada | |
| * gc.c (wmap_aset): bypass check for frozen and allow frozen object in WeakMap. [Bug #13498] | |||
| 2019-06-22 | Use EXEEXT | Nobuyoshi Nakada | |
| * test/lib/minitest/unit.rb (MiniTest::Assertions.diff): use `EXEEXT` configured value instead of switching by hard coded `host_os`. | |||
