aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorKevin McPhillips <github@kevinmcphillips.ca>2017-01-16 13:52:57 -0500
committerKevin McPhillips <github@kevinmcphillips.ca>2017-01-16 14:40:54 -0500
commit5da6a9d6845661c8689fe5d15b22c1172b617122 (patch)
tree1f83fc43191decffae63b28de500292acef3669b /activesupport
parentf90a08c193d4ec8267f4409b7a670c2b53e0621d (diff)
downloadrails-5da6a9d6845661c8689fe5d15b22c1172b617122.tar.gz
rails-5da6a9d6845661c8689fe5d15b22c1172b617122.tar.bz2
rails-5da6a9d6845661c8689fe5d15b22c1172b617122.zip
CHANGELOG: Raise ArgumentError when calling transliterate on anything other than a string
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 0bb6b2466c..5207194fba 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Changed `ActiveSupport::Inflector#transliterate` to raise `ArgumentError` when it receives
+ anything except a string.
+
+ *Kevin McPhillips*
+
* Fixed bugs that `StringInquirer#respond_to_missing?` and
`ArrayInquirer#respond_to_missing?` do not fallback to `super`.