From a3d41cb071ae0fc567c3e3ab7afea9356789cbcf Mon Sep 17 00:00:00 2001 From: Jan Habermann Date: Thu, 3 Apr 2014 02:25:16 +0200 Subject: [PATCH] Add a CHANGELOG entry for the has_many :through scoping fix (See #14537 for details). --- activerecord/CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 18ec203fa3..3fc6e9e158 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,12 @@ +* Fixed unexpected behavior for `has_many :through` associations going through a scoped `has_many`. + + If a `has_many` association is adjusted using a scope, and another `has_many :through` + uses this association, then the scope adjustment is unexpectedly neglected. + + Fixes #14537. + + *Jan Habermann* + * Fixed error when specifying a non-empty default value on a PostgreSQL array column. Fixes #10613. -- GitLab