CHANGELOG.md 1.5 KB
Newer Older
1 2 3 4 5
## Rails 5.2.0.beta2 (November 28, 2017) ##

*   No changes.


6 7
## Rails 5.2.0.beta1 (November 27, 2017) ##

8 9 10 11 12 13 14 15 16 17 18
*   Change `form_with` to generates ids by default.

    When `form_with` was introduced we disabled the automatic generation of ids
    that was enabled in `form_for`. This usually is not an good idea since labels don't work
    when the input doesn't have an id and it made harder to test with Capybara.

    You can still disable the automatic generation of ids setting `config.action_view.form_with_generates_ids`
    to `false.`

    *Nick Pezza*

19 20 21 22 23 24
*   Fix issues with `field_error_proc` wrapping `optgroup` and select divider `option`.

    Fixes #31088

    *Matthias Neumayr*

25 26 27 28
*   Remove deprecated Erubis ERB handler.

    *Rafael Mendonça França*

29 30 31 32 33 34
*   Remove default `alt` text generation.

    Fixes #30096

    *Cameron Cundiff*

35
*   Add `srcset` option to `image_tag` helper.
36 37 38

    *Roberto Miranda*

R
Ryuta Kamizono 已提交
39 40
*   Fix issues with scopes and engine on `current_page?` method.

S
savroff 已提交
41
    Fixes #29401.
R
Ryuta Kamizono 已提交
42

S
savroff 已提交
43
    *Nikita Savrov*
R
Ryuta Kamizono 已提交
44

45 46 47 48 49 50 51 52
*   Generate field ids in `collection_check_boxes` and `collection_radio_buttons`.

    This makes sure that the labels are linked up with the fields.

    Fixes #29014.

    *Yuji Yaginuma*

53 54 55 56
*   Add `:json` type to `auto_discovery_link_tag` to support [JSON Feeds](https://jsonfeed.org/version/1)

    *Mike Gunderloy*

R
Ryuta Kamizono 已提交
57
*   Update `distance_of_time_in_words` helper to display better error messages
58 59 60 61
    for bad input.

    *Jay Hayes*

R
Ryuta Kamizono 已提交
62

M
Matthew Draper 已提交
63
Please check [5-1-stable](https://github.com/rails/rails/blob/5-1-stable/actionview/CHANGELOG.md) for previous changes.