1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Sort entries [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2017-07-19 15:01:01 +00:00
parent ae1c9f13b4
commit 290292177f

46
NEWS
View file

@ -41,14 +41,6 @@ with all sufficient information, see the ChangeLog file or Redmine
* Hash#transform_keys [Feature #13583]
* Hash#transform_keys! [Feature #13583]
* Integer
* Integer.sqrt [Feature #13219]
* Integer#step does no longer rescue exceptions when given
a step value which cannot be compared with #> to 0. [Feature #7688]
* Integer#{round,floor,ceil,truncate} now always return an Integer.
[Bug #13420]
* IO
* IO#pread [Feature #4532]
@ -58,6 +50,14 @@ with all sufficient information, see the ChangeLog file or Redmine
* exception message "stream closed" is changed [Bug #13405]
* Integer
* Integer.sqrt [Feature #13219]
* Integer#step does no longer rescue exceptions when given
a step value which cannot be compared with #> to 0. [Feature #7688]
* Integer#{round,floor,ceil,truncate} now always return an Integer.
[Bug #13420]
* Kernel
* Kernel#yield_self [Feature #6721]
@ -82,10 +82,6 @@ with all sufficient information, see the ChangeLog file or Redmine
* Update Onigmo 6.1.1.
* Support absent operator https://github.com/k-takata/Onigmo/issues/82
* Thread
* Thread#fetch [Feature #13009]
* String
* String#-@ deduplicates unfrozen strings. Already-frozen
@ -97,8 +93,19 @@ with all sufficient information, see the ChangeLog file or Redmine
* String#delete_prefix is added to remove prefix [Feature #12694]
* String#delete_prefix! is added to remove prefix destructively [Feature #12694]
* Thread
* Thread#fetch [Feature #13009]
=== Stdlib updates (outstanding ones only)
* ERB
* Add ERB#result_with_hash to render a template with local variables passed
with a Hash object. [Feature #8631]
* Carriage returns are changed to be trimmed properly if trim_mode is specified
and used. Duplicated newlines will be removed on Windows. [Bug #5339] [Bug #11464]
* Net::HTTP
* Add more HTTP status classes
@ -112,13 +119,6 @@ with all sufficient information, see the ChangeLog file or Redmine
* New constants:
* RbConfig::LIMITS is added to provide the limits of C types.
* ERB
* Add ERB#result_with_hash to render a template with local variables passed
with a Hash object. [Feature #8631]
* Carriage returns are changed to be trimmed properly if trim_mode is specified
and used. Duplicated newlines will be removed on Windows. [Bug #5339] [Bug #11464]
* Set
* Add Set#to_s as alias to #inspect [Feature #13676]
@ -128,6 +128,10 @@ with all sufficient information, see the ChangeLog file or Redmine
=== Compatibility issues (excluding feature bug fixes)
* BasicSocket#read_nonblock and BasicSocket#write_nonblock no
longer sets the O_NONBLOCK file description flag as side effect
(on Linux only) [Feature #13362]
* Net::HTTP
* Net::HTTP#start now pass :ENV to p_addr by default. [Bug #13351]
To avoid this, pass nil explicitly.
@ -135,10 +139,6 @@ with all sufficient information, see the ChangeLog file or Redmine
* Random.raw_seed renamed to become Random.urandom. It is now
applicable to non-seeding purposes due to [Bug #9569].
* BasicSocket#read_nonblock and BasicSocket#write_nonblock no
longer sets the O_NONBLOCK file description flag as side effect
(on Linux only) [Feature #13362]
=== Stdlib compatibility issues (excluding feature bug fixes)
* mathn.rb