2018-10-17 07:35:28 -04:00
|
|
|
# -*- rdoc -*-
|
2017-12-26 06:36:07 -05:00
|
|
|
|
2018-12-25 10:58:49 -05:00
|
|
|
= NEWS for Ruby 2.7.0
|
2017-12-26 06:36:07 -05:00
|
|
|
|
|
|
|
This document is a list of user visible feature changes made between
|
|
|
|
releases except for bug fixes.
|
|
|
|
|
2018-08-18 05:53:11 -04:00
|
|
|
Note that each entry is kept so brief that no reason behind or reference
|
|
|
|
information is supplied with. For a full list of changes with all
|
|
|
|
sufficient information, see the ChangeLog file or Redmine
|
2018-10-17 07:35:28 -04:00
|
|
|
(e.g. <tt>https://bugs.ruby-lang.org/issues/$FEATURE_OR_BUG_NUMBER</tt>)
|
2017-12-26 06:36:07 -05:00
|
|
|
|
2018-12-25 10:58:49 -05:00
|
|
|
== Changes since the 2.6.0 release
|
2017-12-28 15:09:24 -05:00
|
|
|
|
2018-10-17 07:35:28 -04:00
|
|
|
=== Language changes
|
2017-12-28 15:09:24 -05:00
|
|
|
|
2019-04-26 23:09:48 -04:00
|
|
|
* Pattern matching is introduced as an experimental feature. [Feature #14912]
|
2019-04-17 02:48:03 -04:00
|
|
|
|
2018-12-31 10:00:37 -05:00
|
|
|
* Method reference operator, <code>.:</code> is introduced as an
|
|
|
|
experimental feature. [Feature #12125] [Feature #13581]
|
|
|
|
|
2019-08-30 18:03:27 -04:00
|
|
|
* Preparations for the redesign of keyword arguments towards Ruby 3.
|
|
|
|
[Feature #14183]
|
|
|
|
* Automatic conversion from a Hash to keyword arguments is deprecated:
|
|
|
|
when a method call passes a Hash at the last argument, and when the
|
|
|
|
called method accepts keywords, it is warned.
|
|
|
|
Please add a double splat operator.
|
|
|
|
|
|
|
|
def foo(key: 42); end; foo({key: 42}) # warned
|
|
|
|
def foo(**kw); end; foo({key: 42}) # warned
|
|
|
|
def foo(key: 42); end; foo(**{key: 42}) # OK
|
|
|
|
def foo(opt={}); end; foo( key: 42 ) # OK
|
|
|
|
|
|
|
|
* Non-symbol keys are allowed as a keyword argument.
|
|
|
|
|
|
|
|
def foo(**kw); p kw; end; foo("str" => 1) #=> {"str"=>1}
|
|
|
|
|
|
|
|
* Automatic conversion of keyword arguments and positional ones is warned.
|
|
|
|
[Feature #14183]
|
|
|
|
|
2019-01-10 03:19:14 -05:00
|
|
|
* Proc.new and proc with no block in a method called with a block is warned
|
|
|
|
now.
|
|
|
|
|
|
|
|
* lambda with no block in a method called with a block errs.
|
|
|
|
|
2019-05-04 09:02:20 -04:00
|
|
|
* Non-Symbol keys in a keyword arguments hash were prohibited in 2.6.0,
|
|
|
|
but are now allowed again. [Bug #15658]
|
2019-03-11 08:48:33 -04:00
|
|
|
|
2019-03-17 01:21:18 -04:00
|
|
|
* Numbered parameter as the default block parameter is introduced as an
|
|
|
|
experimental feature. [Feature #4475]
|
|
|
|
|
2019-04-03 04:11:41 -04:00
|
|
|
* A beginless range is experimentally introduced. It might not be as useful
|
2019-04-28 12:17:27 -04:00
|
|
|
as an endless range, but would be good for DSL purpose. [Feature #14799]
|
2019-04-03 04:11:41 -04:00
|
|
|
|
|
|
|
ary[..3] # identical to ary[0..3]
|
|
|
|
where(sales: ..100)
|
|
|
|
|
2019-04-18 05:34:40 -04:00
|
|
|
* Setting <code>$;</code> to non-nil value is warned now. Use of it in
|
|
|
|
String#split is warned too.
|
|
|
|
|
2019-04-25 10:46:37 -04:00
|
|
|
* Setting <code>$,</code> to non-nil value is warned now. Use of it in
|
|
|
|
Array#join is warned too.
|
|
|
|
|
2019-04-28 11:24:26 -04:00
|
|
|
* Quoted here-document identifier must end within the same line.
|
|
|
|
|
|
|
|
<<"EOS
|
|
|
|
" # This has been warned since 2.4
|
|
|
|
EOS
|
|
|
|
|
2019-04-23 00:14:27 -04:00
|
|
|
|
2019-07-14 01:40:38 -04:00
|
|
|
* The flip-flop syntax deprecation is reverted. [Feature #5400]
|
|
|
|
|
2018-10-17 07:35:28 -04:00
|
|
|
=== Core classes updates (outstanding ones only)
|
2017-12-28 15:09:24 -05:00
|
|
|
|
2019-06-05 00:41:02 -04:00
|
|
|
Complex::
|
|
|
|
|
|
|
|
New method::
|
|
|
|
|
|
|
|
* Added Complex#<=>. So 0 <=> 0i will not raise NoMethodError.
|
|
|
|
[Bug #15857]
|
|
|
|
|
2019-06-16 19:50:44 -04:00
|
|
|
Encoding::
|
|
|
|
|
|
|
|
* Added new encoding CESU-8 [Feature #15931]
|
|
|
|
|
2019-02-07 03:14:10 -05:00
|
|
|
Enumerable::
|
|
|
|
|
2019-07-14 04:54:22 -04:00
|
|
|
New methods::
|
2019-02-07 03:14:10 -05:00
|
|
|
|
2019-05-23 10:24:22 -04:00
|
|
|
* Added Enumerable#filter_map. [Feature #15323]
|
|
|
|
|
2019-03-14 21:19:31 -04:00
|
|
|
* Added Enumerable#tally. [Feature #11076]
|
2019-02-07 03:14:10 -05:00
|
|
|
|
2019-03-11 05:52:40 -04:00
|
|
|
Enumerator::
|
|
|
|
|
|
|
|
New method::
|
|
|
|
|
2019-04-09 09:08:29 -04:00
|
|
|
* Added Enumerator::Yielder#to_proc so that a Yielder object
|
|
|
|
can be directly passed to another method as a block
|
|
|
|
argument. [Feature #15618]
|
2019-03-11 05:52:40 -04:00
|
|
|
|
2019-04-06 03:02:11 -04:00
|
|
|
FrozenError::
|
|
|
|
|
|
|
|
New method::
|
|
|
|
|
|
|
|
* Added FrozenError#receiver to return the frozen object that
|
|
|
|
modification was attempted on. To set this object when raising
|
|
|
|
FrozenError in Ruby code, pass it as the second argument to
|
|
|
|
FrozenError.new.
|
|
|
|
|
2019-06-01 11:42:57 -04:00
|
|
|
GC::
|
|
|
|
|
|
|
|
New method::
|
|
|
|
|
|
|
|
* Added GC.compact method for compacting the heap.
|
|
|
|
This function compacts live objects in the heap so that fewer pages may
|
|
|
|
be used, and the heap may be more CoW friendly. [Feature #15626]
|
|
|
|
|
|
|
|
Details on the algorithm and caveats can be found here:
|
|
|
|
https://bugs.ruby-lang.org/issues/15626
|
|
|
|
|
2019-06-08 08:35:33 -04:00
|
|
|
IO::
|
|
|
|
|
|
|
|
New method::
|
|
|
|
|
|
|
|
* Added IO#set_encoding_by_bom to check the BOM and set the external
|
|
|
|
encoding. [Bug #15210]
|
|
|
|
|
2019-04-28 21:11:44 -04:00
|
|
|
Integer::
|
|
|
|
|
|
|
|
Modified method::
|
|
|
|
|
|
|
|
* Integer#[] now supports range operation. [Feature #8842]
|
|
|
|
|
|
|
|
0b01001101[2, 4] #=> 0b0011
|
|
|
|
0b01001100[2..5] #=> 0b0011
|
|
|
|
0b01001100[2...6] #=> 0b0011
|
|
|
|
^^^^
|
|
|
|
|
2019-05-07 06:52:24 -04:00
|
|
|
Module::
|
|
|
|
|
2019-06-22 12:44:07 -04:00
|
|
|
New method::
|
|
|
|
|
2019-06-30 11:47:55 -04:00
|
|
|
* Added Module#const_source_location to retrieve the location where a
|
2019-06-22 12:44:07 -04:00
|
|
|
constant is defined. [Feature #10771]
|
|
|
|
|
2019-05-07 06:52:24 -04:00
|
|
|
Modified method::
|
|
|
|
|
|
|
|
* Module#autoload? now takes an +inherit+ optional argument, like as
|
|
|
|
Module#const_defined?. [Feature #15777]
|
|
|
|
|
2019-08-29 09:06:05 -04:00
|
|
|
ObjectSpace::WeakMap::
|
|
|
|
|
|
|
|
Modified method::
|
|
|
|
|
|
|
|
* ObjectSpace::WeakMap#[]= now accepts special objects as either key or
|
|
|
|
values. [Feature #16035]
|
|
|
|
|
2019-06-01 11:42:11 -04:00
|
|
|
Regexp / String::
|
2019-03-05 22:15:06 -05:00
|
|
|
|
2019-04-09 09:08:29 -04:00
|
|
|
* Update Unicode version and Emoji version from 11.0.0 to
|
|
|
|
12.0.0. [Feature #15321]
|
2019-03-05 22:15:06 -05:00
|
|
|
|
2019-04-09 05:41:00 -04:00
|
|
|
* Update Unicode version to 12.1.0, adding support for
|
2019-04-09 09:08:29 -04:00
|
|
|
U+32FF SQUARE ERA NAME REIWA. [Feature #15195]
|
2019-04-09 05:41:00 -04:00
|
|
|
|
2019-07-14 07:33:41 -04:00
|
|
|
RubyVM::
|
|
|
|
|
|
|
|
Removed method::
|
|
|
|
|
|
|
|
* RubyVM.resolve_feature_path moved to
|
|
|
|
$LOAD_PATH.resolve_feature_path. [Feature #15903] [Feature #15230]
|
|
|
|
|
2019-05-23 09:47:55 -04:00
|
|
|
Time::
|
|
|
|
|
2019-07-14 04:58:25 -04:00
|
|
|
New methods::
|
|
|
|
|
2019-05-23 09:47:55 -04:00
|
|
|
* Added Time#ceil method. [Feature #15772]
|
|
|
|
|
|
|
|
* Added Time#floor method. [Feature #15653]
|
|
|
|
|
2019-08-29 22:01:25 -04:00
|
|
|
UnboundMethod::
|
|
|
|
|
|
|
|
New methods::
|
|
|
|
|
|
|
|
* Added UnboundMethod#bind_call method. [Feature #15955]
|
|
|
|
|
|
|
|
`umethod.bind_call(obj, ...)` is semantically equivalent to
|
|
|
|
`umethod.bind(obj).call(...)`. This idiom is used in some libraries to
|
|
|
|
call a method that is overridden. The added method does the same
|
|
|
|
without allocation of intermediate Method object.
|
|
|
|
|
|
|
|
class Foo
|
|
|
|
def add_1(x)
|
|
|
|
x + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class Bar < Foo
|
2019-08-29 22:11:55 -04:00
|
|
|
def add_1(x) # override
|
2019-08-29 22:01:25 -04:00
|
|
|
x + 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
obj = Bar.new
|
|
|
|
p obj.add_1(1) #=> 3
|
|
|
|
p Foo.instance_method(:add_1).bind(obj).call(1) #=> 2
|
|
|
|
p Foo.instance_method(:add_1).bind_call(obj, 1) #=> 2
|
|
|
|
|
|
|
|
|
2019-07-13 09:26:47 -04:00
|
|
|
$LOAD_PATH::
|
|
|
|
|
2019-07-14 04:58:25 -04:00
|
|
|
New method::
|
|
|
|
|
2019-07-13 09:26:47 -04:00
|
|
|
* Added $LOAD_PATH.resolve_feature_path. [Feature #15903] [Feature #15230]
|
|
|
|
|
2018-10-17 07:35:28 -04:00
|
|
|
=== Stdlib updates (outstanding ones only)
|
2017-12-28 15:09:24 -05:00
|
|
|
|
2019-04-17 09:20:02 -04:00
|
|
|
Bundler::
|
|
|
|
|
|
|
|
* Upgrade to Bundler 2.1.0.pre.1
|
|
|
|
Bundled from https://github.com/bundler/bundler/commit/a53709556b95a914e874b22ed2116a46b0528852
|
|
|
|
|
2019-06-05 09:29:53 -04:00
|
|
|
CGI::
|
|
|
|
|
|
|
|
* CGI.escapeHTML becomes 2~5x faster when there's at least one escaped character.
|
|
|
|
|
2019-02-02 01:38:09 -05:00
|
|
|
CSV::
|
2019-01-25 01:49:59 -05:00
|
|
|
|
2019-04-14 22:05:03 -04:00
|
|
|
* Upgrade to 3.0.9.
|
2019-01-25 01:49:59 -05:00
|
|
|
See https://github.com/ruby/csv/blob/master/NEWS.md.
|
|
|
|
|
2019-04-08 21:27:36 -04:00
|
|
|
Date::
|
|
|
|
|
2019-05-31 06:12:24 -04:00
|
|
|
* Date.jisx0301, Date#jisx0301, and Date.parse support the new Japanese
|
|
|
|
era. [Feature #15742]
|
2019-04-08 21:27:36 -04:00
|
|
|
|
2019-06-01 11:42:11 -04:00
|
|
|
Delegator::
|
2019-05-11 19:32:00 -04:00
|
|
|
|
|
|
|
* Object#DelegateClass accepts a block and module_evals it in the context
|
|
|
|
of the returned class, similar to Class.new and Struct.new.
|
|
|
|
|
2019-03-28 07:50:19 -04:00
|
|
|
ERB::
|
|
|
|
|
2019-03-28 08:35:20 -04:00
|
|
|
* Prohibit marshaling ERB instance.
|
2019-03-28 07:50:19 -04:00
|
|
|
|
2019-04-25 11:53:36 -04:00
|
|
|
IRB::
|
|
|
|
|
2019-06-01 11:42:11 -04:00
|
|
|
* Introduce syntax highlight inspired by pry.gem to Binding#irb source lines,
|
2019-05-25 00:21:22 -04:00
|
|
|
REPL input, and inspect output of some core-class objects.
|
2019-04-25 11:53:36 -04:00
|
|
|
|
2019-07-15 03:25:50 -04:00
|
|
|
* Introduce multiline mode by Reline.
|
|
|
|
|
|
|
|
* Show documents when completion.
|
|
|
|
|
|
|
|
* Enable auto indent and save/load history by default.
|
|
|
|
|
2019-04-15 19:58:06 -04:00
|
|
|
Net::IMAP::
|
|
|
|
|
|
|
|
* Add Server Name Indication (SNI) support. [Feature #15594]
|
|
|
|
|
2019-07-14 04:22:13 -04:00
|
|
|
open-uri::
|
|
|
|
|
|
|
|
* Warn open-uri's "open" method at Kernel.
|
2019-07-14 20:36:52 -04:00
|
|
|
Use URI.open instead. [Misc #15893]
|
|
|
|
|
|
|
|
* The default charset of text/* media type is UTF-8 instead of ISO-8859-1.
|
|
|
|
[Bug #15933]
|
2019-07-14 04:22:13 -04:00
|
|
|
|
2019-07-15 02:45:51 -04:00
|
|
|
Pathname::
|
2019-07-14 04:44:33 -04:00
|
|
|
|
|
|
|
* Delegates 3 arguments from Pathname.glob to Dir.glob to
|
|
|
|
accept base: keyword.
|
|
|
|
|
2019-06-20 02:59:20 -04:00
|
|
|
Racc::
|
|
|
|
|
2019-06-20 04:40:08 -04:00
|
|
|
* Merge 1.4.15 from upstream repository and added cli of racc.
|
2019-06-20 02:59:20 -04:00
|
|
|
|
2019-07-15 02:49:59 -04:00
|
|
|
Reline::
|
|
|
|
|
|
|
|
* New stdlib that is compatible with readline stdlib by pure Ruby and also
|
|
|
|
has a multiline mode.
|
|
|
|
|
2019-02-02 01:38:09 -05:00
|
|
|
RSS::
|
2019-01-25 01:35:04 -05:00
|
|
|
|
|
|
|
* Upgrade to RSS 0.2.8.
|
|
|
|
See https://github.com/ruby/rss/blob/master/NEWS.md.
|
|
|
|
|
2019-04-17 09:20:02 -04:00
|
|
|
RubyGems::
|
|
|
|
|
|
|
|
* Upgrade to RubyGems 3.1.0.pre1
|
|
|
|
Bundled from https://github.com/rubygems/rubygems/commit/97b264f0fa248c864b6ee9a23d3ff1cdd217dddb
|
|
|
|
|
2018-11-05 02:01:47 -05:00
|
|
|
=== Compatibility issues (excluding feature bug fixes)
|
2018-11-02 19:07:56 -04:00
|
|
|
|
2018-10-17 07:35:28 -04:00
|
|
|
=== Stdlib compatibility issues (excluding feature bug fixes)
|
2017-12-28 15:09:24 -05:00
|
|
|
|
2019-03-11 09:00:31 -04:00
|
|
|
profile.rb, Profiler__::
|
|
|
|
|
|
|
|
* Removed from standard library. No one maintains it from Ruby 2.0.0.
|
|
|
|
|
2018-10-17 07:35:28 -04:00
|
|
|
=== C API updates
|
2017-12-28 15:09:24 -05:00
|
|
|
|
2018-10-17 07:35:28 -04:00
|
|
|
=== Implementation improvements
|
2017-12-28 15:09:24 -05:00
|
|
|
|
2019-07-01 00:24:39 -04:00
|
|
|
Fiber::
|
|
|
|
|
|
|
|
* Allow selecting different coroutine implementation by using
|
|
|
|
`--with-coroutine=`, e.g.
|
|
|
|
|
|
|
|
./confgure --with-coroutine=ucontext
|
|
|
|
./confgure --with-coroutine=copy
|
|
|
|
|
|
|
|
* Replace previous stack cache with fiber pool cache. The fiber pool
|
|
|
|
allocates many stacks in a single memory region. Stack allocation
|
|
|
|
becomes O(log N) and fiber creation is amortized O(1). Around 10x
|
|
|
|
performance improvement was measured in micro-benchmarks.
|
|
|
|
|
2019-06-23 09:28:23 -04:00
|
|
|
Thread::
|
|
|
|
|
|
|
|
* VM stack memory allocation is now combined with native thread stack,
|
|
|
|
improving thread allocation performance and reducing allocation related
|
|
|
|
failures. ~10x performance improvement was measured in micro-benchmarks.
|
|
|
|
|
2019-03-17 01:28:54 -04:00
|
|
|
JIT::
|
|
|
|
|
2019-04-17 05:24:48 -04:00
|
|
|
* JIT-ed code is recompiled to less-optimized code when an optimization assumption is invalidated.
|
|
|
|
|
|
|
|
* Method inlining is performed when a method is considered as pure.
|
2019-04-21 11:04:06 -04:00
|
|
|
This optimization is still experimental and many methods are NOT considered as pure yet.
|
2019-04-17 05:24:48 -04:00
|
|
|
|
2019-04-09 09:08:30 -04:00
|
|
|
* Default value of +--jit-max-cache+ is changed from 1,000 to 100
|
2019-03-17 01:28:54 -04:00
|
|
|
|
2019-04-09 09:08:30 -04:00
|
|
|
* Default value of +--jit-min-calls+ is changed from 5 to 10,000
|
2019-03-17 01:28:54 -04:00
|
|
|
|
2018-10-17 07:35:28 -04:00
|
|
|
=== Miscellaneous changes
|
2019-01-10 03:22:23 -05:00
|
|
|
|
2019-06-30 11:47:55 -04:00
|
|
|
* Support for IA64 architecture has been removed. Hardware for testing was
|
2019-06-23 09:28:23 -04:00
|
|
|
difficult to find, native fiber code is difficult to implement, and it added
|
|
|
|
non-trivial complexity to the interpreter. [Feature #15894]
|
|
|
|
|
2019-01-10 03:22:23 -05:00
|
|
|
* Require compilers to support C99 [Misc #15347]
|
2019-04-22 08:23:37 -04:00
|
|
|
|
2019-01-10 03:22:23 -05:00
|
|
|
* Details of our dialect: https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/C99
|
2019-04-22 08:23:37 -04:00
|
|
|
|
2019-08-12 06:13:30 -04:00
|
|
|
* Ruby's upstream repository is changed from Subversion to Git.
|
2019-04-22 08:23:37 -04:00
|
|
|
|
2019-04-23 09:26:40 -04:00
|
|
|
* https://git.ruby-lang.org/ruby.git
|
|
|
|
|
2019-04-22 08:23:37 -04:00
|
|
|
* RUBY_REVISION class is changed from Integer to String.
|
|
|
|
|
|
|
|
* RUBY_DESCRIPTION includes Git revision instead of Subversion's one.
|