aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/2_3_release_notes.textile
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-04-04 17:33:36 +0100
committerPratik Naik <pratiknaik@gmail.com>2009-04-05 12:36:36 +0100
commit632bbbfe1cc49ab92c6de858865ffcdcfa67635f (patch)
treefa6a13ae99b4abd1e8328b99c5fa370c65c879d2 /railties/guides/source/2_3_release_notes.textile
parent1ab7c37671d7c0cd9d8698bd462916a7e6f95470 (diff)
downloadrails-632bbbfe1cc49ab92c6de858865ffcdcfa67635f.tar.gz
rails-632bbbfe1cc49ab92c6de858865ffcdcfa67635f.tar.bz2
rails-632bbbfe1cc49ab92c6de858865ffcdcfa67635f.zip
Merge docrails
Diffstat (limited to 'railties/guides/source/2_3_release_notes.textile')
-rw-r--r--railties/guides/source/2_3_release_notes.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/2_3_release_notes.textile b/railties/guides/source/2_3_release_notes.textile
index cc2e2dc20c..6a97fd2cd1 100644
--- a/railties/guides/source/2_3_release_notes.textile
+++ b/railties/guides/source/2_3_release_notes.textile
@@ -32,7 +32,7 @@ Here's a summary of the rack-related changes:
* +CGI::Session::MemCacheStore+ has been replaced by +ActionController::Session::MemCacheStore+.
* +CGI::Session::ActiveRecordStore+ has been replaced by +ActiveRecord::SessionStore+.
* You can still change your session store with +ActionController::Base.session_store = :active_record_store+.
-* Default sessions options are still set with +ActionController::Base.session = { :key => "..." }+.
+* Default sessions options are still set with +ActionController::Base.session = { :key => "..." }+. However, the +:session_domain+ option has been renamed to +:domain+.
* The mutex that normally wraps your entire request has been moved into middleware, +ActionController::Lock+.
* +ActionController::AbstractRequest+ and +ActionController::Request+ have been unified. The new +ActionController::Request+ inherits from +Rack::Request+. This affects access to +response.headers['type']+ in test requests. Use +response.content_type+ instead.
* +ActiveRecord::QueryCache+ middleware is automatically inserted onto the middleware stack if +ActiveRecord+ has been loaded. This middleware sets up and flushes the per-request Active Record query cache.