From 02e25db68f94920810c1c110138ab7b1d6e2ca59 Mon Sep 17 00:00:00 2001 From: Akihiro Sada Date: Tue, 5 Apr 2022 20:37:05 +0900 Subject: [PATCH] Add URI.escape and URI.unescape to NEWS-3.0.0 [ci skip] --- doc/NEWS/NEWS-3.0.0.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/NEWS/NEWS-3.0.0.md b/doc/NEWS/NEWS-3.0.0.md index 00c26fe585..bdbd47327b 100644 --- a/doc/NEWS/NEWS-3.0.0.md +++ b/doc/NEWS/NEWS-3.0.0.md @@ -512,6 +512,18 @@ Outstanding ones only. * This version is Ractor compatible. +* URI + + * URI.escape and URI.unescape have been removed. + Instead, use the following methods depending on your specific use case. + + * CGI.escape + * URI.encode_www_form + * URI.encode_www_form_component + * CGI.unescape + * URI.decode_www_form + * URI.decode_www_form_component + ## Compatibility issues Excluding feature bug fixes.