2018-02-17 16:02:18 -05:00
|
|
|
## Rails 6.0.0.alpha (Unreleased) ##
|
|
|
|
|
2018-02-22 13:37:15 -05:00
|
|
|
* Enable select tag helper to mark `prompt` option as `selected` and/or `disabled` for `required`
|
|
|
|
field. Example:
|
2018-02-28 06:45:35 -05:00
|
|
|
|
2018-02-22 13:37:15 -05:00
|
|
|
select :post,
|
|
|
|
:category,
|
|
|
|
["lifestyle", "programming", "spiritual"],
|
|
|
|
{ selected: "", disabled: "", prompt: "Choose one" },
|
|
|
|
{ required: true }
|
2018-02-28 06:45:35 -05:00
|
|
|
|
2018-02-22 13:37:15 -05:00
|
|
|
Placeholder option would be selected and disabled. The HTML produced:
|
2018-02-28 06:45:35 -05:00
|
|
|
|
2018-02-22 13:37:15 -05:00
|
|
|
<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*
|
|
|
|
|
2018-02-27 06:07:04 -05:00
|
|
|
* Don't enforce UTF-8 by default
|
|
|
|
|
|
|
|
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*
|
|
|
|
|
2016-10-16 08:21:03 -04:00
|
|
|
* Change translation key of `submit_tag` from `module_name_class_name` to `module_name/class_name`.
|
|
|
|
|
|
|
|
*Rui Onodera*
|
|
|
|
|
2018-02-17 16:02:18 -05:00
|
|
|
* Rails 6 requires Ruby 2.4.1 or newer.
|
|
|
|
|
|
|
|
*Jeremy Daer*
|
2017-12-01 11:56:45 -05:00
|
|
|
|
|
|
|
|
2018-01-30 18:51:17 -05:00
|
|
|
Please check [5-2-stable](https://github.com/rails/rails/blob/5-2-stable/actionview/CHANGELOG.md) for previous changes.
|