aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-02-26 13:45:20 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-02-26 13:45:57 -0300
commit0f75e2c51fe7d9ee9e27a792065803bfc95a5a36 (patch)
tree6ed804cd741689ff88c4c76fad4a06d3e32b02c8 /activerecord/CHANGELOG.md
parent7184e3e02ecd155cb26f4755dab980f2ce6582d2 (diff)
downloadrails-0f75e2c51fe7d9ee9e27a792065803bfc95a5a36.tar.gz
rails-0f75e2c51fe7d9ee9e27a792065803bfc95a5a36.tar.bz2
rails-0f75e2c51fe7d9ee9e27a792065803bfc95a5a36.zip
Update CHANGELOGS
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md17
1 files changed, 12 insertions, 5 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 3fbf043c7c..982fbdc236 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,8 +1,4 @@
-## Rails 4.0.0.beta1 (February 25, 2013) ##
-
-* Fix overriding of attributes by default_scope on `ActiveRecord::Base#dup`.
-
- *Hiroshige UMINO*
+## Rails 4.0.0 (unreleased) ##
* Fix when performing an ordered join query. The bug only
affected queries where the order was given with a symbol.
@@ -13,6 +9,17 @@
# This will expand the order :name to "authors".name.
Author.joins(:books).where('books.published = 1').order(:name)
+
+## Rails 4.0.0.beta1 (February 25, 2013) ##
+
+* Fix overriding of attributes by default_scope on `ActiveRecord::Base#dup`.
+
+ *Hiroshige UMINO*
+
+* Update queries now use prepared statements.
+
+ *Olli Rissanen*
+
* Fixing issue #8345. Now throwing an error when one attempts to touch a
new object that has not yet been persisted. For instance: