summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean Boussier <[email protected]>2023-09-28 17:40:32 +0200
committerJean Boussier <[email protected]>2023-09-28 19:26:56 +0200
commit2e4e4c82c282622a94b9499c182a7e52e21a23b4 (patch)
treecfa28ccd3d2416a3e659e489792ac7075d819053
parent809b67bd91ad2eb3cd5039f99782c801c7fd0879 (diff)
Add a mention about Socket#recv in NEWS.md
[Misc #19012]
-rw-r--r--NEWS.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index 65452ffbd3..c97f8e0c5e 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -77,6 +77,10 @@ Note: We're only listing outstanding class updates.
* RubyGems and Bundler warn if users require gem that is scheduled to become the bundled gems
in the future version of Ruby. [[Feature #19351]] [[Feature #19776]] [[Feature #19843]]
+* Socket#recv and Socket#recv_nonblock returns `nil` instead of an empty string on closed
+ connections. Socket#recvmsg and Socket#recvmsg_nonblock returns `nil` instead of an empty packet on closed
+ connections. [[Bug #19012]]
+
* Random::Formatter#alphanumeric is extended to accept optional `chars`
keyword argument. [[Feature #18183]]