ruby/NEWS.md

103 строки
2.0 KiB
Markdown
Исходник Обычный вид История

# NEWS for Ruby 3.2.0
2021-12-15 19:24:31 +03:00
This document is a list of user-visible feature changes
since the **3.1.0** release, except for bug fixes.
Note that each entry is kept to a minimum, see links for details.
## Language changes
Evaluate multiple assignment left hand side before right hand side In regular assignment, Ruby evaluates the left hand side before the right hand side. For example: ```ruby foo[0] = bar ``` Calls `foo`, then `bar`, then `[]=` on the result of `foo`. Previously, multiple assignment didn't work this way. If you did: ```ruby abc.def, foo[0] = bar, baz ``` Ruby would previously call `bar`, then `baz`, then `abc`, then `def=` on the result of `abc`, then `foo`, then `[]=` on the result of `foo`. This change makes multiple assignment similar to single assignment, changing the evaluation order of the above multiple assignment code to calling `abc`, then `foo`, then `bar`, then `baz`, then `def=` on the result of `abc`, then `[]=` on the result of `foo`. Implementing this is challenging with the stack-based virtual machine. We need to keep track of all of the left hand side attribute setter receivers and setter arguments, and then keep track of the stack level while handling the assignment processing, so we can issue the appropriate topn instructions to get the receiver. Here's an example of how the multiple assignment is executed, showing the stack and instructions: ``` self # putself abc # send abc, self # putself abc, foo # send abc, foo, 0 # putobject 0 abc, foo, 0, [bar, baz] # evaluate RHS abc, foo, 0, [bar, baz], baz, bar # expandarray abc, foo, 0, [bar, baz], baz, bar, abc # topn 5 abc, foo, 0, [bar, baz], baz, abc, bar # swap abc, foo, 0, [bar, baz], baz, def= # send abc, foo, 0, [bar, baz], baz # pop abc, foo, 0, [bar, baz], baz, foo # topn 3 abc, foo, 0, [bar, baz], baz, foo, 0 # topn 3 abc, foo, 0, [bar, baz], baz, foo, 0, baz # topn 2 abc, foo, 0, [bar, baz], baz, []= # send abc, foo, 0, [bar, baz], baz # pop abc, foo, 0, [bar, baz] # pop [bar, baz], foo, 0, [bar, baz] # setn 3 [bar, baz], foo, 0 # pop [bar, baz], foo # pop [bar, baz] # pop ``` As multiple assignment must deal with splats, post args, and any level of nesting, it gets quite a bit more complex than this in non-trivial cases. To handle this, struct masgn_state is added to keep track of the overall state of the mass assignment, which stores a linked list of struct masgn_attrasgn, one for each assigned attribute. This adds a new optimization that replaces a topn 1/pop instruction combination with a single swap instruction for multiple assignment to non-aref attributes. This new approach isn't compatible with one of the optimizations previously used, in the case where the multiple assignment return value was not needed, there was no lhs splat, and one of the left hand side used an attribute setter. This removes that optimization. Removing the optimization allowed for removing the POP_ELEMENT and adjust_stack functions. This adds a benchmark to measure how much slower multiple assignment is with the correct evaluation order. This benchmark shows: * 4-9% decrease for attribute sets * 14-23% decrease for array member sets * Basically same speed for local variable sets Importantly, it shows no significant difference between the popped (where return value of the multiple assignment is not needed) and !popped (where return value of the multiple assignment is needed) cases for attribute and array member sets. This indicates the previous optimization, which was dropped in the evaluation order fix and only affected the popped case, is not important to performance. Fixes [Bug #4443]
2021-04-21 20:49:19 +03:00
* Anonymous rest and keyword rest arguments can now be passed as
arguments, instead of just used in method parameters.
[[Feature #18351]]
```ruby
def foo(*)
bar(*)
end
def baz(**)
quux(**)
end
```
## Command line options
## Core classes updates
2021-12-15 19:24:31 +03:00
Note: We're only listing outstanding class updates.
2022-01-05 10:58:23 +03:00
* Module
* Module.used_refinements has been added. [[Feature #14332]]
* Module#refinements has been added. [[Feature #12737]]
* Refinement
* Refinement#refined_class has been added. [[Feature #12737]]
2022-01-05 10:58:23 +03:00
## Stdlib updates
* The following default gem are updated.
* RubyGems 3.4.0.dev
* bundler 2.4.0.dev
* etc 1.4.0
* io-console 0.5.11
* reline 0.3.1
* The following bundled gems are updated.
2021-12-29 10:02:15 +03:00
* typeprof 0.21.2
* The following default gems are now bundled gems.
## Compatibility issues
2021-12-15 19:24:31 +03:00
Note: Excluding feature bug fixes.
2021-12-31 17:59:50 +03:00
### Removed methods
2022-01-02 09:05:02 +03:00
The following deprecated constant is removed.
* `Random::DEFAULT` [[Feature #17351]]
2022-01-02 09:05:02 +03:00
* `Struct::Group`
* `Struct::Passwd`
2021-12-31 17:59:50 +03:00
The following deprecated methods are removed.
* `Dir.exists?` [[Feature #17391]]
* `File.exists?` [[Feature #17391]]
* `Kernel#=~` [[Feature #15231]]
2021-12-31 17:59:50 +03:00
## Stdlib compatibility issues
2020-06-18 15:11:19 +03:00
## C API updates
2021-12-31 17:59:04 +03:00
### Removed C APIs
The following deprecated APIs are removed.
* `rb_cData` variable.
* "taintedness" and "trustedness" functions.
## Implementation improvements
## JIT
### MJIT
2021-10-20 22:51:07 +03:00
### YJIT: New experimental in-process JIT compiler
2020-11-10 20:15:57 +03:00
## Static analysis
2020-10-20 07:16:19 +03:00
### RBS
2020-09-25 11:08:39 +03:00
2020-10-20 07:16:19 +03:00
### TypeProf
2021-10-20 04:18:54 +03:00
## Debugger
2021-10-20 05:05:05 +03:00
## error_highlight
## IRB Autocomplete and Document Display
## Miscellaneous changes
[Feature #15231]: https://bugs.ruby-lang.org/issues/15231
[Feature #17351]: https://bugs.ruby-lang.org/issues/17351
[Feature #17391]: https://bugs.ruby-lang.org/issues/17391
[Feature #18351]: https://bugs.ruby-lang.org/issues/18351