Update actionpack/CHANGELOG.md

This commit is contained in:
José Valim 2012-05-06 12:11:40 +03:00
parent 13811eef77
commit c02846ff52
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
## Rails 4.0.0 (unreleased) ##
* `respond_to` and `respond_with` now raise ActionController::UnknownFormat instead
of directly returning head 406. The exception is rescued and converted to 406
in the exception handling middleware. *Steven Soroka*
* Allows `assert_redirected_to` to match against a regular expression. *Andy Lindeman*
* Add backtrace to development routing error page. *Richard Schneeman*
@ -12,7 +16,7 @@
* Make current object and counter (when it applies) variables accessible when
rendering templates with :object / :collection. *Carlos Antonio da Silva*
* JSONP now uses mimetype application/javascript instead of application/json *omjokine*
* JSONP now uses mimetype application/javascript instead of application/json. *omjokine*
* Allow to lazy load `default_form_builder` by passing a `String` instead of a constant. *Piotr Sarnacki*