aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2012-03-12 11:39:19 +0000
committerAndrew White <andyw@pixeltrix.co.uk>2012-03-12 14:16:19 +0000
commiteee32af45e7909c02370324833d7117fe9b6eb37 (patch)
tree628b5bb0a1babe14985122e18ef6ebd4b4a6d34c /activerecord/CHANGELOG.md
parent1e2de2cb74088a4dda5799587530be63279cc9c8 (diff)
downloadrails-eee32af45e7909c02370324833d7117fe9b6eb37.tar.gz
rails-eee32af45e7909c02370324833d7117fe9b6eb37.tar.bz2
rails-eee32af45e7909c02370324833d7117fe9b6eb37.zip
Add dynamic find_or_create_by_{attribute}! method.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 9a036bdd66..6fd86b1f32 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -155,6 +155,8 @@
## Rails 3.2.3 (unreleased) ##
+* Added find_or_create_by_{attribute}! dynamic method. *Andrew White*
+
* Whitelist all attribute assignment by default. Change the default for newly generated applications to whitelist all attribute assignment. Also update the generated model classes so users are reminded of the importance of attr_accessible. *NZKoz*
* Update ActiveRecord::AttributeMethods#attribute_present? to return false for empty strings. *Jacobkg*