diff options
author | Prem Sichanugrist <s@sikachu.com> | 2011-04-28 15:56:11 +0700 |
---|---|---|
committer | Prem Sichanugrist <s@sikachu.com> | 2011-05-03 03:21:43 +0700 |
commit | 8c9e4d520291871e5319bc0e0a890527d8aea099 (patch) | |
tree | d6733837636fe79992e5deb9702b65f98c7cdd6a /actionpack/CHANGELOG | |
parent | 23eb81a3d1eb154a3aefe569408d1bb2ed63c554 (diff) | |
download | rails-8c9e4d520291871e5319bc0e0a890527d8aea099.tar.gz rails-8c9e4d520291871e5319bc0e0a890527d8aea099.tar.bz2 rails-8c9e4d520291871e5319bc0e0a890527d8aea099.zip |
Add `ActionController::ParamsWrapper` to wrap parameters into a nested hash
This will allow us to do a rootless JSON/XML request to server.
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 76dbfe7895..f692b169df 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,9 @@ *Rails 3.1.0 (unreleased)* +* Add `ActionController::ParamsWrapper` to wrap parameters into a nested hash, and will be turned on for JSON request in new applications by default [Prem Sichanugrist] + + This can be customizabled by setting `ActionController::Base.wrap_parameters` in `config/initializer/wrap_parameters.rb` + * RJS has been extracted out to a gem. [fxn] * Implicit actions named not_implemented can be rendered [Santiago Pastorino] |