aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2019-01-10 14:24:14 -0500
committerGitHub <noreply@github.com>2019-01-10 14:24:14 -0500
commitebda02d017e623ce0edade5a5ed37ebf2f2c7442 (patch)
treeeb2f2e1138a0a700a812d5a98bf97d8c3b8c9017 /activesupport/CHANGELOG.md
parent2163762c3cd7cb58223f882405ed3c6dcfb6a2cd (diff)
parenta930f5ba0654e8c8c7ac7b3febbb573d03559a40 (diff)
downloadrails-ebda02d017e623ce0edade5a5ed37ebf2f2c7442.tar.gz
rails-ebda02d017e623ce0edade5a5ed37ebf2f2c7442.tar.bz2
rails-ebda02d017e623ce0edade5a5ed37ebf2f2c7442.zip
Merge pull request #34892 from kbrock/safer_safe_constantize
Fix safe_constantize to not raise a LoadError.
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 360cef2b41..d4eaee9f6d 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Fix `String#safe_constantize` throwing a `LoadError` for incorrectly cased constant references.
+
+ *Keenan Brock*
+
* Preserve key order passed to `ActiveSupport::CacheStore#fetch_multi`.
`fetch_multi(*names)` now returns its results in the same order as the `*names` requested, rather than returning cache hits followed by cache misses.