Skip to content

Commit a11bb36

Browse files
committed
Add more back quotes for code and fix missing feature#20018 link
1 parent 49de907 commit a11bb36

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

NEWS.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Note that each entry is kept to a minimum, see links for details.
1515
To disable this change, you can run Ruby with the `--disable-frozen-string-literal`
1616
command line argument. [[Feature #20205]]
1717

18-
* String#+@ now duplicates when mutating the string would emit
18+
* `String#+@` now duplicates when mutating the string would emit
1919
a deprecation warning, offered as a replacement for the
2020
`str.dup if str.frozen?` pattern.
2121

@@ -77,7 +77,7 @@ Note: We're only listing outstanding class updates.
7777

7878
* MatchData
7979

80-
* `MatchData#bytebegin` and MatchData#byteend have been added. [[Feature #20576]]
80+
* `MatchData#bytebegin` and `MatchData#byteend` have been added. [[Feature #20576]]
8181

8282
* Ractor
8383

@@ -87,9 +87,9 @@ Note: We're only listing outstanding class updates.
8787
main Ractor.
8888
[[Feature #20627]]
8989

90-
* Ractor.main? is added. [[Feature #20627]]
90+
* `Ractor.main?` is added. [[Feature #20627]]
9191

92-
* Ractor.[] and Ractor.[]= are added to access the ractor local storage
92+
* `Ractor.[]` and `Ractor.[]=` are added to access the ractor local storage
9393
of the current Ractor. [[Feature #20715]]
9494

9595
* `Ractor.store_if_absent(key){ init }` is added to initialize ractor local
@@ -154,7 +154,7 @@ We only list stdlib changes that are notable feature changes.
154154
* Add `--attestation` option to gem push. It enabled to store signature of build artifact to sigstore.dev.
155155

156156
* Bundler
157-
* Add a lockfile_checksums configuration to include checksums in fresh lockfiles.
157+
* Add a `lockfile_checksums` configuration to include checksums in fresh lockfiles.
158158
* Add bundle lock `--add-checksums` to add checksums to an existing lockfile.
159159

160160
* JSON
@@ -175,7 +175,7 @@ We only list stdlib changes that are notable feature changes.
175175
176176
* Socket
177177
178-
* Socket::ResolutionError and Socket::ResolutionError#error_code was added.
178+
* `Socket::ResolutionError` and `Socket::ResolutionError#error_code` was added.
179179
[[Feature #20018]]
180180
181181
Other changes are listed in the following sections. we also listed release history from the previous bundled version that is Ruby 3.3.0 if it has GitHub releases.
@@ -341,7 +341,7 @@ The following bundled gems are promoted from default gems.
341341
* Use a single quote instead of a backtick as an opening quote. [[Feature #16495]]
342342
* Display a class name before a method name (only when the class has a permanent name). [[Feature #19117]]
343343
* Extra `rescue`/`ensure` frames are no longer available on the backtrace. [[Feature #20275]]
344-
* Kernel#caller, Thread::Backtrace::Location’s methods, etc. are also changed accordingly.
344+
* `Kernel#caller`, `Thread::Backtrace::Location`’s methods, etc. are also changed accordingly.
345345
346346
Old:
347347
```
@@ -430,7 +430,7 @@ The following bundled gems are promoted from default gems.
430430
[[Feature #20564]]
431431

432432
* Happy Eyeballs version 2 (RFC8305), an algorithm that ensures faster and more reliable connections
433-
by attempting IPv6 and IPv4 concurrently, is used in Socket.tcp and TCPSocket.new.
433+
by attempting IPv6 and IPv4 concurrently, is used in `Socket.tcp` and `TCPSocket.new`.
434434
To disable it globally, set the environment variable `RUBY_TCP_NO_FAST_FALLBACK=1` or
435435
call `Socket.tcp_fast_fallback=false`.
436436
Or to disable it on a per-method basis, use the keyword argument `fast_fallback: false`.
@@ -507,6 +507,7 @@ The following bundled gems are promoted from default gems.
507507
[Bug #19266]: https://bugs.ruby-lang.org/issues/19266
508508
[Feature #19714]: https://bugs.ruby-lang.org/issues/19714
509509
[Bug #19918]: https://bugs.ruby-lang.org/issues/19918
510+
[Feature #20018]: https://bugs.ruby-lang.org/issues/20018
510511
[Bug #20064]: https://bugs.ruby-lang.org/issues/20064
511512
[Feature #20108]: https://bugs.ruby-lang.org/issues/20108
512513
[Feature #20182]: https://bugs.ruby-lang.org/issues/20182

0 commit comments

Comments
 (0)