From 9504b44cf60c1d69519cef32465f46a73719bc17 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Fri, 5 Oct 2012 15:07:39 -0600 Subject: Specify type of singular association during serialization When serialising a class, specify the type of any singular associations, if necessary. Rails already correctly specifies the :type of any enumerable association (e.g. a has_many association), but made no attempt to do so for non-enumerables (e.g. a has_one association). We must specify the :type of any STI association. A has_one association to a class which uses single-table inheritance is an example of this type of association. Fixes #7471 --- activemodel/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'activemodel/CHANGELOG.md') diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index 5135e47db1..dc39917984 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,5 +1,7 @@ ## Rails 4.0.0 (unreleased) ## +* Specify type of singular association during serialization *Steve Klabnik* + * Fixed length validator to correctly handle nil values. Fixes #7180. *Michal Zima* -- cgit v1.2.3