aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-12-16 10:45:25 +0100
committerJosé Valim <jose.valim@gmail.com>2011-12-16 10:45:59 +0100
commit6481bc5f49ef26e8fde68ac964dc984d12f33189 (patch)
treebdeccf0e52d940bbdc3451ca29b0a21426df71a4 /actionpack/CHANGELOG.md
parent654df86b7b022085785a64c431c45d8450d5e987 (diff)
downloadrails-6481bc5f49ef26e8fde68ac964dc984d12f33189.tar.gz
rails-6481bc5f49ef26e8fde68ac964dc984d12f33189.tar.bz2
rails-6481bc5f49ef26e8fde68ac964dc984d12f33189.zip
Update CHANGELOGs and guides.
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index c7cf9a8203..b753addef4 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 3.2.0 (unreleased) ##
+* The ShowExceptions middleware now accepts a exceptions application that is responsible to render an exception when the application fails. The application is invoked with a copy of the exception in `env["action_dispatch.exception"]` and with the PATH_INFO rewritten to the status code. *José Valim*
+
* Add `button_tag` support to ActionView::Helpers::FormBuilder.
This support mimics the default behavior of `submit_tag`.