diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2009-03-24 20:02:08 -0500 |
---|---|---|
committer | Mike Gunderloy <MikeG1@larkfarm.com> | 2009-03-24 20:02:08 -0500 |
commit | 4e27ca4c28432cd735a8ccb82bbaff37941a9d3b (patch) | |
tree | 4ef13601557d9f6e27806106d06f4b098813f72a /railties/guides | |
parent | 9ac0dade6d788bfed8338941dc4f29c19d4923af (diff) | |
download | rails-4e27ca4c28432cd735a8ccb82bbaff37941a9d3b.tar.gz rails-4e27ca4c28432cd735a8ccb82bbaff37941a9d3b.tar.bz2 rails-4e27ca4c28432cd735a8ccb82bbaff37941a9d3b.zip |
Add note about change to session options
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/2_3_release_notes.textile | 2 |
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 2acc07891f..eaf83d7da8 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 session 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. |