2013-02-25 04:44:08 +04:00
|
|
|
# -*- rdoc -*-
|
|
|
|
|
2014-12-25 16:53:36 +03:00
|
|
|
= NEWS for Ruby 2.3.0
|
2008-12-12 12:46:28 +03:00
|
|
|
|
|
|
|
This document is a list of user visible feature changes made between
|
|
|
|
releases except for bug fixes.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2014-12-25 16:53:36 +03:00
|
|
|
== Changes since the 2.2.0 release
|
2010-09-15 20:14:05 +04:00
|
|
|
|
2013-02-23 18:23:39 +04:00
|
|
|
=== Language changes
|
2013-08-01 21:33:29 +04:00
|
|
|
|
2013-02-23 18:23:39 +04:00
|
|
|
=== Core classes updates (outstanding ones only)
|
2013-03-10 22:23:00 +04:00
|
|
|
|
2013-02-23 18:23:39 +04:00
|
|
|
=== Core classes compatibility issues (excluding feature bug fixes)
|
2013-03-07 21:54:49 +04:00
|
|
|
|
2015-01-15 04:44:57 +03:00
|
|
|
* Array
|
|
|
|
* Array#select!, Array#keep_if, Array#reject!, and Array#delete_if
|
|
|
|
no longer changes the receiver array instantly every time the
|
2015-01-21 03:22:42 +03:00
|
|
|
block is called. [Feature #10714]
|
2015-01-15 04:44:57 +03:00
|
|
|
|
2015-01-25 06:04:10 +03:00
|
|
|
* Array#flatten and Array#flatten! no longer try to call #to_ary
|
|
|
|
method on elements beyond the given level. [Bug #10748]
|
|
|
|
|
2015-01-16 01:16:30 +03:00
|
|
|
* IO
|
2015-01-21 03:10:45 +03:00
|
|
|
* IO#close doesn't raise when the IO object is closed. [Feature #10718]
|
2015-01-16 01:16:30 +03:00
|
|
|
|
2013-02-23 18:23:39 +04:00
|
|
|
=== Stdlib updates (outstanding ones only)
|
2013-03-11 21:27:03 +04:00
|
|
|
|
2013-02-23 18:23:39 +04:00
|
|
|
=== Stdlib compatibility issues (excluding feature bug fixes)
|
2013-04-25 09:27:41 +04:00
|
|
|
|
2015-01-03 03:01:49 +03:00
|
|
|
* lib/webrick/utils.rb
|
|
|
|
* removed unused argument. https://github.com/ruby/ruby/pull/356
|
|
|
|
|
2015-01-04 03:21:08 +03:00
|
|
|
* lib/drb/drb.rb
|
|
|
|
* removed unused argument. https://github.com/ruby/ruby/pull/515
|
|
|
|
|
2015-02-13 15:31:30 +03:00
|
|
|
* lib/base64.rb
|
|
|
|
* Base64.urlsafe_encode64: added a "padding" option to suppress
|
|
|
|
the padding character ("=").
|
|
|
|
* Base64.urlsafe_decode64: now it accepts not only correctly-padded
|
|
|
|
input but also unpadded input.
|
|
|
|
|
2013-06-14 04:53:37 +04:00
|
|
|
=== Built-in global variables compatibility issues
|
|
|
|
|
2013-02-23 18:23:39 +04:00
|
|
|
=== C API updates
|
2013-11-23 08:46:34 +04:00
|
|
|
|
2014-09-19 00:37:52 +04:00
|
|
|
=== Build system updates
|
|
|
|
|
2014-11-25 11:07:44 +03:00
|
|
|
=== Implementation changes
|