diff options
author | José Valim <jose.valim@gmail.com> | 2010-10-10 12:40:47 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-10-10 12:43:26 +0200 |
commit | cba395dab9812d86d48cc0574061cd6dcd18009b (patch) | |
tree | ac4045c541b55fc8f7f84fba461f80071014e224 /actionpack/CHANGELOG | |
parent | 940b57789fb9166658974c591e68d22ecab29f34 (diff) | |
download | rails-cba395dab9812d86d48cc0574061cd6dcd18009b.tar.gz rails-cba395dab9812d86d48cc0574061cd6dcd18009b.tar.bz2 rails-cba395dab9812d86d48cc0574061cd6dcd18009b.zip |
Update CHANGELOG.
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 6352b97a6b..3f8188b1f7 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,13 @@ *Rails 3.1.0 (unreleased)* +* Added render :once. You can pass either a string or an array of strings and Rails will ensure they each of them are rendered just once. [José Valim] + +* Deprecate old template handler API. The new API simply requires a template handler to respond to call. [José Valim] + +* :rhtml and :rxml were finally removed as template handlers. [José Valim] + +* Moved etag responsibility from ActionDispatch::Response to the middleware stack. [José Valim] + * Rely on Rack::Session stores API for more compatibility across the Ruby world. This is backwards incompatible since Rack::Session expects #get_session to accept 4 arguments and requires #destroy_session instead of simply #destroy. [José Valim] * file_field automatically adds :multipart => true to the enclosing form. [Santiago Pastorino] |