| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-10-24 | Fixed sync path of e2mmap structure for gemspec. | Hiroshi SHIBATA | |
| 2019-10-24 | include/ruby/backward/cxxanyargs.hpp: call `va_end` before return | Yusuke Endoh | |
| Coverity Scan complains it. | |||
| 2019-10-24 | hash.c: Do not use Unicode double-quotes | Yusuke Endoh | |
| It made rdoc fail. https://rubyci.org/logs/rubyci.s3.amazonaws.com/ubuntu1804/ruby-master/log/20191023T183005Z.fail.html.gz ``` RDoc is not a full Ruby parser and will fail when fed invalid ruby programs. The internal error was: (ArgumentError) invalid byte sequence in US-ASCII uh-oh! RDoc had a problem: invalid byte sequence in US-ASCII ``` | |||
| 2019-10-23 | More rdoc for ENV#[] and ENV#fetch | BurdetteLamar | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2579 | |||
| 2019-10-24 | Treat only left alt key as meta-key on Windows | aycabta | |
| On German keyboard, right alt key acts as like shift key. Ex. right-alt-8 is just "[". This input doesn't have meta-key statement. | |||
| 2019-10-24 | Added refresh-gems | Nobuyoshi Nakada | |
| Refreshes bundled gems to the latest version, and extracts them. | |||
| 2019-10-24 | Updated minitest to 5.12.2 | Nobuyoshi Nakada | |
| 2019-10-24 | Support forced enter insertion by Ctrl+Enter on Windows | aycabta | |
| 2019-10-24 | * 2019-10-24 [ci skip] | git | |
| 2019-10-23 | Suppress duplicated "require 'reline'" | aycabta | |
| 2019-10-23 | Limit strict RUBY_METHOD_FUNC in C++ | Nobuyoshi Nakada | |
| Limit strict function signature check with RUBY_METHOD_FUNC in C++ to bundled libraries only. [Bug #16271] | |||
| 2019-10-23 | Fix indent... | aycabta | |
| 2019-10-23 | name2ctype.h depends on also Emoji data | Nobuyoshi Nakada | |
| 2019-10-23 | Add gem names [ci skip] | Kazuhiro NISHIYAMA | |
| 2019-10-23 | Trivial fixes [ci skip] | Kazuhiro NISHIYAMA | |
| 2019-10-23 | Fix typos [ci skip] | Kazuhiro NISHIYAMA | |
| 2019-10-23 | Use cppflags to pass preprocessor options | Nobuyoshi Nakada | |
| 2019-10-23 | Use dedicated assertion methods for warning and syntax error | Nobuyoshi Nakada | |
| 2019-10-23 | Catch syntax error even if fatal | Nobuyoshi Nakada | |
| 2019-10-23 | Fix the exception when CPDEBUG | Nobuyoshi Nakada | |
| 2019-10-23 | Relaxed tests for CPDEBUG mode | Nobuyoshi Nakada | |
| 2019-10-23 | * 2019-10-23 [ci skip] | git | |
| 2019-10-23 | Provides ruby2_keywords | Nobuyoshi Nakada | |
| So that requiring it succeeds even if that forward compatibility gem is not installed. | |||
| 2019-10-22 | Benchmark for [Feature #16155] | Nobuyoshi Nakada | |
| 2019-10-22 | tool/release.sh uses ruby-actions' result | NARUSE, Yui | |
| https://github.com/ruby/actions | |||
| 2019-10-22 | Move format-release to tool and fix bugs | NARUSE, Yui | |
| 2019-10-22 | Ignore timestamp file for the expected failure [ci skip] | Nobuyoshi Nakada | |
| 2019-10-22 | Add a tool to generate a patch for www from log | NARUSE, Yui | |
| Receives an output of `tool/make-snapshot` and genarete * Markdown format for release note * a patch for branches.yml, downloads.yml, and releases.yml of w.r-l.o | |||
| 2019-10-22 | make-snapshot: Regexp#match raises on nil now | Nobuyoshi Nakada | |
| 2019-10-22 | NEWS: add a URL about the performance improvement of CGI.escapeHTML | Yusuke Endoh | |
| 2019-10-22 | NEWS: Fix the example of Lazy#eagerv2_7_0_preview2 | Yusuke Endoh | |
| 2019-10-22 | NEWS: add an example for Lazy#eager | Yusuke Endoh | |
| 2019-10-22 | NEWS: Make Net::FTP#features and #option more informative | Yusuke Endoh | |
| 2019-10-22 | test/ruby/test_exception typo fix | MSP-Greg | |
| 2019-10-22 | appveyor.yml - remove timezone & tzinfo gems from MSVC builds | MSP-Greg | |
| Not compatible with concurrent-ruby dependency | |||
| 2019-10-22 | Add a cron job to keep CPDEBUG working | Alan Wu | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2586 | |||
| 2019-10-22 | Fix build for CPDEBUG=1 | Alan Wu | |
| The declarations went out-of-sync in dcfb7f6. Notes: Merged: https://github.com/ruby/ruby/pull/2586 | |||
| 2019-10-21 | Fix Fiber#transfer | Jeremy Evans | |
| Fiber#transfer previously made it impossible to resume the fiber if it was transferred to (no resuming the target of Fiber#transfer). However, the documentation specifies that you cannot resume a fiber that has transferred to another fiber (no resuming the source of Fiber#transfer), unless control is transferred back. Fix the code by setting the transferred flag on the current/source fiber, and unsetting the transferred flag on the target fiber. Fixes [Bug #9664] Fixes [Bug #12555] Notes: Merged: https://github.com/ruby/ruby/pull/2588 Merged-By: jeremyevans <code@jeremyevans.net> | |||
| 2019-10-21 | Fallback to TCP in resolv if UDP bind raises EACCES | Jeremy Evans | |
| Original patch from Andy Grimm. Fixes [Bug #10747] Notes: Merged: https://github.com/ruby/ruby/pull/2587 | |||
| 2019-10-22 | Arguments forwarding [Feature #16253] | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2575 | |||
| 2019-10-22 | NEWS: fixed method names [ci skip] | Nobuyoshi Nakada | |
| 2019-10-22 | NEWS: fixed mark-up [ci skip] | Nobuyoshi Nakada | |
| 2019-10-22 | * 2019-10-22 [ci skip] | git | |
| 2019-10-22 | add an NEWS entry about [Feature #15575] | Koichi Sasada | |
| 2019-10-22 | add a NEWS entry about Proc#to_s change | Koichi Sasada | |
| 2019-10-22 | fix NEWS entry about unbundled gems | Koichi Sasada | |
| 2019-10-21 | NEWS: fixed indents [ci skip] | Nobuyoshi Nakada | |
| 2019-10-21 | NEWS: fix a typo | Yusuke Endoh | |
| 2019-10-21 | bignum.c (estimate_initial_sqrt): prevent integer overflow | Yusuke Endoh | |
| `Integer.sqrt(0xffff_ffff_ffff_ffff ** 2)` caused assertion failure because of integer overflow. [ruby-core:95453] [Bug #16269] | |||
| 2019-10-21 | NEWS: structured the "Language changes" section | Yusuke Endoh | |
| There were too many items in the section in somewhat random order. This change creates the following five subsections: * Pattern matching * The spec of keyword arguments is changed towards 3.0 * Numbered parameter * proc/lambda without no block is deprecated * Other miscellaneous changes Also it adds a handful of example code. | |||
