aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/CHANGELOG.md')
-rw-r--r--actionview/CHANGELOG.md25
1 files changed, 17 insertions, 8 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index 19877ca8cb..30dbc20f18 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,17 +1,24 @@
+* Added `config.action_view.raise_on_missing_translations` to define whether an
+ error should be raised for missing translations.
+
+ Fixes #13196.
+
+ *Kassio Borges*
+
* Improved ERB dependency detection. New argument types and formattings for the `render`
calls can be matched.
- Fixes #13074 and #13116
+ Fixes #13074, #13116.
*João Britto*
-* Use `display:none` instead of `display:inline` for hidden fields
+* Use `display:none` instead of `display:inline` for hidden fields.
- Fixes #6403
+ Fixes #6403.
*Gaelian Ditchburn*
-* The `video_tag` helper accepts a number as `:size`
+* The `video_tag` helper accepts a number as `:size`.
The `:size` option of the `video_tag` helper now can be specified
with a stringified number. The `width` and `height` attributes of
@@ -75,11 +82,11 @@
*Yves Senn*
-* Use `set_backtrace` instead of instance variable `@backtrace` in ActionView exceptions
+* Use `set_backtrace` instead of instance variable `@backtrace` in ActionView exceptions.
*Shimpei Makimoto*
-* Fix `simple_format` escapes own output when passing `sanitize: true`
+* Fix `simple_format` escapes own output when passing `sanitize: true`.
*Paul Seidemann*
@@ -97,7 +104,9 @@
*Bogdan Gusiev*
-* Ability to pass block to `select` helper
+* Ability to pass a block to the `select` helper.
+
+ Example:
<%= select(report, "campaign_ids") do %>
<% available_campaigns.each do |c| -%>
@@ -177,7 +186,7 @@
* Fix default rendered format problem when calling `render` without :content_type option.
It should return :html. Fix #11393.
- *Gleb Mazovetskiy* *Oleg* *kennyj*
+ *Gleb Mazovetskiy*, *Oleg*, *kennyj*
* Fix `link_to` with block and url hashes.