aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorDiego Carrion <dc.rec1@gmail.com>2015-06-13 12:51:32 -0300
committerDiego Carrion <dc.rec1@gmail.com>2015-06-22 12:38:54 -0300
commit828d0d7a7751a0c6a9faf0c96b89b0ea06a76094 (patch)
tree44fac740ef8548424c137a2d39f28939538996bb /activerecord/CHANGELOG.md
parentebc4c607a7859c9c35246d7fe74a17208ef3a66e (diff)
downloadrails-828d0d7a7751a0c6a9faf0c96b89b0ea06a76094.tar.gz
rails-828d0d7a7751a0c6a9faf0c96b89b0ea06a76094.tar.bz2
rails-828d0d7a7751a0c6a9faf0c96b89b0ea06a76094.zip
thrown ActiveRecord::AssociationTypeMismatch when assigning a wrong value for a namespaced association
fixes #20541
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 3351013b16..0ec3902eac 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Correctly thrown `ActiveRecord::AssociationTypeMismatch` when assigning
+ a wrong value to a namespaced association.
+
+ Fixes #20545
+
+ *Diego Carrion*
+
* `validates_absence_of` respects `marked_for_destruction?`.
Fixes #20449.