aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/2_3_release_notes.textile
diff options
context:
space:
mode:
authorMike Gunderloy <MikeG1@larkfarm.com>2009-02-28 11:46:25 -0600
committerMike Gunderloy <MikeG1@larkfarm.com>2009-02-28 11:46:50 -0600
commit559c394ec4b09ed474c582613c01d7e829fcb1ca (patch)
tree4206d8313d0525f9a79e4b0b232e671b7eac582d /railties/guides/source/2_3_release_notes.textile
parentf259cbd959627d7f7617ae6ea6024c88f850cc54 (diff)
downloadrails-559c394ec4b09ed474c582613c01d7e829fcb1ca.tar.gz
rails-559c394ec4b09ed474c582613c01d7e829fcb1ca.tar.bz2
rails-559c394ec4b09ed474c582613c01d7e829fcb1ca.zip
Update 2.3 release notes.
Diffstat (limited to 'railties/guides/source/2_3_release_notes.textile')
-rw-r--r--railties/guides/source/2_3_release_notes.textile3
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/guides/source/2_3_release_notes.textile b/railties/guides/source/2_3_release_notes.textile
index 051379c437..c58cbc0b81 100644
--- a/railties/guides/source/2_3_release_notes.textile
+++ b/railties/guides/source/2_3_release_notes.textile
@@ -320,6 +320,7 @@ h4. Other Action Controller Changes
* You can now use symbols for the +:type+ option of +send_file+ and +send_data+, like this: +send_file("fabulous.png", :type => :png)+.
* The +:only+ and +:except+ options for +map.resources+ are no longer inherited by nested resources.
* The bundled memcached client has been updated to version 1.6.4.99.
+* The +expires_in+, +stale?+, and +fresh_when+ methods now accept a +:public+ option to make them work well with proxy caching.
h3. Action View
@@ -448,7 +449,7 @@ In most cases, you'll want template caching to be turned on in production, which
config.action_view.cache_template_loading = true
</ruby>
-This line will be generated for you by default in a new Rails 2.3 application. But please note: if you've upgraded from an older version of Rails, you won't have this setting in your +production.rb+ and template caching will be off by default. Unless you really need the ability to update templates in production without restarting the server, you should be sure to add this setting when you upgrade.
+This line will be generated for you by default in a new Rails 2.3 application. If you've upgraded from an older version of Rails, Rails will default to caching templates in production and test but not in development.
h4. Other Action View Changes