aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2014-11-22 20:29:29 -0500
committerArthur Neves <arthurnn@gmail.com>2014-11-22 20:29:29 -0500
commit5dc598814efa45a1019c262ee01e5cc2db864d26 (patch)
treed8ed2b8d6ff520cd0f88809510b6ea7e4dd21ff8 /activerecord/CHANGELOG.md
parent6cd9e2bd29b26e1ea781fafce18614217b7adf7b (diff)
downloadrails-5dc598814efa45a1019c262ee01e5cc2db864d26.tar.gz
rails-5dc598814efa45a1019c262ee01e5cc2db864d26.tar.bz2
rails-5dc598814efa45a1019c262ee01e5cc2db864d26.zip
Add changelog entry for .reflections API change
`.reflections` public API changed to return a String instead of a Symbol as keys. see commit 1f31488499111fdfce79d8dc1cc8fb008f7cdb25 and 6259e4e2dcca9a79f22f96658c33efe81936bc0d [fixes #16928] [fixes #17610]
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 16f776df58..a4de332d4c 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Change `reflections` public api to return the keys as String objects.
+
+ Fixes #16928.
+
+ *arthurnn*
+
* Renaming a table in pg also renames the primary key index.
Fixes #12856