summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAkihiro Sada <sada@netlab.jp>2022-04-05 20:37:05 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-09-21 17:35:22 +0900
commit02e25db68f94920810c1c110138ab7b1d6e2ca59 (patch)
tree1ccb765771018430254c6a31d33c3e0ca7f0b7cf /doc
parentd35bc88b37a9cfc491f3bc2aa35ec317febd8289 (diff)
Add URI.escape and URI.unescape to NEWS-3.0.0 [ci skip]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5764
Diffstat (limited to 'doc')
-rw-r--r--doc/NEWS/NEWS-3.0.0.md12
1 files changed, 12 insertions, 0 deletions
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.