aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorDmitry Vorotilin <d.vorotilin@gmail.com>2013-03-01 02:32:38 +0400
committerDmitry Vorotilin <d.vorotilin@gmail.com>2013-03-06 11:46:07 +0400
commitb04051d4e0c8066ec79cd4978606e4728dfa6ffa (patch)
treef5e3078bf8bfc31de0e65541489b3294642ab772 /activerecord/CHANGELOG.md
parentee169329a898d993f0d024af6cce83649fb2f733 (diff)
downloadrails-b04051d4e0c8066ec79cd4978606e4728dfa6ffa.tar.gz
rails-b04051d4e0c8066ec79cd4978606e4728dfa6ffa.tar.bz2
rails-b04051d4e0c8066ec79cd4978606e4728dfa6ffa.zip
Fix ActiveRecord `subclass_from_attrs` when eager_load is false.
It cannot find subclass because all classes are loaded automatically when it needs.
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 97616ffc58..97e81de1ca 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,11 @@
## Rails 4.0.0 (unreleased) ##
+* Fix ActiveRecord `subclass_from_attrs` when eager_load is false.
+ It cannot find subclass because all classes are loaded automatically
+ when it needs.
+
+ *Dmitry Vorotilin*
+
* Assigning "0.0" to a nullable numeric column does not make it dirty.
Fix #9034.