CHANGELOG.md 1.5 KB
Newer Older
1 2 3 4 5 6 7 8
*   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é*

9 10
*   Enable select tag helper to mark `prompt` option as `selected` and/or `disabled` for `required`
    field. Example:
11

B
bogdanvlviv 已提交
12 13 14 15
        select :post,
               :category,
               ["lifestyle", "programming", "spiritual"],
               { selected: "", disabled: "", prompt: "Choose one" },
16
               { required: true }
17

18
    Placeholder option would be selected and disabled. The HTML produced:
19

20 21 22 23 24 25 26 27
        <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 已提交
28
*   Don't enforce UTF-8 by default.
A
Andrew White 已提交
29 30 31 32 33 34 35

    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*

36 37 38 39
*   Change translation key of `submit_tag` from `module_name_class_name` to `module_name/class_name`.

    *Rui Onodera*

J
Jeremy Daer 已提交
40 41 42
*   Rails 6 requires Ruby 2.4.1 or newer.

    *Jeremy Daer*
43 44


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