NEWS about Hash#except ENV#except [Feature #15822]

This commit is contained in:
Nobuyoshi Nakada 2020-06-18 23:00:59 +09:00
parent 82ca8c7303
commit 50c13eb718
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6
1 changed files with 13 additions and 0 deletions

13
NEWS.md
View File

@ -84,6 +84,13 @@ Outstanding ones only.
* Dir.glob and Dir.[] now sort the results by default, and
accept `sort:` keyword option. [[Feature #8709]]
* ENV
* New method
* ENV.except, which returns a hash excluding the given keys
and their values. [[Feature #15822]]
* Hash
* Modified method
@ -91,6 +98,11 @@ Outstanding ones only.
* Hash#transform_keys now accepts a hash that maps keys to new
keys. [[Feature #16274]]
* New method
* Hash#except, which returns a hash excluding the given keys
and their values. [[Feature #15822]]
* Kernel
* Modified method
@ -227,3 +239,4 @@ Excluding feature bug fixes.
[Feature #16746]: https://bugs.ruby-lang.org/issues/16746
[Feature #16754]: https://bugs.ruby-lang.org/issues/16754
[GH-2991]: https://github.com/ruby/ruby/pull/2991
[Feature #15822]: https://bugs.ruby-lang.org/issues/15822