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
|
|
|
|
2015-09-27 02:44:02 -04:00
|
|
|
* frozen-string-literal pragma:
|
2015-12-07 22:08:33 -05:00
|
|
|
|
2015-09-27 02:44:02 -04:00
|
|
|
* new pragma, frozen-string-literal has been experimentally introduced.
|
2015-12-08 10:05:13 -05:00
|
|
|
[Feature #8976]
|
2015-09-27 02:47:00 -04:00
|
|
|
* besides, --enable/--disable=frozen-string-literal options also have
|
2015-12-08 10:05:13 -05:00
|
|
|
been introduced. [Feature #8976]
|
2015-12-09 12:02:02 -05:00
|
|
|
* command line options --debug or --debug=frozen-string-literal enable
|
2015-11-25 02:39:14 -05:00
|
|
|
additional debugging mode which shows created location with at frozen
|
2015-12-09 12:02:02 -05:00
|
|
|
object error (RuntimeError).
|
2015-11-25 02:39:14 -05:00
|
|
|
[Feature #11725]
|
2015-09-27 02:44:02 -04:00
|
|
|
|
2015-10-22 02:30:12 -04:00
|
|
|
* safe navigation operator:
|
|
|
|
|
2015-11-05 22:39:23 -05:00
|
|
|
* new method call syntax, `object&.foo', method #foo is called on
|
2015-10-22 02:30:12 -04:00
|
|
|
`object' if it is not nil.
|
2015-10-23 12:53:41 -04:00
|
|
|
this is similar to `try!' in Active Support, except:
|
2015-10-22 02:30:12 -04:00
|
|
|
* method name is syntactically required
|
|
|
|
obj.try! {} # valid
|
2015-11-05 22:39:23 -05:00
|
|
|
obj&. {} # syntax error
|
2015-10-23 12:53:41 -04:00
|
|
|
* arguments are evaluated only if a call is made:
|
|
|
|
obj.try!(:foo, bar()) # bar() is always evaluated
|
2015-11-05 22:39:23 -05:00
|
|
|
obj&.foo(bar()) # bar() is conditionally evaluated
|
2015-10-22 02:30:12 -04:00
|
|
|
* attribute assignment is valid
|
2015-11-05 22:39:23 -05:00
|
|
|
obj&.attr += 1
|
2015-12-08 10:05:13 -05:00
|
|
|
[Feature #11537]
|
2015-10-22 02:30:12 -04:00
|
|
|
|
2015-12-07 22:08:33 -05:00
|
|
|
* indented here document:
|
|
|
|
|
|
|
|
* new string literal, here document starts with `<<~`.
|
|
|
|
refer doc/syntax/literals.rdoc for more details.
|
2015-12-08 10:05:13 -05:00
|
|
|
[Feature #9098]
|
2015-12-07 22:08:33 -05:00
|
|
|
|
2013-02-23 09:23:39 -05:00
|
|
|
=== Core classes updates (outstanding ones only)
|
2013-03-10 14:23:00 -04:00
|
|
|
|
2015-07-29 23:32:46 -04:00
|
|
|
* ARGF
|
|
|
|
|
|
|
|
* ARGF.read_nonblock supports `exception: false' like IO#read_nonblock.
|
|
|
|
[Feature #11358]
|
|
|
|
|
2015-06-21 10:53:28 -04:00
|
|
|
* Array
|
|
|
|
|
|
|
|
* Array#bsearch_index [Feature #10730]
|
2015-11-09 07:27:26 -05:00
|
|
|
* Array#dig [Feature #11643]
|
2015-06-21 10:53:28 -04:00
|
|
|
|
2015-12-15 15:19:35 -05:00
|
|
|
* Comparable
|
|
|
|
|
|
|
|
* Comparable#== no longer rescues exceptions [Feature #7688]
|
|
|
|
|
2015-12-17 08:50:38 -05:00
|
|
|
* Encoding
|
|
|
|
|
|
|
|
* new Encoding::IBM037 (alias ebcdic-cp-us; dummy)
|
|
|
|
|
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-12-08 07:31:28 -05:00
|
|
|
* Enumerator::Lazy
|
|
|
|
|
|
|
|
* Enumerator::Lazy#grep_v [Feature #11773]
|
|
|
|
|
2015-09-18 07:11:14 -04:00
|
|
|
* File
|
|
|
|
|
|
|
|
* File.mkfifo [Feature #11536]
|
2015-11-08 02:27:25 -05:00
|
|
|
* Add File::TMPFILE corresponding to O_TMPFILE
|
2015-09-18 07:11:14 -04:00
|
|
|
|
2015-06-21 10:53:28 -04:00
|
|
|
* Hash
|
|
|
|
|
|
|
|
* Hash#fetch_values [Feature #10017]
|
2015-11-09 07:27:26 -05:00
|
|
|
* Hash#dig [Feature #11643]
|
2015-11-10 00:02:02 -05:00
|
|
|
* Hash#<=, Hash#<, Hash#>=, Hash#> [Feature #10984]
|
2015-11-10 02:57:17 -05:00
|
|
|
* Hash#to_proc [Feature #11653]
|
2015-06-21 10:53:28 -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-07-28 21:39:14 -04:00
|
|
|
* new option parameter `flags' is added.
|
|
|
|
this parameter is bitwise-ORed to oflags generated by normal mode argument.
|
|
|
|
[Feature #11253]
|
|
|
|
|
2015-12-16 09:48:09 -05:00
|
|
|
* IO#advise no longer raises Errno::ENOSYS in cases where it was
|
2015-12-16 02:16:00 -05:00
|
|
|
detected at build time but not available at runtime. [Feature #11806]
|
|
|
|
|
2015-10-22 05:58:01 -04:00
|
|
|
* Kernel
|
|
|
|
|
|
|
|
* Kernel#loop, when stopped by a StopIteration exception, returns
|
2015-10-27 09:01:19 -04:00
|
|
|
what the enumerator has returned instead of nil. [Feature #11498]
|
2015-10-22 05:58:01 -04:00
|
|
|
|
2015-07-30 00:20:00 -04:00
|
|
|
* Module
|
|
|
|
* Module#deprecate_constant [Feature #11398]
|
|
|
|
|
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
|
|
|
|
2015-07-29 23:32:46 -04:00
|
|
|
* Numeric
|
|
|
|
|
|
|
|
* Numeric#positive? and Numeric#negative? are added, which return
|
|
|
|
true when the receiver is positive and negative respectively.
|
|
|
|
[Feature #11151]
|
|
|
|
|
2015-10-05 17:34:24 -04:00
|
|
|
* Proc
|
|
|
|
|
|
|
|
* Proc#call (and also #[], #===, #yield) are optimized.
|
2015-11-16 21:22:29 -05:00
|
|
|
Backtrace doesn't show each method (show block lines directly).
|
|
|
|
TracePoint also ignores these calls. [Feature #11569]
|
2015-10-05 17:34:24 -04:00
|
|
|
|
2015-11-20 19:46:53 -05:00
|
|
|
* Queue (Thread::Queue)
|
|
|
|
|
|
|
|
* Queue#close is added to notice a termination. [Feature #10600]
|
|
|
|
|
2015-11-17 01:34:52 -05:00
|
|
|
* Regexp/String: Updated Unicode version from 7.0.0 to 8.0.0
|
|
|
|
|
2015-12-08 08:58:50 -05:00
|
|
|
* RubyVM::InstructionSequence
|
|
|
|
* add the following methods as a primitive tool of iseq loader.
|
|
|
|
See sample/iseq_loader.rb for usage.
|
2015-12-08 23:51:29 -05:00
|
|
|
Note that loader does not have verifier so it is easy to cause
|
|
|
|
critical problem by loading modified/broken binary data.
|
|
|
|
See [Feature #11788] for more details. (experimental feature)
|
2015-12-09 10:29:31 -05:00
|
|
|
* RubyVM::InstructionSequence#to_binary(extra_data = nil)
|
|
|
|
* RubyVM::InstructionSequence.load_from_binary(binary)
|
|
|
|
* RubyVM::InstructionSequence.load_from_binary_extra_data(binary)
|
2015-12-08 08:58:50 -05:00
|
|
|
|
2015-12-07 11:30:31 -05:00
|
|
|
* String
|
|
|
|
|
2015-12-08 09:03:44 -05:00
|
|
|
* String#+@ and String#-@ are added to get mutable/frozen strings.
|
2015-12-07 11:30:31 -05:00
|
|
|
[Feature #11782]
|
|
|
|
|
2015-12-08 11:48:52 -05:00
|
|
|
* String.new now accepts new option parameter `encoding'.
|
2015-12-09 09:14:40 -05:00
|
|
|
[Feature #11785]
|
2015-12-08 11:48:52 -05:00
|
|
|
|
2015-11-16 04:21:56 -05:00
|
|
|
* Struct
|
2015-11-23 18:30:09 -05:00
|
|
|
* Struct#dig [Feature #11688]
|
2015-11-16 04:21:56 -05:00
|
|
|
|
2015-07-29 23:32:46 -04:00
|
|
|
* Thread
|
|
|
|
* Thread#name, Thread#name= are added to handle thread names [Feature #11251]
|
|
|
|
|
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-12-10 13:57:08 -05:00
|
|
|
* Array#inspect doesn't raise error even if its content returns
|
|
|
|
a string which is not compatible with Encoding.default_external
|
|
|
|
as inspected result. [Feature #11801]
|
|
|
|
|
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-12-09 09:14:40 -05:00
|
|
|
BY_HANDLE_FILE_INFORMATION.nFileIndexHigh/Low. [Feature #11216]
|
2015-06-13 07:50:21 -04:00
|
|
|
|
2015-12-10 13:57:08 -05:00
|
|
|
* Hash
|
|
|
|
* Hash#inspect doesn't raise error even if its content returns
|
|
|
|
a string which is not compatible with Encoding.default_external
|
|
|
|
as inspected result. [Feature #11801]
|
|
|
|
|
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-08-16 22:57:39 -04:00
|
|
|
* IO#each_codepoint raises an exception at incomplete character
|
|
|
|
before EOF when conversion takes place. [Bug #11444]
|
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-11-17 10:25:07 -05:00
|
|
|
* Logger
|
|
|
|
|
|
|
|
* Logger#level= now supports symbol and string levels such as :debug, :info,
|
|
|
|
:warn, :error, :fatal (case insensitive) [Feature #11695]
|
|
|
|
* Logger#reopen is added to reopen a log device. [Feature #11696]
|
|
|
|
|
2015-12-17 08:50:38 -05:00
|
|
|
* io/wait
|
|
|
|
* IO#wait_readable no longer checks FIONREAD, it may be used for
|
|
|
|
non-bytestream IO such as listen sockets.
|
|
|
|
|
|
|
|
* Net::FTP
|
|
|
|
* Net::FTP#mlst is added.
|
|
|
|
* Net::FTP#mlsd is added.
|
|
|
|
|
2015-12-12 09:01:56 -05:00
|
|
|
* nkf
|
|
|
|
* Merge nkf 2.1.4.
|
|
|
|
|
2015-04-10 06:38:13 -04:00
|
|
|
* ObjectSpace (objspace)
|
2015-08-21 07:30:24 -04:00
|
|
|
* ObjectSpace.count_symbols is added.
|
2015-04-10 06:38:13 -04:00
|
|
|
* 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-12-17 08:50:38 -05:00
|
|
|
* Socket
|
|
|
|
* 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-04-15 16:17:19 -04:00
|
|
|
|
2015-12-18 02:54:33 -05:00
|
|
|
* StringIO
|
|
|
|
* In read-only mode, StringIO#set_encoding no longer sets the encoding
|
|
|
|
of its buffer string. Setting the encoding of the string directly
|
2015-12-18 03:16:02 -05:00
|
|
|
without StringIO#set_encoding may cause unpredictable behavior now.
|
|
|
|
[Bug #11827]
|
2015-12-18 02:54:33 -05:00
|
|
|
|
2015-07-13 06:11:38 -04:00
|
|
|
* timeout
|
|
|
|
* Object#timeout is now warned as deprecated when called.
|
|
|
|
|
2013-02-23 09:23:39 -05:00
|
|
|
=== Stdlib compatibility issues (excluding feature bug fixes)
|
2013-04-25 01:27:41 -04:00
|
|
|
|
2015-12-11 11:31:24 -05:00
|
|
|
* ext/coverage/coverage.c
|
|
|
|
* Coverage.peek_result: new method to allow coverage to be captured without
|
|
|
|
stopping the coverage tool. [Feature #10816]
|
2015-01-02 19:01:49 -05:00
|
|
|
|
2015-12-11 11:31:24 -05:00
|
|
|
* Fiddle
|
|
|
|
* Fiddle::Function#call releases the GVL. [Feature #11607]
|
2015-01-03 19:21:08 -05:00
|
|
|
|
2015-02-13 07:31:30 -05:00
|
|
|
* lib/base64.rb
|
2015-12-08 10:05:37 -05:00
|
|
|
* Base64.urlsafe_encode64: added a "padding" option to suppress
|
2015-12-09 09:14:40 -05:00
|
|
|
the padding character ("="). [Feature #10740]
|
2015-12-08 10:05:37 -05:00
|
|
|
* Base64.urlsafe_decode64: now it accepts not only correctly-padded
|
2015-12-09 09:14:40 -05:00
|
|
|
input but also unpadded input. [Feature #10740]
|
2015-02-13 07:31:30 -05:00
|
|
|
|
2015-12-11 11:31:24 -05:00
|
|
|
* lib/drb/drb.rb
|
|
|
|
* removed unused argument. https://github.com/ruby/ruby/pull/515
|
|
|
|
|
2015-03-05 18:45:42 -05:00
|
|
|
* lib/matrix.rb
|
2015-12-08 10:05:37 -05:00
|
|
|
* Add Vector#round. https://github.com/ruby/ruby/pull/802
|
2015-03-05 18:45:42 -05:00
|
|
|
|
2015-12-11 11:31:24 -05:00
|
|
|
* lib/webrick/utils.rb
|
|
|
|
* removed unused argument. https://github.com/ruby/ruby/pull/356
|
|
|
|
|
|
|
|
* Net::FTP
|
|
|
|
* Connections are in passive mode per default now. The default mode can
|
|
|
|
be changed by Net::FTP.default_passive=. [Feature #11612]
|
2015-02-13 10:53:47 -05:00
|
|
|
|
2015-11-07 11:48:49 -05:00
|
|
|
* Net::HTTP
|
|
|
|
* default value of Net::HTTP#open_timeout is now 60 (was nil).
|
|
|
|
|
2015-05-22 03:48:39 -04:00
|
|
|
* Net::Telnet
|
|
|
|
* Net::Telnet is extracted to net-telnet gem. It's unmaintain code.
|
2015-12-09 09:14:40 -05:00
|
|
|
[Feature #11083]
|
2015-05-22 03:48:39 -04:00
|
|
|
|
2015-12-11 11:31:24 -05:00
|
|
|
* Rake
|
|
|
|
* Rake is removed from stdlib. [Feature #11025]
|
2015-11-10 22:48:45 -05:00
|
|
|
|
2015-12-22 08:09:06 -05:00
|
|
|
* RDoc
|
|
|
|
* Updated to RDoc 4.2.1. For full release notes see:
|
|
|
|
|
|
|
|
https://github.com/rdoc/rdoc/blob/master/History.rdoc#421--2015-12-22
|
|
|
|
|
2015-12-10 21:58:52 -05:00
|
|
|
* RubyGems
|
|
|
|
* Updated to RubyGems 2.5.1. For full release notes see:
|
|
|
|
|
|
|
|
http://docs.seattlerb.org/rubygems/History_txt.html#label-2.5.0+-2F+2015-11-03
|
|
|
|
and
|
|
|
|
http://docs.seattlerb.org/rubygems/History_txt.html#label-2.5.1+-2F+2015-12-10
|
|
|
|
|
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,
|
2015-06-21 10:48:48 -04:00
|
|
|
an ArgumentError is raised. [Feature #5455]
|
2015-06-19 12:24:33 -04:00
|
|
|
|
2013-02-23 09:23:39 -05:00
|
|
|
=== C API updates
|
2013-11-22 23:46:34 -05:00
|
|
|
|
2015-06-27 23:07:37 -04: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.
|
|
|
|
|
2015-11-09 21:59:47 -05:00
|
|
|
* rb_timespec_now() is added to fetch current datetime as struct timespec.
|
2015-11-11 08:28:33 -05:00
|
|
|
[Feature #11558]
|
2015-11-09 21:59:47 -05:00
|
|
|
|
|
|
|
* rb_time_timespec_new() is added to create a time object with epoch,
|
2015-11-11 08:28:33 -05:00
|
|
|
nanosecond, and UTC/localtime/time offset arguments. [Feature #11558]
|
2015-11-09 21:59:47 -05:00
|
|
|
|
introduce rb_autoload_str to replace rb_autoload
rb_autoload_str may be safer by preventing premature GC. It
can also be more efficient by passing a pre-frozen string that
can be deduped using rb_fstring. Common autoload callers (e.g.
rubygems, rdoc) already use string literals as the file
argument.
There seems to be no reason to expose rb_autoload_str to the
public C API since autoload is not performance-critical.
Applications may declare autoloads in Ruby code or via
rb_funcall; so merely deprecate rb_autoload without exposing
rb_autoload_str to new users.
Running: valgrind -v ruby -rrdoc -rubygems -e exit
shows a minor memory reduction (32-bit userspace)
before:
in use at exit: 1,600,621 bytes in 28,819 blocks
total heap usage: 55,786 allocs, 26,967 frees, 6,693,790 bytes allocated
after:
in use at exit: 1,599,778 bytes in 28,789 blocks
total heap usage: 55,739 allocs, 26,950 frees, 6,692,973 bytes allocated
* include/ruby/intern.h (rb_autoload): deprecate
* internal.h (rb_autoload_str): declare
* load.c (rb_mod_autoload): use rb_autoload_str
* variable.c (rb_autoload): become compatibility wrapper
(rb_autoload_str): hoisted out from old rb_autoload
[ruby-core:71369] [Feature #11664]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52909 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-12-06 07:28:09 -05:00
|
|
|
* rb_autoload() deprecated, use rb_funcall() instead. [Feature #11664]
|
|
|
|
|
2014-09-18 16:37:52 -04:00
|
|
|
=== Build system updates
|
|
|
|
|
2014-11-25 03:07:44 -05:00
|
|
|
=== Implementation changes
|
2015-11-22 22:54:42 -05:00
|
|
|
|
2015-10-17 21:18:55 -04:00
|
|
|
* OS/2 is no longer supported
|
2015-11-22 22:54:42 -05:00
|
|
|
|
2015-11-23 19:17:11 -05:00
|
|
|
* BeOS is no longer supported
|
|
|
|
|
2015-10-17 22:11:23 -04:00
|
|
|
* Borland-C is no longer supported
|
2015-11-22 22:54:42 -05:00
|
|
|
|
|
|
|
* Haiku now stable and best effort
|