From a2e4100472fd50a61162eaec35ce558fdcc1fe83 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 15 Dec 2024 16:56:00 +0900 Subject: [PATCH] [DOC] Sort the NEWS entries alphabetically --- NEWS.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/NEWS.md b/NEWS.md index 7ead2f4f68..e6c00bd506 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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