2013-08-26 22:46:28 -04:00
|
|
|
* Separate Action View completely from Action Pack.
|
2013-08-07 10:34:41 -04:00
|
|
|
|
|
|
|
*Łukasz Strzałkowski*
|
|
|
|
|
2013-08-21 08:42:04 -04:00
|
|
|
* Development mode exceptions are rendered in text format in case of XHR request.
|
|
|
|
|
|
|
|
*Kir Shatrov*
|
|
|
|
|
2013-08-07 15:43:22 -04:00
|
|
|
* Fix an issue where :if and :unless controller action procs were being run
|
|
|
|
before checking for the correct action in the :only and :unless options.
|
|
|
|
|
|
|
|
Fixes #11799
|
|
|
|
|
|
|
|
*Nicholas Jakobsen*
|
|
|
|
|
2013-08-04 08:53:22 -04:00
|
|
|
* Fix an issue where `assert_dom_equal` and `assert_dom_not_equal` were
|
|
|
|
ignoring the passed failure message argument.
|
|
|
|
|
|
|
|
Fixes #11751
|
|
|
|
|
|
|
|
*Ryan McGeary*
|
|
|
|
|
2013-07-25 02:46:54 -04:00
|
|
|
* Allow REMOTE_ADDR, HTTP_HOST and HTTP_USER_AGENT to be overridden from
|
|
|
|
the environment passed into `ActionDispatch::TestRequest.new`.
|
|
|
|
|
|
|
|
Fixes #11590
|
|
|
|
|
|
|
|
*Andrew White*
|
|
|
|
|
2013-07-21 12:10:34 -04:00
|
|
|
* Fix an issue where Journey was failing to clear the named routes hash when the
|
|
|
|
routes were reloaded and since it doesn't overwrite existing routes then if a
|
|
|
|
route changed but wasn't renamed it kept the old definition. This was being
|
|
|
|
masked by the optimised url helpers so it only became apparent when passing an
|
|
|
|
options hash to the url helper.
|
|
|
|
|
|
|
|
*Andrew White*
|
|
|
|
|
2013-07-16 08:27:22 -04:00
|
|
|
* Skip routes pointing to a redirect or mounted application when generating urls
|
|
|
|
using an options hash as they aren't relevant and generate incorrect urls.
|
|
|
|
|
|
|
|
Fixes #8018
|
|
|
|
|
|
|
|
*Andrew White*
|
|
|
|
|
2013-07-12 03:37:15 -04:00
|
|
|
* Move `MissingHelperError` out of the `ClassMethods` module.
|
|
|
|
|
|
|
|
*Yves Senn*
|
|
|
|
|
2013-05-16 09:37:19 -04:00
|
|
|
* Fix an issue where rails raise exception about missing helper where it
|
|
|
|
should throw `LoadError`. When helper file exists and only loaded file from
|
|
|
|
this helper does not exist rails should throw LoadError instead of
|
|
|
|
`MissingHelperError`.
|
|
|
|
|
|
|
|
*Piotr Niełacny*
|
|
|
|
|
2013-07-07 18:32:22 -04:00
|
|
|
* Fix `ActionDispatch::ParamsParser#parse_formatted_parameters` to rewind body input stream on
|
|
|
|
parsing json params.
|
|
|
|
|
|
|
|
Fixes #11345
|
|
|
|
|
|
|
|
*Yuri Bol*, *Paul Nikitochkin*
|
|
|
|
|
2013-06-26 16:59:16 -04:00
|
|
|
* Ignore spaces around delimiter in Set-Cookie header.
|
|
|
|
|
|
|
|
*Yamagishi Kazutoshi*
|
|
|
|
|
2013-07-02 21:59:59 -04:00
|
|
|
* Remove deprecated Rails application fallback for integration testing, set
|
|
|
|
`ActionDispatch.test_app` instead.
|
|
|
|
|
|
|
|
*Carlos Antonio da Silva*
|
|
|
|
|
2013-07-01 23:09:11 -04:00
|
|
|
* Remove deprecated `page_cache_extension` config.
|
|
|
|
|
|
|
|
*Francesco Rodriguez*
|
|
|
|
|
2013-07-01 21:19:32 -04:00
|
|
|
* Remove deprecated constants from Action Controller:
|
|
|
|
|
|
|
|
ActionController::AbstractRequest => ActionDispatch::Request
|
|
|
|
ActionController::Request => ActionDispatch::Request
|
|
|
|
ActionController::AbstractResponse => ActionDispatch::Response
|
|
|
|
ActionController::Response => ActionDispatch::Response
|
|
|
|
ActionController::Routing => ActionDispatch::Routing
|
|
|
|
ActionController::Integration => ActionDispatch::Integration
|
|
|
|
ActionController::IntegrationTest => ActionDispatch::IntegrationTest
|
|
|
|
|
|
|
|
*Carlos Antonio da Silva*
|
|
|
|
|
2013-06-25 18:34:20 -04:00
|
|
|
* Fix `Mime::Type.parse` when bad accepts header is looked up. Previously it
|
|
|
|
was setting `request.formats` with an array containing a `nil` value, which
|
|
|
|
raised an error when setting the controller formats.
|
2013-06-18 17:22:30 -04:00
|
|
|
|
2013-06-25 18:34:20 -04:00
|
|
|
Fixes #10965
|
2013-06-16 10:39:03 -04:00
|
|
|
|
2013-06-25 18:34:20 -04:00
|
|
|
*Becker*
|
2013-06-16 10:39:03 -04:00
|
|
|
|
2013-06-25 01:04:26 -04:00
|
|
|
* Merge `:action` from routing scope and assign endpoint if both `:controller`
|
|
|
|
and `:action` are present. The endpoint assignment only occurs if there is
|
|
|
|
no `:to` present in the options hash so should only affect routes using the
|
2013-06-25 06:25:03 -04:00
|
|
|
shorthand syntax (i.e. endpoint is inferred from the path).
|
2013-06-25 01:04:26 -04:00
|
|
|
|
|
|
|
Fixes #9856
|
|
|
|
|
|
|
|
*Yves Senn*, *Andrew White*
|
|
|
|
|
2013-06-20 13:06:52 -04:00
|
|
|
* ActionView extracted from ActionPack
|
2013-06-16 20:37:23 -04:00
|
|
|
|
2013-06-20 13:06:52 -04:00
|
|
|
*Piotr Sarnacki*, *Łukasz Strzałkowski*
|
2013-04-18 12:11:12 -04:00
|
|
|
|
2013-06-21 02:51:28 -04:00
|
|
|
* Fix removing trailing slash for mounted apps #3215
|
|
|
|
|
|
|
|
*Piotr Sarnacki*
|
|
|
|
|
2013-04-29 12:06:45 -04:00
|
|
|
Please check [4-0-stable](https://github.com/rails/rails/blob/4-0-stable/actionpack/CHANGELOG.md) for previous changes.
|