CHANGELOG.md 2.1 KB
Newer Older
1 2 3 4
*   Remove deprecated support to define routes with `:to` option that doesn't contain `#`.

    *Rafael Mendonça França*

5 6 7 8
*   Remove deprecated `ActionDispatch::Response#to_ary`.

    *Rafael Mendonça França*

9 10 11 12
*   Remove deprecated `ActionDispatch::Request#deep_munge`.

    *Rafael Mendonça França*

13 14 15 16
*   Remove deprecated `ActionDispatch::Http::Parameters#symbolized_path_parameters`.

    *Rafael Mendonça França*

17 18 19 20
*   Remove deprecated option `use_route` in controller tests.

    *Rafael Mendonça França*

21 22 23 24 25 26
*   Ensure `append_info_to_payload` is called even if an exception is raised.

    Fixes an issue where when an exception is raised in the request the additonal
    payload data is not available.

    See:
27
    * #14903
28 29 30 31
    * https://github.com/roidrage/lograge/issues/37

    *Dieter Komendera*, *Margus Pärt*

32 33 34 35
*   Correctly rely on the response's status code to handle calls to `head`.

    *Robin Dupret*

36 37 38 39 40 41 42 43 44 45 46 47
*   Using `head` method returns empty response_body instead
    of returning a single space " ".

    The old behavior was added as a workaround for a bug in an early
    version of Safari, where the HTTP headers are not returned correctly
    if the response body has a 0-length. This is been fixed since and
    the workaround is no longer necessary.

    Fixes #18253.

    *Prathamesh Sonpatki*

48 49 50 51
*   Fix how polymorphic routes works with objects that implement `to_model`.

    *Travis Grathwell*

52 53 54 55 56 57 58 59 60 61 62
*   Stop converting empty arrays in `params` to `nil`

    This behaviour was introduced in response to CVE-2012-2660, CVE-2012-2694
    and CVE-2013-0155

    ActiveRecord now issues a safe query when passing an empty array into
    a where clause, so there is no longer a need to defend against this type
    of input (any nils are still stripped from the array).

    *Chris Sinjakli*

Y
Yves Senn 已提交
63
*   Fixed usage of optional scopes in url helpers.
64 65 66

    *Alex Robbin*

Y
Yves Senn 已提交
67
*   Fixed handling of positional url helper arguments when `format: false`.
68 69 70 71 72

    Fixes #17819.

    *Andrew White*, *Tatiana Soukiassian*

73
Please check [4-2-stable](https://github.com/rails/rails/blob/4-2-stable/actionpack/CHANGELOG.md) for previous changes.