aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMarcelo Silveira <marcelo@mhfs.com.br>2012-04-26 21:06:54 -0300
committerMarcelo Silveira <marcelo@mhfs.com.br>2012-05-02 21:25:41 -0300
commit66b9e4c857b5987a52f0442ae382ee18dc3dd30a (patch)
treee776a8007fe33014bbb3b239c18766e2e19820b0 /activerecord/CHANGELOG.md
parent1379375f93c53d4c49fa8592b6117c3ade263f2e (diff)
downloadrails-66b9e4c857b5987a52f0442ae382ee18dc3dd30a.tar.gz
rails-66b9e4c857b5987a52f0442ae382ee18dc3dd30a.tar.bz2
rails-66b9e4c857b5987a52f0442ae382ee18dc3dd30a.zip
Adding note about `first` and `take` to the changelog
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 6f0b5bfce6..a661a44f1f 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,11 @@
## Rails 4.0.0 (unreleased) ##
+* Added default order to `first` to assure consistent results among
+ diferent database engines. Introduced `take` as a replacement to
+ the old behavior of `first`.
+
+ *Marcelo Silveira*
+
* Added an :index option to automatically create indexes for references
and belongs_to statements in migrations.