2013-02-24 19:44:08 -05:00
|
|
|
# -*- rdoc -*-
|
|
|
|
|
2014-12-25 08:53:36 -05:00
|
|
|
= NEWS for Ruby 2.3.0
|
2008-12-12 04:46:28 -05: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 08:53:36 -05:00
|
|
|
== Changes since the 2.2.0 release
|
2010-09-15 12:14:05 -04:00
|
|
|
|
2013-02-23 09:23:39 -05:00
|
|
|
=== Language changes
|
2013-08-01 13:33:29 -04:00
|
|
|
|
2013-02-23 09:23:39 -05:00
|
|
|
=== Core classes updates (outstanding ones only)
|
2013-03-10 14:23:00 -04:00
|
|
|
|
2015-05-14 06:42:42 -04:00
|
|
|
* Enumerable
|
|
|
|
|
2015-05-16 06:45:03 -04:00
|
|
|
* Enumerable#grep_v is added as inverse version of Enumerable#grep.
|
2015-06-14 04:53:27 -04:00
|
|
|
[Feature #11049]
|
2015-06-14 04:54:19 -04:00
|
|
|
* Enumerable#chunk_while [Feature #10769]
|
2015-05-14 06:42:42 -04:00
|
|
|
|
2015-05-17 02:01:47 -04:00
|
|
|
* Numeric
|
|
|
|
|
|
|
|
* Numeric#positive? and Numeric#negative? are added, which return
|
|
|
|
true when the receiver is positive and negative respectively.
|
2015-06-14 04:53:27 -04:00
|
|
|
[Feature #11151]
|
2015-05-17 02:01:47 -04:00
|
|
|
|
2015-06-12 08:14:06 -04: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 07:53:14 -04:00
|
|
|
* Thread
|
|
|
|
* Thread#name, Thread#name are added to handle thread names [Feature #11251]
|
|
|
|
|
2015-06-18 00:50:33 -04:00
|
|
|
* NameError
|
2015-06-21 10:48:35 -04:00
|
|
|
* NameError#receiver is added to take the receiver object. [Feature #10881]
|
2015-06-18 00:50:33 -04:00
|
|
|
|
2013-02-23 09:23:39 -05:00
|
|
|
=== Core classes compatibility issues (excluding feature bug fixes)
|
2013-03-07 12:54:49 -05:00
|
|
|
|
2015-01-14 20:44:57 -05: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-20 19:22:42 -05:00
|
|
|
block is called. [Feature #10714]
|
2015-01-14 20:44:57 -05:00
|
|
|
|
2015-01-24 22:04:10 -05: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 09:53:24 -04: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 07:50:21 -04:00
|
|
|
* File::Stat
|
2015-06-13 08:02:17 -04:00
|
|
|
* On Windows File::Stat#ino always returned 0, but now returns
|
2015-06-13 07:50:21 -04:00
|
|
|
BY_HANDLE_FILE_INFORMATION.nFileIndexHigh/Low.
|
|
|
|
|
2015-01-15 17:16:30 -05:00
|
|
|
* IO
|
2015-01-20 19:10:45 -05:00
|
|
|
* IO#close doesn't raise when the IO object is closed. [Feature #10718]
|
2015-01-15 17:16:30 -05:00
|
|
|
|
2015-06-19 01:53:41 -04: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 08:22:36 -04:00
|
|
|
* pack/unpack (Array/String)
|
|
|
|
* j and J directives for pointer width integer type. [Feature #11215]
|
|
|
|
|
|
|
|
|
2013-02-23 09:23:39 -05:00
|
|
|
=== Stdlib updates (outstanding ones only)
|
2013-03-11 13:27:03 -04:00
|
|
|
|
2015-03-11 23:03:04 -04:00
|
|
|
* Socket
|
2015-06-15 17:28:00 -04: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-11 23:03:04 -04:00
|
|
|
|
2015-04-10 06:38:13 -04:00
|
|
|
* ObjectSpace (objspace)
|
|
|
|
* ObjectSpace.count_imemo_objects is added.
|
2015-05-28 15:40:04 -04:00
|
|
|
* ObjectSpace.internal_class_of is added.
|
|
|
|
* ObjectSpace.internal_super_of is added.
|
2015-04-10 06:38:13 -04:00
|
|
|
|
2015-03-11 23:03:04 -04: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-11 21:41:51 -04:00
|
|
|
* OpenSSL::SSL::SSLSocket#accept_nonblock and
|
|
|
|
OpenSSL::SSL::SSLSocket#connect_nonblock supports `exception: false`.
|
2015-03-11 23:03:04 -04:00
|
|
|
|
2015-06-14 11:14:46 -04:00
|
|
|
* Pathname
|
|
|
|
* Pathname#descend and Pathname#ascend supported blockless form.
|
|
|
|
[Feature #11052]
|
|
|
|
|
2015-04-15 16:17:19 -04: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 09:23:39 -05:00
|
|
|
=== Stdlib compatibility issues (excluding feature bug fixes)
|
2013-04-25 01:27:41 -04:00
|
|
|
|
2015-01-02 19:01:49 -05:00
|
|
|
* lib/webrick/utils.rb
|
|
|
|
* removed unused argument. https://github.com/ruby/ruby/pull/356
|
|
|
|
|
2015-01-03 19:21:08 -05:00
|
|
|
* lib/drb/drb.rb
|
|
|
|
* removed unused argument. https://github.com/ruby/ruby/pull/515
|
|
|
|
|
2015-02-13 07:31:30 -05: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-05 18:45:42 -05:00
|
|
|
* lib/matrix.rb
|
|
|
|
* Add Vector#round. https://github.com/ruby/ruby/pull/802
|
|
|
|
|
2015-02-13 10:53:47 -05:00
|
|
|
* ext/coverage/coverage.c
|
|
|
|
* Coverage.peek_result: new method to allow coverage to be captured without
|
|
|
|
stopping the coverage tool.
|
|
|
|
|
2015-05-22 03:48:39 -04:00
|
|
|
* Net::Telnet
|
|
|
|
* Net::Telnet is extracted to net-telnet gem. It's unmaintain code.
|
|
|
|
|
|
|
|
* Rake
|
|
|
|
* Rake is removed from stdlib.
|
|
|
|
|
2013-06-13 20:53:37 -04:00
|
|
|
=== Built-in global variables compatibility issues
|
|
|
|
|
2015-06-19 12:24:33 -04:00
|
|
|
* $SAFE
|
|
|
|
* $SAFE=2 and $SAFE=3 are obsolete. If $SAFE is set to 2 or larger,
|
|
|
|
an ArgumentError is raised.
|
|
|
|
|
2013-02-23 09:23:39 -05:00
|
|
|
=== C API updates
|
2013-11-22 23:46:34 -05:00
|
|
|
|
2014-09-18 16:37:52 -04:00
|
|
|
=== Build system updates
|
|
|
|
|
2014-11-25 03:07:44 -05:00
|
|
|
=== Implementation changes
|