mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9a74c7b99b
- Auto-generating content from the filename of an image is not suitable alternative text; alt text that isn't fully considered can be distracting and fatiguing for screen readers users (blind, low vision, dyslexic people). - Setting a filename fallback short circuits screen reader default behavior and configuration for blank descriptions. - Setting poor defaults also creates false negatives for accessibility linting and testing software, that makes it harder to improve application accessibility. *** - After this change, if authors leave images without alt text, screen readers will fallback to default behavior for missing alt text. - Also with this change, Automated linting and testing tools will correctly generate warnings. [Fixes #30096]
35 lines
819 B
Markdown
35 lines
819 B
Markdown
* Remove default `alt` text generation.
|
|
|
|
Fixes #30096
|
|
|
|
*Cameron Cundiff*
|
|
|
|
* Add `srcset` option to `image_tag` helper.
|
|
|
|
*Roberto Miranda*
|
|
|
|
* Fix issues with scopes and engine on `current_page?` method.
|
|
|
|
Fixes #29401.
|
|
|
|
*Nikita Savrov*
|
|
|
|
* 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*
|
|
|
|
* Add `:json` type to `auto_discovery_link_tag` to support [JSON Feeds](https://jsonfeed.org/version/1)
|
|
|
|
*Mike Gunderloy*
|
|
|
|
* Update `distance_of_time_in_words` helper to display better error messages
|
|
for bad input.
|
|
|
|
*Jay Hayes*
|
|
|
|
|
|
Please check [5-1-stable](https://github.com/rails/rails/blob/5-1-stable/actionview/CHANGELOG.md) for previous changes.
|