CHANGELOG.md 2.3 KB
Newer Older
1 2 3 4 5 6 7
*   Fix JavaScript views rendering does not work with Firefox when using
    Content Security Policy.

    Fixes #32577.

    *Yuji Yaginuma*

8 9 10 11 12 13
*   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 已提交
14
*   Remove `ActionView::Helpers::RecordTagHelper`.
Y
Yoshiyuki Hirano 已提交
15 16 17

    *Yoshiyuki Hirano*

B
bogdanvlviv 已提交
18
*   Disable `ActionView::Template` finalizers in test environment.
19 20 21 22 23 24 25 26

    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*

27 28 29 30 31 32 33 34
*   Extract the `confirm` call in its own, overridable method in `rails_ujs`.
    Example :
        Rails.confirm = function(message, element) {
          return (my_bootstrap_modal_confirm(message));
        }

    *Mathieu Mahé*

35 36
*   Enable select tag helper to mark `prompt` option as `selected` and/or `disabled` for `required`
    field. Example:
37

B
bogdanvlviv 已提交
38 39 40 41
        select :post,
               :category,
               ["lifestyle", "programming", "spiritual"],
               { selected: "", disabled: "", prompt: "Choose one" },
42
               { required: true }
43

44
    Placeholder option would be selected and disabled. The HTML produced:
45

46 47 48 49 50 51 52 53
        <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 已提交
54
*   Don't enforce UTF-8 by default.
A
Andrew White 已提交
55 56 57 58 59 60 61

    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*

62 63 64 65
*   Change translation key of `submit_tag` from `module_name_class_name` to `module_name/class_name`.

    *Rui Onodera*

J
Jeremy Daer 已提交
66 67 68
*   Rails 6 requires Ruby 2.4.1 or newer.

    *Jeremy Daer*
69 70


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