From 2ffd5ad05f0df2b33540f8fad4220aecbceab98e Mon Sep 17 00:00:00 2001 From: kitazawa <3143443+krororo@users.noreply.github.com> Date: Sun, 21 Dec 2025 18:35:32 +0900 Subject: [PATCH 1/2] [DOC] Remove duplicate Pathname promotion entry at NEWS.md The Pathname promotion to core class is already documented in the "Core classes updates" section, making this duplicate entry redundant. --- NEWS.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/NEWS.md b/NEWS.md index 2435498da9af12..da8c494b4b3ed1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -269,11 +269,6 @@ Note: We're only listing outstanding class updates. * Introduce support for `Thread#raise(cause:)` argument similar to `Kernel#raise`. [[Feature #21360]] -* Pathname - - * Pathname has been promoted from a default gem to a core class of Ruby. - [[Feature #17473]] - ## Stdlib updates The following bundled gems are promoted from default gems. From d8b33993e1ba1fc948db435f363e165e89badccc Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 21 Dec 2025 20:31:30 +0900 Subject: [PATCH 2/2] Box: Fix an unused variable warning --- box.c | 1 + 1 file changed, 1 insertion(+) diff --git a/box.c b/box.c index 54bd5c6258343f..616a8acf7d88b5 100644 --- a/box.c +++ b/box.c @@ -759,6 +759,7 @@ rb_box_cleanup_local_extension(VALUE cleanup) #ifndef _WIN32 if (p) box_ext_cleanup_free(p); #endif + (void)p; } static int