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
|
|
|
|
2015-06-21 17:53:28 +03:00
|
|
|
* Array
|
|
|
|
|
|
|
|
* Array#bsearch_index [Feature #10730]
|
|
|
|
|
2015-05-14 13:42:42 +03:00
|
|
|
* Enumerable
|
|
|
|
|
2015-05-16 13:45:03 +03:00
|
|
|
* Enumerable#grep_v is added as inverse version of Enumerable#grep.
|
2015-06-14 11:53:27 +03:00
|
|
|
[Feature #11049]
|
2015-06-14 11:54:19 +03:00
|
|
|
* Enumerable#chunk_while [Feature #10769]
|
2015-05-14 13:42:42 +03:00
|
|
|
|
2015-06-21 17:53:28 +03:00
|
|
|
* Hash
|
|
|
|
|
|
|
|
* Hash#fetch_values [Feature #10017]
|
|
|
|
|
2015-05-17 09:01:47 +03:00
|
|
|
* Numeric
|
|
|
|
|
|
|
|
* Numeric#positive? and Numeric#negative? are added, which return
|
|
|
|
true when the receiver is positive and negative respectively.
|
2015-06-14 11:53:27 +03:00
|
|
|
[Feature #11151]
|
2015-05-17 09:01:47 +03:00
|
|
|
|
2015-06-12 15:14:06 +03:00
|
|
|
* IO
|
|
|
|
|
|
|
|
* new mode flag File::SHARE_DELETE is available.
|
|
|
|
this flag means to permit deleting opened file on Windows, but currently
|
|
|
|
this affect only files opened as binary. [Feature #11218]
|
|
|
|
|
2015-06-13 14:53:14 +03:00
|
|
|
* Thread
|
2015-06-21 17:55:59 +03:00
|
|
|
* Thread#name, Thread#name= are added to handle thread names [Feature #11251]
|
2015-06-13 14:53:14 +03:00
|
|
|
|
2015-06-18 07:50:33 +03:00
|
|
|
* NameError
|
2015-06-21 17:48:35 +03:00
|
|
|
* NameError#receiver is added to take the receiver object. [Feature #10881]
|
2015-06-18 07:50:33 +03: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-04-06 16:53:24 +03:00
|
|
|
* Enumerable
|
|
|
|
* Enumerable#chunk and Enumerable#slice_before no longer takes the
|
|
|
|
initial_state argument. [Feature #10958]
|
|
|
|
Use a local variable instead to maintain a state.
|
|
|
|
|
2015-06-13 14:50:21 +03:00
|
|
|
* File::Stat
|
2015-06-13 15:02:17 +03:00
|
|
|
* On Windows File::Stat#ino always returned 0, but now returns
|
2015-06-13 14:50:21 +03:00
|
|
|
BY_HANDLE_FILE_INFORMATION.nFileIndexHigh/Low.
|
|
|
|
|
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
|
|
|
|
2015-06-19 08:53:41 +03:00
|
|
|
* Module
|
|
|
|
* Module#define_method and Object.define_singleton_method now
|
|
|
|
require method body, Proc, Method, or a block, and raise
|
|
|
|
ArgumentError if no block is given directly. [Bug #11283]
|
|
|
|
|
2015-06-12 15:22:36 +03:00
|
|
|
* pack/unpack (Array/String)
|
|
|
|
* j and J directives for pointer width integer type. [Feature #11215]
|
|
|
|
|
|
|
|
|
2013-02-23 18:23:39 +04:00
|
|
|
=== Stdlib updates (outstanding ones only)
|
2013-03-11 21:27:03 +04:00
|
|
|
|
2015-03-12 06:03:04 +03:00
|
|
|
* Socket
|
2015-06-16 00:28:00 +03:00
|
|
|
* Socket#connect_nonblock, Socket#accept_nonblock,
|
|
|
|
TCPServer#accept_nonblock, UNIXServer#accept_nonblock,
|
|
|
|
BasicSocket#recv_nonblock, BasicSocket#recvmsg_nonblock,
|
|
|
|
BasicSocket#sendmsg_nonblock all support `exception :false` to return
|
|
|
|
:wait_readable or :wait_writable symbols instead of raising
|
|
|
|
IO::WaitReadable or IO::WaitWritable exceptions
|
|
|
|
* BasicSocket#recv and BasicSocket#recv_nonblock allow an output
|
|
|
|
String buffer argument like IO#read and IO#read_nonblock to reduce
|
|
|
|
GC overhead
|
2015-03-12 06:03:04 +03:00
|
|
|
|
2015-04-10 13:38:13 +03:00
|
|
|
* ObjectSpace (objspace)
|
|
|
|
* ObjectSpace.count_imemo_objects is added.
|
2015-05-28 22:40:04 +03:00
|
|
|
* ObjectSpace.internal_class_of is added.
|
|
|
|
* ObjectSpace.internal_super_of is added.
|
2015-04-10 13:38:13 +03:00
|
|
|
|
2015-03-12 06:03:04 +03:00
|
|
|
* OpenSSL
|
connect_nonblock supports "exception: false"
This is for consistency with accept_nonblock arguments and gives a
minor speedup from avoiding exceptions.
[ruby-core:68838] [Feature #11024]
* ext/openssl/ossl_ssl.c (ossl_ssl_connect_nonblock):
support `exception: false'
* (get_no_exception): move function location
* ext/socket/socket.c (sock_connect_nonblock):
support `exception: false'
* test/openssl/test_pair.rb (test_connect_accept_nonblock_no_exception):
test `exception: false' on connect,
rename from `test_accept_nonblock_no_exception'
* test/socket/test_nonblock.rb (test_connect_nonblock_no_exception):
new test
Benchmark results:
default 0.050000 0.100000 0.150000 ( 0.151307)
exception: false 0.030000 0.080000 0.110000 ( 0.108840)
----------------------------8<-----------------------
require 'socket'
require 'benchmark'
require 'io/wait'
require 'tmpdir'
host = '127.0.0.1'
serv = TCPServer.new(host, 0) # UNIX sockets may not hit EINPROGRESS
nr = 5000 # few iterations to avoid running out of ports
addr = serv.getsockname
pid = fork do
begin
serv.accept.close
rescue => e
warn "#$$: #{e.message} (#{e.class})"
end while true
end
at_exit { Process.kill(:TERM, pid) }
serv.close
Benchmark.bmbm do |x|
x.report("default") do
nr.times do
s = Socket.new(:INET, :STREAM)
s.setsockopt(:SOL_SOCKET, :SO_REUSEADDR, 1)
begin
s.connect_nonblock(addr)
rescue IO::WaitWritable
s.wait_writable
end
s.close
end
end
x.report("exception: false") do
nr.times do
s = Socket.new(:INET, :STREAM)
s.setsockopt(:SOL_SOCKET, :SO_REUSEADDR, 1)
case s.connect_nonblock(addr, exception: false)
when :wait_writable
s.wait_writable
end
s.close
end
end
end
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50254 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-04-12 04:41:51 +03:00
|
|
|
* OpenSSL::SSL::SSLSocket#accept_nonblock and
|
|
|
|
OpenSSL::SSL::SSLSocket#connect_nonblock supports `exception: false`.
|
2015-03-12 06:03:04 +03:00
|
|
|
|
2015-06-14 18:14:46 +03:00
|
|
|
* Pathname
|
|
|
|
* Pathname#descend and Pathname#ascend supported blockless form.
|
|
|
|
[Feature #11052]
|
|
|
|
|
2015-04-15 23:17:19 +03:00
|
|
|
* io/wait
|
|
|
|
* IO#wait_readable no longer checks FIONREAD, it may be used for
|
|
|
|
non-bytestream IO such as listen sockets.
|
|
|
|
|
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.
|
|
|
|
|
2015-03-06 02:45:42 +03:00
|
|
|
* lib/matrix.rb
|
|
|
|
* Add Vector#round. https://github.com/ruby/ruby/pull/802
|
|
|
|
|
2015-02-13 18:53:47 +03:00
|
|
|
* ext/coverage/coverage.c
|
|
|
|
* Coverage.peek_result: new method to allow coverage to be captured without
|
|
|
|
stopping the coverage tool.
|
|
|
|
|
2015-05-22 10:48:39 +03:00
|
|
|
* Net::Telnet
|
|
|
|
* Net::Telnet is extracted to net-telnet gem. It's unmaintain code.
|
|
|
|
|
|
|
|
* Rake
|
|
|
|
* Rake is removed from stdlib.
|
|
|
|
|
2013-06-14 04:53:37 +04:00
|
|
|
=== Built-in global variables compatibility issues
|
|
|
|
|
2015-06-19 19:24:33 +03:00
|
|
|
* $SAFE
|
|
|
|
* $SAFE=2 and $SAFE=3 are obsolete. If $SAFE is set to 2 or larger,
|
2015-06-21 17:48:48 +03:00
|
|
|
an ArgumentError is raised. [Feature #5455]
|
2015-06-19 19:24:33 +03:00
|
|
|
|
2013-02-23 18:23:39 +04:00
|
|
|
=== C API updates
|
2013-11-23 08:46:34 +04:00
|
|
|
|
2015-06-28 06:07:37 +03:00
|
|
|
* rb_define_class_id_under() now raises a TypeError exception when the
|
|
|
|
class is already defined but its superclass does not match the given
|
|
|
|
superclass, as well as definitions in ruby level.
|
|
|
|
|
2014-09-19 00:37:52 +04:00
|
|
|
=== Build system updates
|
|
|
|
|
2014-11-25 11:07:44 +03:00
|
|
|
=== Implementation changes
|