diff options
author | Xavier Noria <fxn@hashref.com> | 2012-09-25 00:21:15 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-09-25 00:22:22 +0200 |
commit | 9bcd018b60a3ec791b8507ab7aebaa9dc40815ee (patch) | |
tree | fe0e8ad1f22572d30c8a3c5bd99858f1e351cc0e /actionpack | |
parent | 86be49a602c9afbf383e2f25d5b8e79d3201dd98 (diff) | |
download | rails-9bcd018b60a3ec791b8507ab7aebaa9dc40815ee.tar.gz rails-9bcd018b60a3ec791b8507ab7aebaa9dc40815ee.tar.bz2 rails-9bcd018b60a3ec791b8507ab7aebaa9dc40815ee.zip |
gives credit to Aaron in the CHANGELOG entry for AC::Live
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/CHANGELOG.md | 6 |
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. |