aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-01-02 02:54:36 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-01-02 02:54:36 +0530
commit231e6b7e66596199474853a8a490d92a54be0909 (patch)
treec858c2b1e66c9243dc2e793e1fcdfa560d40178e
parentebb732a7ecc0502299ee5948c31f536c3d6ef15c (diff)
parent1f8ecb85d7c1b3efdf45c3cf3461502b608c1a7c (diff)
downloadrails-231e6b7e66596199474853a8a490d92a54be0909.tar.gz
rails-231e6b7e66596199474853a8a490d92a54be0909.tar.bz2
rails-231e6b7e66596199474853a8a490d92a54be0909.zip
Merge branch 'master' of github.com:lifo/docrails
-rw-r--r--actionmailer/CHANGELOG12
-rw-r--r--actionpack/CHANGELOG12
-rw-r--r--activemodel/CHANGELOG7
-rw-r--r--activerecord/CHANGELOG10
-rw-r--r--activeresource/CHANGELOG10
-rw-r--r--activesupport/CHANGELOG10
-rw-r--r--railties/CHANGELOG12
7 files changed, 66 insertions, 7 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 167c1da9c5..b500718476 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -2,14 +2,22 @@
* No changes
-*Rails 3.0.2 (unreleased)*
-* No changes
+*Rails 3.0.3 (November 16, 2010)*
+
+* No changes.
+
+
+*Rails 3.0.2 (November 15, 2010)*
+
+* No changes.
+
*Rails 3.0.1 (October 15, 2010)*
* No Changes, just a version bump.
+
*Rails 3.0.0 (August 29, 2010)*
* subject is automatically looked up on I18n using mailer_name and action_name as scope as in t(".subject") [JK]
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]
diff --git a/activemodel/CHANGELOG b/activemodel/CHANGELOG
index 9dd5e03685..ea91c97ba2 100644
--- a/activemodel/CHANGELOG
+++ b/activemodel/CHANGELOG
@@ -3,7 +3,12 @@
* Added ActiveModel::SecurePassword to encapsulate dead-simple password usage with BCrypt encryption and salting [DHH]
-*Rails 3.0.2 (unreleased)*
+*Rails 3.0.3 (November 16, 2010)*
+
+* No changes.
+
+
+*Rails 3.0.2 (November 15, 2010)*
* No changes
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 8ebc87145c..da4bd4f1cb 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -103,7 +103,13 @@ IrreversibleMigration exception will be raised when going down.
[Aaron Patterson]
-*Rails 3.0.2 (unreleased)*
+
+*Rails 3.0.3 (November 16, 2010)*
+
+* Support find by class like this: Post.where(:name => Post)
+
+
+*Rails 3.0.2 (November 15, 2010)*
* reorder is deprecated in favor of except(:order).order(...) [Santiago Pastorino]
@@ -132,10 +138,12 @@ IrreversibleMigration exception will be raised when going down.
[Aaron Patterson]
+
*Rails 3.0.1 (October 15, 2010)*
* Introduce a fix for CVE-2010-3993
+
*Rails 3.0.0 (August 29, 2010)*
* Changed update_attribute to not run callbacks and update the record directly in the database [Neeraj Singh]
diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG
index 386bafd7de..e9fd772d0c 100644
--- a/activeresource/CHANGELOG
+++ b/activeresource/CHANGELOG
@@ -2,14 +2,22 @@
* No changes
-*Rails 3.0.2 (unreleased)*
+
+*Rails 3.0.3 (November 16, 2010)*
* No changes
+
+*Rails 3.0.2 (November 15, 2010)*
+
+* No changes
+
+
*Rails 3.0.1 (October 15, 2010)*
* No Changes, just a version bump.
+
*Rails 3.0.0 (August 29, 2010)*
* JSON: set Base.include_root_in_json = true to include a root value in the JSON: {"post": {"title": ...}}. Mirrors the Active Record option. [Santiago Pastorino]
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 6e8cce0d27..58cfc86c41 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -4,14 +4,22 @@
* Added before_remove_const callback to ActiveSupport::Dependencies.remove_unloadable_constants! [Andrew White]
-*Rails 3.0.2 (unreleased)*
+
+*Rails 3.0.3 (November 16, 2010)*
+
+* No changes.
+
+
+*Rails 3.0.2 (November 15, 2010)*
* Added before_remove_const callback to ActiveSupport::Dependencies.remove_unloadable_constants! [Andrew White]
+
*Rails 3.0.1 (October 15, 2010)*
* No Changes, just a version bump.
+
*Rails 3.0.0 (August 29, 2010)*
* Implemented String#strip_heredoc. [fxn]
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 75f1df44e7..2db2c5c89d 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -26,10 +26,22 @@
* Include all helpers from plugins and shared engines in application [Piotr Sarnacki]
+
+*Rails 3.0.3 (November 16, 2010)*
+
+* No changes.
+
+
+*Rails 3.0.2 (November 15, 2010)*
+
+* No changes.
+
+
*Rails 3.0.1 (October 15, 2010)*
* No Changes, just a version bump.
+
*Rails 3.0.0 (August 29, 2010)*
* Application generation: --skip-testunit and --skip-activerecord become --skip-test-unit and --skip-active-record respectively. [fxn]