aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2016-03-07 16:02:49 -0500
committerArthur Neves <arthurnn@gmail.com>2016-03-07 16:02:49 -0500
commit75216b533b301d89c3bb04768a2d0da511ee1a4e (patch)
treee85d442f9ae59b9538c81a66cf36456ccd5cd7a4 /activerecord/CHANGELOG.md
parentd8a53b49a7490eb0115fcf6f7f4c872a5393e251 (diff)
downloadrails-75216b533b301d89c3bb04768a2d0da511ee1a4e.tar.gz
rails-75216b533b301d89c3bb04768a2d0da511ee1a4e.tar.bz2
rails-75216b533b301d89c3bb04768a2d0da511ee1a4e.zip
move changelog to right place [skip ci]
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index ce77796cf1..3784f2359a 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,9 +1,3 @@
-* Save many-to-many objects based on association primary key.
-
- Fixes #20995.
-
- *himesh-r*
-
* Fix an issue when preloading associations with extensions.
Previously every association with extension methods was transformed into an
instance dependent scope. This is no longer the case.
@@ -47,6 +41,12 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##
+* Save many-to-many objects based on association primary key.
+
+ Fixes #20995.
+
+ *himesh-r*
+
* Ensure that mutations of the array returned from `ActiveRecord::Relation#to_a`
do not affect the original relation, by returning a duplicate array each time.