aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/3_2_release_notes.textile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-01-19 02:50:59 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-01-19 02:50:59 +0530
commitd843a943b343023bcbaa9e34d912d2807927cacd (patch)
tree63fdb64df6295ca4dc49d98b0731552c3726aeeb /railties/guides/source/3_2_release_notes.textile
parent423b2626d85f75bb5fec03909ff8963bded7c7d5 (diff)
parent68d389a99afa7d7de47f33a792322fe216f18365 (diff)
downloadrails-d843a943b343023bcbaa9e34d912d2807927cacd.tar.gz
rails-d843a943b343023bcbaa9e34d912d2807927cacd.tar.bz2
rails-d843a943b343023bcbaa9e34d912d2807927cacd.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/guides/source/3_2_release_notes.textile')
-rw-r--r--railties/guides/source/3_2_release_notes.textile8
1 files changed, 7 insertions, 1 deletions
diff --git a/railties/guides/source/3_2_release_notes.textile b/railties/guides/source/3_2_release_notes.textile
index 439cd5f714..8b242df179 100644
--- a/railties/guides/source/3_2_release_notes.textile
+++ b/railties/guides/source/3_2_release_notes.textile
@@ -142,6 +142,12 @@ h4. Deprecations
* +Rails::Plugin+ is deprecated and will be removed in Rails 4.0. Instead of adding plugins to +vendor/plugins+ use gems or bundler with path or git dependencies.
+h3. Action Mailer
+
+* Upgraded <tt>mail</tt> version to 2.4.0.
+
+* Removed the old Action Mailer API which was deprecated since Rails 3.0.
+
h3. Action Pack
h4. Action Controller
@@ -284,7 +290,7 @@ h5. Deprecations
* Passing formats or handlers to render :template and friends like <tt>render :template => "foo.html.erb"</tt> is deprecated. Instead, you can provide :handlers and :formats directly as an options: <tt> render :template => "foo", :formats => [:html, :js], :handlers => :erb</tt>.
-h3. Sprockets
+h4. Sprockets
* Adds a configuration option <tt>config.assets.logger</tt> to control Sprockets logging. Set it to +false+ to turn off logging and to +nil+ to default to +Rails.logger+.