aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG8
1 files changed, 7 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 798d875034..698a337dcc 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -8,7 +8,7 @@
class User < ActiveRecord::Base
store :settings, accessors: [ :color, :homepage ]
end
-
+
u = User.new(color: 'black', homepage: '37signals.com')
u.color # Accessor stored attribute
u.settings[:country] = 'Denmark' # Any attribute, even if not specified with an accessor
@@ -37,6 +37,12 @@
[Aaron Christy]
+*Rails 3.1.2 (unreleased)*
+
+* Fix creating records in a through association with a polymorphic source type. [GH #3247]
+
+ [Jon Leighton]
+
*Rails 3.1.1 (October 7, 2011)*
* Add deprecation for the preload_associations method. Fixes #3022.