1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add URI.escape and URI.unescape to NEWS-3.0.0 [ci skip]

This commit is contained in:
Akihiro Sada 2022-04-05 20:37:05 +09:00 committed by Hiroshi SHIBATA
parent d35bc88b37
commit 02e25db68f
Notes: git 2022-09-21 17:35:48 +09:00

View file

@ -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.