aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorScott Willson <scott.willson@gmail.com>2012-10-16 19:04:40 -0700
committerScott Willson <scott.willson@gmail.com>2012-10-16 19:04:40 -0700
commit25262bc280e8c9c0e875315958f82230b67cbf35 (patch)
tree48baee2cc9088c4eed11696e9c280718cf175211 /activerecord/CHANGELOG.md
parentc432c74cd34d4230bfda6fa008f2af9dbc33e523 (diff)
downloadrails-25262bc280e8c9c0e875315958f82230b67cbf35.tar.gz
rails-25262bc280e8c9c0e875315958f82230b67cbf35.tar.bz2
rails-25262bc280e8c9c0e875315958f82230b67cbf35.zip
Fix bug with presence validation of associations.
Would incorrectly add duplicated errors when the association was blank. Bug introduced in 1fab518c6a75dac5773654646eb724a59741bc13.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 5f5c9e4915..186c7bf244 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* Fix bug with presence validation of associations. Would incorrectly add duplicated errors
+ when the association was blank. Bug introduced in 1fab518c6a75dac5773654646eb724a59741bc13.
+
+ *Scott Willson*
+
* Fix bug where sum(expression) returns string '0' for no matching records
Fixes #7439