aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-01-13 18:40:34 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2012-01-13 19:46:13 -0200
commit29fdd8c7779ec2ba74cfb742e8fcef47bfae6c09 (patch)
tree6b3e2d17d08928eea7e7cf7c478610ea18f5d262 /railties/guides
parent161c857b9b9adce4d6fe0145120805b78d3d4c65 (diff)
downloadrails-29fdd8c7779ec2ba74cfb742e8fcef47bfae6c09.tar.gz
rails-29fdd8c7779ec2ba74cfb742e8fcef47bfae6c09.tar.bz2
rails-29fdd8c7779ec2ba74cfb742e8fcef47bfae6c09.zip
Use a BodyProxy instead of including a Module that responds to close.
Closes #4441 if Active Record is disabled assets are delivered correctly
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/3_2_release_notes.textile2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/3_2_release_notes.textile b/railties/guides/source/3_2_release_notes.textile
index ba536ed278..41f565ea28 100644
--- a/railties/guides/source/3_2_release_notes.textile
+++ b/railties/guides/source/3_2_release_notes.textile
@@ -215,6 +215,8 @@ In the example above, Posts controller will no longer automatically look up for
h4. Action Dispatch
+* Use a BodyProxy instead of including a Module that responds to close. Closes #4441 if Active Record is disabled assets are delivered correctly.
+
* Added <tt>ActionDispatch::RequestId</tt> middleware that'll make a unique X-Request-Id header available to the response and enables the <tt>ActionDispatch::Request#uuid</tt> method. This makes it easy to trace requests from end-to-end in the stack and to identify individual requests in mixed logs like Syslog.
* The <tt>ShowExceptions</tt> 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 <tt>PATH_INFO</tt> rewritten to the status code.