From c2e4d6c644eac51a80e457f1f3554c3e658168c4 Mon Sep 17 00:00:00 2001 From: Kevin Menard Date: Fri, 24 Mar 2023 18:13:02 -0400 Subject: [PATCH] Add a CHANGELOG entry for the fix for `IO#gets` with multi-byte delimiters. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c46705d2bc5..e1eaba2a5c00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ Bug fixes: * Fix `StringIO#write` to transcode strings with encodings that don't match the `StringIO`'s `external_encoding`. (#2839, @flavorjones) * Fix processing of proc rest arguments located at the beginning if there are no actual arguments (#2921, @andrykonchin). * Fix `Monitor#exit` to raise `ThreadError` when monitor not owned by the current thread (#2922, @andrykonchin). +* Fix `IO` line reading calls when using a multi-byte delimiter (`IO#{each,gets,readline,readlines,etc.}) (#2961, @vinistock, @nirvdrum). Compatibility: