aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-09-25 00:21:15 +0200
committerXavier Noria <fxn@hashref.com>2012-09-25 00:22:22 +0200
commit9bcd018b60a3ec791b8507ab7aebaa9dc40815ee (patch)
treefe0e8ad1f22572d30c8a3c5bd99858f1e351cc0e
parent86be49a602c9afbf383e2f25d5b8e79d3201dd98 (diff)
downloadrails-9bcd018b60a3ec791b8507ab7aebaa9dc40815ee.tar.gz
rails-9bcd018b60a3ec791b8507ab7aebaa9dc40815ee.tar.bz2
rails-9bcd018b60a3ec791b8507ab7aebaa9dc40815ee.zip
gives credit to Aaron in the CHANGELOG entry for AC::Live
-rw-r--r--actionpack/CHANGELOG.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 5a3b4dc4a2..768b217f1c 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -211,7 +211,7 @@
* Fixed issue with where Digest authentication would not work behind a proxy. *Arthur Smith*
-* Added ActionController::Live. Mix it in to your controller and you can
+* Added `ActionController::Live`. Mix it in to your controller and you can
stream data to the client live. For example:
class FooController < ActionController::Base
@@ -227,7 +227,9 @@
end
end
-* Remove ActionDispatch::Head middleware in favor of Rack::Head. *Santiago Pastorino*
+ *Aaron Patterson*
+
+* Remove `ActionDispatch::Head` middleware in favor of `Rack::Head`. *Santiago Pastorino*
* Deprecate `:confirm` in favor of `:data => { :confirm => "Text" }` option for `button_to`, `button_tag`, `image_submit_tag`, `link_to` and `submit_tag` helpers.