aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikachu.com>2011-01-02 03:35:38 +0700
committerPrem Sichanugrist <s@sikachu.com>2011-01-02 03:35:38 +0700
commit1f8ecb85d7c1b3efdf45c3cf3461502b608c1a7c (patch)
treeec99d76a47a95a85f15febb5056e028e52e4815a /actionpack
parent56221faecdb47163cb463531506821aa6ba50370 (diff)
downloadrails-1f8ecb85d7c1b3efdf45c3cf3461502b608c1a7c.tar.gz
rails-1f8ecb85d7c1b3efdf45c3cf3461502b608c1a7c.tar.bz2
rails-1f8ecb85d7c1b3efdf45c3cf3461502b608c1a7c.zip
Update CHANGELOGs to include 3.0.3 changes
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG12
1 files changed, 11 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 78fadce6cb..c237530c0e 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -33,14 +33,24 @@
* Add Rack::Cache to the default stack. Create a Rails store that delegates to the Rails cache, so by default, whatever caching layer you are using will be used for HTTP caching. Note that Rack::Cache will be used if you use #expires_in, #fresh_when or #stale with :public => true. Otherwise, the caching rules will apply to the browser only. [Yehuda Katz, Carl Lerche]
-*Rails 3.0.2 (unreleased)*
+
+*Rails 3.0.3 (November 16, 2010)*
+
+* When ActiveRecord::Base objects are sent to predicate methods, the id of the object should be sent to ARel, not the ActiveRecord::Base object.
+
+* :constraints routing should only do sanity checks against regular expressions. String arguments are OK.
+
+
+*Rails 3.0.2 (November 15, 2010)*
* The helper number_to_currency accepts a new :negative_format option to be able to configure how to render negative amounts. [Don Wilson]
+
*Rails 3.0.1 (October 15, 2010)*
* No Changes, just a version bump.
+
*Rails 3.0.0 (August 29, 2010)*
* password_field renders with nil value by default making the use of passwords secure by default, if you want to render you should do for instance f.password_field(:password, :value => @user.password) [Santiago Pastorino]