aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorkeepcosmos <keepcosmos@gmail.com>2015-05-26 22:02:41 +0900
committerkeepcosmos <keepcosmos@gmail.com>2015-05-26 22:06:53 +0900
commit995a473f0c3ed1804778b163e0b7d02d410568a5 (patch)
tree2411dd71cbf40cbcfb2d7a67f50feea07e6b644e /activerecord/CHANGELOG.md
parent31cc1c2ef320f554120a1736eaf087aca19464a6 (diff)
downloadrails-995a473f0c3ed1804778b163e0b7d02d410568a5.tar.gz
rails-995a473f0c3ed1804778b163e0b7d02d410568a5.tar.bz2
rails-995a473f0c3ed1804778b163e0b7d02d410568a5.zip
add `extend` option on `has_and_belongs_to_many`.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a3e2d5bd8e..e90490f8b6 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Pass `:extend` option for `has_and_belongs_to_many` associations to the underlying `has_many :through`.
+
+ *Jaehyun Shin*
+
* Deprecate `Relation#uniq` use `Relation#distinct` instead.
See #9683.