summaryrefslogtreecommitdiff
path: root/NEWS
AgeCommit message (Collapse)Author
2019-10-23Add gem names [ci skip]Kazuhiro NISHIYAMA
2019-10-23Trivial fixes [ci skip]Kazuhiro NISHIYAMA
2019-10-23Fix typos [ci skip]Kazuhiro NISHIYAMA
2019-10-22NEWS: add a URL about the performance improvement of CGI.escapeHTMLYusuke Endoh
2019-10-22NEWS: Fix the example of Lazy#eagerv2_7_0_preview2Yusuke Endoh
2019-10-22NEWS: add an example for Lazy#eagerYusuke Endoh
2019-10-22NEWS: Make Net::FTP#features and #option more informativeYusuke Endoh
2019-10-22Arguments forwarding [Feature #16253]Nobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/2575
2019-10-22NEWS: fixed method names [ci skip]Nobuyoshi Nakada
2019-10-22NEWS: fixed mark-up [ci skip]Nobuyoshi Nakada
2019-10-22add an NEWS entry about [Feature #15575]Koichi Sasada
2019-10-22add a NEWS entry about Proc#to_s changeKoichi Sasada
2019-10-22fix NEWS entry about unbundled gemsKoichi Sasada
2019-10-21NEWS: fixed indents [ci skip]Nobuyoshi Nakada
2019-10-21NEWS: fix a typoYusuke Endoh
2019-10-21NEWS: structured the "Language changes" sectionYusuke 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.
2019-10-21add a NEWS entry about [Feature #15602]Koichi Sasada
2019-10-20make monitor.so for performance. (#2576)Koichi Sasada
Recent monitor.rb has performance problem because of interrupt handlers. 'Monitor#synchronize' is frequently used primitive so the performance of this method is important. This patch rewrite 'monitor.rb' with 'monitor.so' (C-extension) and make it faster. See [Feature #16255] for details. Monitor class objects are normal object which include MonitorMixin. This patch introduce a Monitor class which is implemented on C and MonitorMixin uses Monitor object as re-entrant (recursive) Mutex. This technique improve performance because we don't need to care atomicity and we don't need accesses to instance variables any more on Monitor class. Notes: Merged-By: ko1 <ko1@atdot.net>
2019-10-18Verbatim texts need more indent [ci skip]Nobuyoshi Nakada
And separate ruby script and executed example.
2019-10-18NEWS: Mention that optparse now supports did_you_mean for unknown optionYusuke Endoh
2019-10-17[DOC] no change on Windows [Bug #15267] [ci skip]Nobuyoshi Nakada
2019-10-17Fixed File.extname at a name ending with a dotNobuyoshi Nakada
File.extname now returns a dot string at a name ending with a dot. [Bug #15267] Notes: Merged: https://github.com/ruby/ruby/pull/2565
2019-10-16Use an even indent in NEWS for codeBenoit Daloze
* Makes it easier to copy-paste and add code backticks.
2019-10-16Comparable#clamp with a range [Feature #14784]Nobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/2556
2019-10-14Import StringScanner 1.0.3 (#2553)Sutou Kouhei
Notes: Merged-By: kou <kou@clear-code.com>
2019-10-12Import CSV 3.1.2 (#2547)Sutou Kouhei
Notes: Merged-By: kou <kou@clear-code.com>
2019-10-12Import REXML 3.2.3 (#2548)Sutou Kouhei
Notes: Merged-By: kou <kou@clear-code.com>
2019-10-07Update NEWS with Module#ruby2_keywords and a few other thingsJeremy Evans
2019-10-07Add: Array#intersection methodPrajjwal Singh
Notes: Merged: https://github.com/ruby/ruby/pull/2533
2019-09-28NEWS: marked up `**nil` [ci skip]Nobuyoshi Nakada
2019-09-28NEWS: Added module name to proc and lambda [ci skip]Nobuyoshi Nakada
RDoc cannot know if bare words are method name or not.
2019-09-27Update NEWS section on keyword argument separation [ci skip]Jeremy Evans
This may be too verbose, if so, maybe it should be moved lower in the document, or to a separate document.
2019-09-27[EXPERIMENTAL] Make NilClass#to_s, TrueClass#to_s and FalseClass#to_s return ↵Jean Boussier
a frozen String * Always the same frozen String for each of these values. * Avoids extra allocations whenever calling these 3 methods. * See [Feature #16150] Notes: Merged: https://github.com/ruby/ruby/pull/2492
2019-09-27NEWS: fixed markups and indent [ci skip]Nobuyoshi Nakada
C API updates: * adjusted indent. * marked up ANYARGS as RDoc.
2019-09-27NEWS: fixed markups and formatting [ci skip]Nobuyoshi Nakada
* got rid of inadvertent label lists. * marked up resolve_feature_path method names. * fixed indentation of UnboundMethod#bind_call and marked up as RDoc.
2019-09-26Fix Module#name news and add a testJean Boussier
Notes: Merged: https://github.com/ruby/ruby/pull/2488
2019-09-26* remove trailing spaces. [ci skip]git
2019-09-26[EXPERIMENTAL] Make Module#name return a frozen StringJean Boussier
* Always the same frozen String for a given Module or Class. * Avoids extra allocations whenever calling Module#name. * See [Feature #16150] Notes: Merged: https://github.com/ruby/ruby/pull/2487
2019-09-26[EXPERIMENTAL] Make Symbol#to_s return a frozen StringBenoit Daloze
* Always the same frozen String for a given Symbol. * Avoids extra allocations whenever calling Symbol#to_s. * See [Feature #16150] Notes: Merged: https://github.com/ruby/ruby/pull/2437
2019-09-20[DOC] DOT is not a part of a receiver [ci skip]Nobuyoshi Nakada
[Feature #11297] [Feature #16123]
2019-09-20Removed ThreadsWait from the ruby repositoryHiroshi SHIBATA
2019-09-20Removed Synchronizer from the ruby repository.Hiroshi SHIBATA
2019-09-20Removed Shell from the ruby repository.Hiroshi SHIBATA
2019-09-20Removed Scanf from the ruby repository.Hiroshi SHIBATA
2019-09-20Removed CMath from the ruby repository.Hiroshi SHIBATA
2019-09-20Update NEWS and documents [ci skip]Nobuyoshi Nakada
[Feature #11297] [Feature #16123]
2019-09-19Separate Time#inspect from to_s and show subsec [Feature #15958]NARUSE, Yui
2019-09-15Comment lines can be placed between fluent dot nowNobuyoshi Nakada
2019-09-14Update news regarding `Fiber#raise`.Samuel Williams
2019-09-04Implement Enumerator::Lazy#eager [Feature #15901]Akinori MUSHA