diff options
| author | TSUYUSATO Kitsune <make.just.on@gmail.com> | 2023-12-22 15:03:18 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-12-22 15:28:33 +0900 |
| commit | 17e351057ea39acbc19fa3f17ba668a3ba31421e (patch) | |
| tree | 24aa40da17285702405c81cce80bb5dbd278beae | |
| parent | e364436c5f89fc4ee51706634637893771175d02 (diff) | |
Add Regexp updates to NEWS.md
| -rw-r--r-- | NEWS.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -106,6 +106,12 @@ Note: We're only listing outstanding class updates. Refinement#refined_class is deprecated and will be removed in Ruby 3.4. [[Feature #19714]] +* Regexp + + * The cache-based optimization now supports lookarounds and atomic groupings. That is, match + for Regexp containing these extensions can now also be performed in linear time to the length + of the input string. However, these cannot contain captures and cannot be nested. [[Feature #19725]] + * String * String#unpack now raises ArgumentError for unknown directives. [[Bug #19150]] @@ -508,6 +514,7 @@ changelog for details of the default gems or bundled gems. [Feature #19637]: https://bugs.ruby-lang.org/issues/19637 [Feature #19678]: https://bugs.ruby-lang.org/issues/19678 [Feature #19714]: https://bugs.ruby-lang.org/issues/19714 +[Feature #19725]: https://bugs.ruby-lang.org/issues/19725 [Feature #19757]: https://bugs.ruby-lang.org/issues/19757 [Feature #19776]: https://bugs.ruby-lang.org/issues/19776 [Feature #19777]: https://bugs.ruby-lang.org/issues/19777 |
