diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-11-03 10:23:42 +0000 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-11-03 10:23:42 +0000 |
commit | b4b178f7e9a00a0235574a773cdbc06fe856acaf (patch) | |
tree | d5617680e972962e78dd0a8e3fad19e208451d0f /activerecord/CHANGELOG | |
parent | 982a0f37f5239527e9db9225b1dc7e42c6a98417 (diff) | |
download | rails-b4b178f7e9a00a0235574a773cdbc06fe856acaf.tar.gz rails-b4b178f7e9a00a0235574a773cdbc06fe856acaf.tar.bz2 rails-b4b178f7e9a00a0235574a773cdbc06fe856acaf.zip |
Fix #3247.
Fixes creating records in a through association with a polymorphic source
type.
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 8 |
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. |