2010-02-03 17:52:23 +03:00
|
|
|
# -*- rd -*-
|
2008-12-12 12:46:28 +03:00
|
|
|
= NEWS
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2011-07-10 18:54:03 +04:00
|
|
|
== Changes since the 1.9.3 release
|
2010-09-15 20:14:05 +04:00
|
|
|
|
2010-09-10 12:20:47 +04:00
|
|
|
=== C API updates
|
2011-11-14 20:00:29 +04:00
|
|
|
* NUM2SHORT() and NUM2USHORT() added. They are similar to NUM2INT, but short.
|
|
|
|
|
2010-07-05 11:11:44 +04:00
|
|
|
=== Library updates (outstanding ones only)
|
2011-07-12 18:42:48 +04:00
|
|
|
|
|
|
|
* builtin classes
|
|
|
|
|
2012-03-08 19:30:28 +04:00
|
|
|
* Enumerable
|
|
|
|
* added method:
|
|
|
|
* added Enumerable#lazy method for lazy enumeration.
|
|
|
|
|
2011-07-20 02:17:13 +04:00
|
|
|
* Kernel
|
2012-02-25 11:08:44 +04:00
|
|
|
* added method:
|
|
|
|
* added Kernel#Hash conversion method like Array() or Float().
|
2011-07-20 02:17:13 +04:00
|
|
|
* extended method:
|
|
|
|
* Kernel#warn accepts multiple args in like puts.
|
2011-10-22 13:58:15 +04:00
|
|
|
* incompatible changes:
|
|
|
|
* system() and exec() closes non-standard file descriptors
|
|
|
|
(The default of :close_others option is changed to true by default.)
|
2012-02-13 20:05:00 +04:00
|
|
|
* respond_to? against a protected method now returns false unless
|
|
|
|
the second argument is true.
|
2011-07-20 02:17:13 +04:00
|
|
|
|
2012-03-07 03:38:33 +04:00
|
|
|
* LoadError
|
|
|
|
* added method:
|
|
|
|
* added LoadError#path method to return the file name that could not be
|
|
|
|
loaded.
|
|
|
|
|
2011-07-12 18:42:48 +04:00
|
|
|
* Signal
|
|
|
|
* incompatible changes:
|
|
|
|
* Signal.trap raises ArgumentError when :SEGV, :BUS, :ILL, :FPE, :VTALRM
|
|
|
|
are specified.
|
|
|
|
|
2011-08-26 03:24:33 +04:00
|
|
|
* Time
|
|
|
|
* change return value:
|
|
|
|
* Time#to_s returned encoding defaults to US-ASCII but automatically
|
|
|
|
transcodes to Encoding.default_internal if it is set.
|
|
|
|
|
2011-11-09 08:26:39 +04:00
|
|
|
* Fiber
|
|
|
|
* incompatible changes:
|
|
|
|
* Fiber#resume cannot resume a fiber which invokes "Fiber#transfer".
|
|
|
|
|
2011-09-09 11:48:00 +04:00
|
|
|
* net/imap
|
|
|
|
* new methods:
|
|
|
|
* Net::IMAP.default_port
|
|
|
|
* Net::IMAP.default_imap_port
|
|
|
|
* Net::IMAP.default_tls_port
|
|
|
|
* Net::IMAP.default_ssl_port
|
|
|
|
* Net::IMAP.default_imaps_port
|
|
|
|
|
2011-11-19 16:52:37 +04:00
|
|
|
* pathname
|
|
|
|
* extended method:
|
|
|
|
* Pathname#find returns an enumerator if no block is given.
|
|
|
|
|
2011-10-22 12:50:50 +04:00
|
|
|
* resolv
|
|
|
|
* new methods:
|
|
|
|
* Resolv::DNS#timeouts=
|
|
|
|
* Resolv::DNS::Config#timeouts=
|
|
|
|
|
2012-01-12 22:49:30 +04:00
|
|
|
* shellwords
|
|
|
|
* Shellwords#shellescape() now stringifies the given object using to_s.
|
|
|
|
* Shellwords#shelljoin() accepts non-string objects in the given
|
|
|
|
array, each of which is stringified using to_s.
|
|
|
|
|
2012-03-16 19:20:03 +04:00
|
|
|
* lib/tmpdir.rb
|
2012-03-12 02:37:04 +04:00
|
|
|
* incompatible changes:
|
|
|
|
* Dir.mktmpdir uses FileUtils.remove_entry instead of
|
|
|
|
FileUtils.remove_entry_secure. This means that applications should not
|
|
|
|
change the permission of the created temporary directory to make
|
|
|
|
accessible from other users.
|
|
|
|
|
2012-02-15 05:28:05 +04:00
|
|
|
* zlib
|
|
|
|
* Added support for the new deflate strategies Zlib::RLE and Zlib::FIXED.
|
|
|
|
|
2010-10-28 15:14:05 +04:00
|
|
|
=== Language changes
|
2010-07-05 11:11:44 +04:00
|
|
|
=== Compatibility issues (excluding feature bug fixes)
|
|
|
|
|
2011-07-12 18:42:48 +04:00
|
|
|
* Signal.trap
|
|
|
|
|
|
|
|
See above.
|
2011-10-22 13:58:15 +04:00
|
|
|
|
2012-02-17 11:42:23 +04:00
|
|
|
* Merge Onigmo.
|
|
|
|
https://github.com/k-takata/Onigmo
|
|
|
|
|
2012-03-11 09:53:20 +04:00
|
|
|
* The :close_others option is true by default for system() and exec().
|
2011-10-22 13:58:15 +04:00
|
|
|
Also, the close-on-exec flag is set by default for all new file descriptors.
|
|
|
|
This means file descriptors doesn't inherit to spawned process unless
|
|
|
|
explicitly requested such as system(..., fd=>fd).
|
2012-02-13 20:05:00 +04:00
|
|
|
|
|
|
|
* Kernel#respond_to? against a protected method now returns false
|
|
|
|
unless the second argument is true.
|
2012-03-12 02:37:04 +04:00
|
|
|
|
|
|
|
* Dir.mktmpdir in lib/tmpdir.rb
|
|
|
|
|
|
|
|
See above.
|