[DOC] Sort the NEWS entries alphabetically

This commit is contained in:
Nobuyoshi Nakada 2024-12-15 16:56:00 +09:00
parent e06b3b5ad1
commit a2e4100472
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465

12
NEWS.md
View File

@ -46,6 +46,11 @@ Note: We're only listing outstanding class updates.
* Exception#set_backtrace now accepts arrays of Thread::Backtrace::Location.
Kernel#raise, Thread#raise and Fiber#raise also accept this new format. [[Feature #13557]]
* Fiber::Scheduler
* An optional Fiber::Scheduler#blocking_operation_wait hook allows blocking operations to be moved out of the
event loop in order to reduce latency and improve multi-core processor utilization. [[Feature #20876]]
* GC
* GC.config added to allow setting configuration variables on the Garbage
@ -60,11 +65,6 @@ Note: We're only listing outstanding class updates.
This can improve performance when building large hashes incrementally by saving on reallocation and
rehashing of keys. [[Feature #19236]]
* Fiber::Scheduler
* An optional Fiber::Scheduler#blocking_operation_wait hook allows blocking operations to be moved out of the
event loop in order to reduce latency and improve multi-core processor utilization. [[Feature #20876]]
* IO::Buffer
* IO::Buffer#copy can release the GVL, allowing other threads to run while copying data. [[Feature #20902]]
@ -143,7 +143,7 @@ Note: We're only listing outstanding class updates.
[[Bug #20929]]
* Time#xmlschema, and its Time#iso8601 alias have been moved into the core Time
class while previously it was an extension provided by the `time` gem. [[Feature #20707]]
class while previously it was an extension provided by the `time` gem. [[Feature #20707]]
* Warning