CHANGELOG.md 4.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
*   Add allocations to template rendering instrumentation.

    Adds the allocations for template and partial rendering to the server output on render.

    ```
      Rendered posts/_form.html.erb (Duration: 7.1ms | Allocations: 6004)
      Rendered posts/new.html.erb within layouts/application (Duration: 8.3ms | Allocations: 6654)
    Completed 200 OK in 858ms (Views: 848.4ms | ActiveRecord: 0.4ms | Allocations: 1539564)
    ```

    *Eileen M. Uchitelle*, *Aaron Patterson*

13 14 15 16 17 18
*   Respect the `only_path` option passed to `url_for` when the options are passed in as an array
    
    Fixes #33237.

    *Joel Ambass*

19
*   Deprecate calling private model methods from view helpers.
20

21 22 23
    For example, in methods like `options_from_collection_for_select`
    and `collection_select` it is possible to call private methods from
    the objects used.
24

25
    Fixes #33546.
26

27
    *Ana María Martínez Gómez*
28

29 30 31 32 33 34 35 36 37 38 39
*   Fix issue with `button_to`'s `to_form_params`

    `button_to` was throwing exception when invoked with `params` hash that
    contains symbol and string keys. The reason for the exception was that
    `to_form_params` was comparing the given symbol and string keys.

    The issue is fixed by turning all keys to strings inside
    `to_form_params` before comparing them.

    *Georgi Georgiev*

40 41 42
*   Mark arrays of translations as trusted safe by using the `_html` suffix.

    Example:
43 44 45 46 47 48 49 50 51

        en:
          foo_html:
            - "One"
            - "<strong>Two</strong>"
            - "Three &#128075; &#128578;"

    *Juan Broullon*

52
*   Add `year_format` option to date_select tag. This option makes it possible to customize year
53 54 55
    names. Lambda should be passed to use this option.

    Example:
56 57 58

        date_select('user_birthday', '', start_year: 1998, end_year: 2000, year_format: ->year { "Heisei #{year - 1988}" })

59
    The HTML produced:
60 61 62 63 64 65 66 67 68 69

        <select id="user_birthday__1i" name="user_birthday[(1i)]">
        <option value="1998">Heisei 10</option>
        <option value="1999">Heisei 11</option>
        <option value="2000">Heisei 12</option>
        </select>
        /* The rest is omitted */

    *Koki Ryu*

70 71 72 73 74 75 76
*   Fix JavaScript views rendering does not work with Firefox when using
    Content Security Policy.

    Fixes #32577.

    *Yuji Yaginuma*

77 78 79 80 81 82
*   Add the `nonce: true` option for `javascript_include_tag` helper to
    support automatic nonce generation for Content Security Policy.
    Works the same way as `javascript_tag nonce: true` does.

    *Yaroslav Markin*

B
bogdanvlviv 已提交
83
*   Remove `ActionView::Helpers::RecordTagHelper`.
Y
Yoshiyuki Hirano 已提交
84 85 86

    *Yoshiyuki Hirano*

B
bogdanvlviv 已提交
87
*   Disable `ActionView::Template` finalizers in test environment.
88 89 90 91 92 93 94 95

    Template finalization can be expensive in large view test suites.
    Add a configuration option,
    `action_view.finalize_compiled_template_methods`, and turn it off in
    the test environment.

    *Simon Coffey*

96
*   Extract the `confirm` call in its own, overridable method in `rails_ujs`.
R
Ryuta Kamizono 已提交
97 98 99

    Example:

100 101 102 103 104 105
        Rails.confirm = function(message, element) {
          return (my_bootstrap_modal_confirm(message));
        }

    *Mathieu Mahé*

106
*   Enable select tag helper to mark `prompt` option as `selected` and/or `disabled` for `required`
R
Ryuta Kamizono 已提交
107 108 109
    field.

    Example:
110

B
bogdanvlviv 已提交
111 112 113 114
        select :post,
               :category,
               ["lifestyle", "programming", "spiritual"],
               { selected: "", disabled: "", prompt: "Choose one" },
115
               { required: true }
116

R
Ryuta Kamizono 已提交
117 118 119
    Placeholder option would be selected and disabled.

    The HTML produced:
120

121 122 123 124 125 126 127 128
        <select required="required" name="post[category]" id="post_category">
        <option disabled="disabled" selected="selected" value="">Choose one</option>
        <option value="lifestyle">lifestyle</option>
        <option value="programming">programming</option>
        <option value="spiritual">spiritual</option></select>

    *Sergey Prikhodko*

B
bogdanvlviv 已提交
129
*   Don't enforce UTF-8 by default.
A
Andrew White 已提交
130 131 132 133 134 135 136

    With the disabling of TLS 1.0 by most major websites, continuing to run
    IE8 or lower becomes increasingly difficult so default to not enforcing
    UTF-8 encoding as it's not relevant to other browsers.

    *Andrew White*

137 138 139 140
*   Change translation key of `submit_tag` from `module_name_class_name` to `module_name/class_name`.

    *Rui Onodera*

J
Jeremy Daer 已提交
141 142 143
*   Rails 6 requires Ruby 2.4.1 or newer.

    *Jeremy Daer*
144 145


146
Please check [5-2-stable](https://github.com/rails/rails/blob/5-2-stable/actionview/CHANGELOG.md) for previous changes.