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-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
|
|
|
|
|
2018-10-17 07:35:28 -04:00
|
|
|
=== Core classes updates (outstanding ones only)
|
2017-12-28 15:09:24 -05:00
|
|
|
|
2019-02-07 03:14:10 -05:00
|
|
|
Enumerable::
|
|
|
|
|
|
|
|
New method::
|
|
|
|
|
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-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-03-05 22:15:06 -05:00
|
|
|
Regexp/String::
|
|
|
|
|
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-05-23 09:47:55 -04:00
|
|
|
Time::
|
|
|
|
|
|
|
|
* Added Time#ceil method. [Feature #15772]
|
|
|
|
|
|
|
|
* Added Time#floor method. [Feature #15653]
|
|
|
|
|
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-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::
|
|
|
|
|
|
|
|
* Date.jisx0301, Date#jisx0301, and Date.parse provisionally support the
|
|
|
|
new Japanese era as an informal extension, until the new JIS X 0301 is
|
|
|
|
issued. [Feature #15742]
|
|
|
|
|
2019-05-11 19:32:00 -04:00
|
|
|
Delegate::
|
|
|
|
|
|
|
|
* 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-05-25 00:21:22 -04:00
|
|
|
* Introduce syntax highlight inspired by pry.gem to binding.irb source lines,
|
|
|
|
REPL input, and inspect output of some core-class objects.
|
2019-04-25 11:53:36 -04:00
|
|
|
|
2019-04-15 19:58:06 -04:00
|
|
|
Net::IMAP::
|
|
|
|
|
|
|
|
* Add Server Name Indication (SNI) support. [Feature #15594]
|
|
|
|
|
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-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
|
|
|
|
2019-04-19 21:19:47 -04:00
|
|
|
GC::
|
|
|
|
|
|
|
|
* New `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
|
|
|
|
|
2018-10-17 07:35:28 -04:00
|
|
|
=== Miscellaneous changes
|
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
|
|
|
|
|
|
|
* Upstream repository is changed from Subversion to Git.
|
|
|
|
|
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.
|