aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorFrancesco Rodríguez <frodsan@me.com>2018-10-08 10:57:18 +0200
committerFrancesco Rodríguez <frodsan@me.com>2018-10-12 07:42:51 +0200
commite52b223487c4a72ccdd6d631318fc3cfcf8097ba (patch)
treeb268e66d7029647f4bc8b30df216c52e158cee67 /activesupport/CHANGELOG.md
parent8df7ed3b88fc9f19446d7207a745a331893b81cd (diff)
downloadrails-e52b223487c4a72ccdd6d631318fc3cfcf8097ba.tar.gz
rails-e52b223487c4a72ccdd6d631318fc3cfcf8097ba.tar.bz2
rails-e52b223487c4a72ccdd6d631318fc3cfcf8097ba.zip
Deprecate Unicode#downcase/upcase/swapcase.
Use String methods directly instead.
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index b796df26aa..4e709e0a30 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Deprecate `ActiveSupport::Multibyte::Unicode#downcase/upcase/swapcase` in favor of
+ `String#downcase/upcase/swapcase`.
+
+ *Francesco Rodríguez*
+
* Add `ActiveSupport::ParameterFilter`.
*Yoshiyuki Kinjo*