mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Get rid of interpreting BTS references as label-list [ci skip]
This commit is contained in:
parent
6724b1f83d
commit
e9b271d1e2
1 changed files with 8 additions and 8 deletions
16
NEWS
16
NEWS
|
@ -19,8 +19,9 @@ sufficient information, see the ChangeLog file or Redmine
|
||||||
* Method reference operator, <code>.:</code> is introduced as an
|
* Method reference operator, <code>.:</code> is introduced as an
|
||||||
experimental feature. [Feature #12125] [Feature #13581]
|
experimental feature. [Feature #12125] [Feature #13581]
|
||||||
|
|
||||||
* Preparations for the redesign of keyword arguments towards Ruby 3.
|
* Preparations for the redesign of keyword arguments towards
|
||||||
[Feature #14183]
|
Ruby 3. [Feature #14183]
|
||||||
|
|
||||||
* Automatic conversion from a Hash to keyword arguments is deprecated:
|
* Automatic conversion from a Hash to keyword arguments is deprecated:
|
||||||
when a method call passes a Hash at the last argument, and when the
|
when a method call passes a Hash at the last argument, and when the
|
||||||
called method accepts keywords, it is warned.
|
called method accepts keywords, it is warned.
|
||||||
|
@ -35,8 +36,8 @@ sufficient information, see the ChangeLog file or Redmine
|
||||||
|
|
||||||
def foo(**kw); p kw; end; foo("str" => 1) #=> {"str"=>1}
|
def foo(**kw); p kw; end; foo("str" => 1) #=> {"str"=>1}
|
||||||
|
|
||||||
* Automatic conversion of keyword arguments and positional ones is warned.
|
* Automatic conversion of keyword arguments and positional ones is
|
||||||
[Feature #14183]
|
warned. [Feature #14183]
|
||||||
|
|
||||||
* Proc.new and proc with no block in a method called with a block is warned
|
* Proc.new and proc with no block in a method called with a block is warned
|
||||||
now.
|
now.
|
||||||
|
@ -76,8 +77,7 @@ Complex::
|
||||||
|
|
||||||
New method::
|
New method::
|
||||||
|
|
||||||
* Added Complex#<=>. So 0 <=> 0i will not raise NoMethodError.
|
* Added Complex#<=>. So 0 <=> 0i will not raise NoMethodError. [Bug #15857]
|
||||||
[Bug #15857]
|
|
||||||
|
|
||||||
Encoding::
|
Encoding::
|
||||||
|
|
||||||
|
@ -263,8 +263,8 @@ open-uri::
|
||||||
* Warn open-uri's "open" method at Kernel.
|
* Warn open-uri's "open" method at Kernel.
|
||||||
Use URI.open instead. [Misc #15893]
|
Use URI.open instead. [Misc #15893]
|
||||||
|
|
||||||
* The default charset of text/* media type is UTF-8 instead of ISO-8859-1.
|
* The default charset of text/* media type is UTF-8 instead of
|
||||||
[Bug #15933]
|
ISO-8859-1. [Bug #15933]
|
||||||
|
|
||||||
Pathname::
|
Pathname::
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue