actionview 6.0.4.6 → 6.1.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of actionview might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +152 -288
- data/MIT-LICENSE +1 -1
- data/README.rdoc +1 -1
- data/lib/action_view/base.rb +21 -52
- data/lib/action_view/cache_expiry.rb +1 -2
- data/lib/action_view/context.rb +0 -1
- data/lib/action_view/dependency_tracker.rb +10 -4
- data/lib/action_view/digestor.rb +3 -2
- data/lib/action_view/gem_version.rb +3 -3
- data/lib/action_view/helpers/asset_tag_helper.rb +40 -15
- data/lib/action_view/helpers/asset_url_helper.rb +6 -4
- data/lib/action_view/helpers/atom_feed_helper.rb +2 -1
- data/lib/action_view/helpers/cache_helper.rb +10 -16
- data/lib/action_view/helpers/date_helper.rb +4 -4
- data/lib/action_view/helpers/form_helper.rb +59 -17
- data/lib/action_view/helpers/form_options_helper.rb +7 -16
- data/lib/action_view/helpers/form_tag_helper.rb +8 -6
- data/lib/action_view/helpers/javascript_helper.rb +3 -3
- data/lib/action_view/helpers/number_helper.rb +6 -6
- data/lib/action_view/helpers/rendering_helper.rb +11 -3
- data/lib/action_view/helpers/sanitize_helper.rb +2 -2
- data/lib/action_view/helpers/tag_helper.rb +92 -17
- data/lib/action_view/helpers/tags/base.rb +9 -5
- data/lib/action_view/helpers/tags/date_field.rb +1 -1
- data/lib/action_view/helpers/tags/date_select.rb +2 -2
- data/lib/action_view/helpers/tags/datetime_local_field.rb +1 -1
- data/lib/action_view/helpers/tags/label.rb +4 -0
- data/lib/action_view/helpers/tags/month_field.rb +1 -1
- data/lib/action_view/helpers/tags/select.rb +1 -1
- data/lib/action_view/helpers/tags/time_field.rb +1 -1
- data/lib/action_view/helpers/tags/week_field.rb +1 -1
- data/lib/action_view/helpers/text_helper.rb +1 -1
- data/lib/action_view/helpers/translation_helper.rb +88 -53
- data/lib/action_view/helpers/url_helper.rb +107 -13
- data/lib/action_view/layouts.rb +3 -2
- data/lib/action_view/log_subscriber.rb +26 -10
- data/lib/action_view/lookup_context.rb +3 -18
- data/lib/action_view/path_set.rb +0 -3
- data/lib/action_view/railtie.rb +35 -46
- data/lib/action_view/renderer/abstract_renderer.rb +93 -14
- data/lib/action_view/renderer/collection_renderer.rb +192 -0
- data/lib/action_view/renderer/object_renderer.rb +34 -0
- data/lib/action_view/renderer/partial_renderer/collection_caching.rb +25 -26
- data/lib/action_view/renderer/partial_renderer.rb +20 -282
- data/lib/action_view/renderer/renderer.rb +44 -1
- data/lib/action_view/renderer/streaming_template_renderer.rb +5 -1
- data/lib/action_view/renderer/template_renderer.rb +15 -12
- data/lib/action_view/rendering.rb +3 -1
- data/lib/action_view/routing_url_for.rb +1 -1
- data/lib/action_view/template/handlers/erb/erubi.rb +9 -7
- data/lib/action_view/template/handlers/erb.rb +10 -14
- data/lib/action_view/template/handlers.rb +0 -26
- data/lib/action_view/template/html.rb +1 -11
- data/lib/action_view/template/raw_file.rb +0 -3
- data/lib/action_view/template/renderable.rb +24 -0
- data/lib/action_view/template/resolver.rb +82 -40
- data/lib/action_view/template/text.rb +0 -3
- data/lib/action_view/template.rb +9 -49
- data/lib/action_view/test_case.rb +18 -25
- data/lib/action_view/testing/resolvers.rb +10 -31
- data/lib/action_view/unbound_template.rb +3 -3
- data/lib/action_view/view_paths.rb +34 -36
- data/lib/action_view.rb +4 -1
- data/lib/assets/compiled/rails-ujs.js +1 -1
- metadata +20 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6501d14d3ded1b369986260419c6aee627f1b7799b3c3c4218873bfe8d4b479
|
4
|
+
data.tar.gz: 989267ee82dfffffb28da4b86b9eb462dd4e0bd3d379763b6b1e263ff29739b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0604fd5bb813f716bff94d3ac476ad3a466b8ea6e02e022b4ee29cf5f3a0389ec70f50fc532e37a857307b2180e69d0db2c0c42abcf603677789df8b44acad0f
|
7
|
+
data.tar.gz: 54f5d17012d6817bd687d80dff5bd36ffff2ea6fc8461ac2e81fde65a73dea829a076351ff812516f80869ae0dbda5eda4d8181b731bfd31ae92b56cca03ab53
|
data/CHANGELOG.md
CHANGED
@@ -1,396 +1,260 @@
|
|
1
|
-
## Rails 6.0.
|
1
|
+
## Rails 6.1.0.rc1 (November 02, 2020) ##
|
2
2
|
|
3
|
-
*
|
3
|
+
* Yield translated strings to calls of `ActionView::FormBuilder#button`
|
4
|
+
when a block is given.
|
4
5
|
|
6
|
+
*Sean Doyle*
|
5
7
|
|
6
|
-
|
8
|
+
* Alias `ActionView::Helpers::Tags::Label::LabelBuilder#translation` to
|
9
|
+
`#to_s` so that `form.label` calls can yield that value to their blocks.
|
7
10
|
|
8
|
-
*
|
11
|
+
*Sean Doyle*
|
9
12
|
|
13
|
+
* Rename the new `TagHelper#class_names` method to `TagHelper#token_list`,
|
14
|
+
and make the original available as an alias.
|
10
15
|
|
11
|
-
|
16
|
+
token_list("foo", "foo bar")
|
17
|
+
# => "foo bar"
|
12
18
|
|
13
|
-
*
|
19
|
+
*Sean Doyle*
|
14
20
|
|
21
|
+
* ARIA Array and Hash attributes are treated as space separated `DOMTokenList`
|
22
|
+
values. This is useful when declaring lists of label text identifiers in
|
23
|
+
`aria-labelledby` or `aria-describedby`.
|
15
24
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
## Rails 6.0.4.1 (August 19, 2021) ##
|
27
|
-
|
28
|
-
* No changes.
|
29
|
-
|
30
|
-
|
31
|
-
## Rails 6.0.4 (June 15, 2021) ##
|
32
|
-
|
33
|
-
* SanitizeHelper.sanitized_allowed_attributes and SanitizeHelper.sanitized_allowed_tags
|
34
|
-
call safe_list_sanitizer's class method
|
35
|
-
|
36
|
-
Fixes #39586
|
37
|
-
|
38
|
-
*Taufiq Muhammadi*
|
39
|
-
|
40
|
-
|
41
|
-
## Rails 6.0.3.7 (May 05, 2021) ##
|
42
|
-
|
43
|
-
* No changes.
|
44
|
-
|
45
|
-
|
46
|
-
## Rails 6.0.3.6 (March 26, 2021) ##
|
47
|
-
|
48
|
-
* No changes.
|
49
|
-
|
50
|
-
|
51
|
-
## Rails 6.0.3.5 (February 10, 2021) ##
|
52
|
-
|
53
|
-
* No changes.
|
54
|
-
|
55
|
-
|
56
|
-
## Rails 6.0.3.4 (October 07, 2020) ##
|
57
|
-
|
58
|
-
* No changes.
|
59
|
-
|
60
|
-
|
61
|
-
## Rails 6.0.3.3 (September 09, 2020) ##
|
62
|
-
|
63
|
-
* [CVE-2020-8185] Fix potential XSS vulnerability in the `translate`/`t` helper.
|
64
|
-
|
65
|
-
*Jonathan Hefner*
|
66
|
-
|
67
|
-
|
68
|
-
## Rails 6.0.3.2 (June 17, 2020) ##
|
69
|
-
|
70
|
-
* No changes.
|
71
|
-
|
72
|
-
|
73
|
-
## Rails 6.0.3.1 (May 18, 2020) ##
|
74
|
-
|
75
|
-
* [CVE-2020-8167] Check that request is same-origin prior to including CSRF token in XHRs
|
76
|
-
|
77
|
-
|
78
|
-
## Rails 6.0.3 (May 06, 2020) ##
|
79
|
-
|
80
|
-
* annotated_source_code returns an empty array so TemplateErrors without a
|
81
|
-
template in the backtrace are surfaced properly by DebugExceptions.
|
82
|
-
|
83
|
-
*Guilherme Mansur*, *Kasper Timm Hansen*
|
84
|
-
|
85
|
-
* Add autoload for SyntaxErrorInTemplate so syntax errors are correctly raised by DebugExceptions.
|
86
|
-
|
87
|
-
*Guilherme Mansur*, *Gannon McGibbon*
|
88
|
-
|
89
|
-
|
90
|
-
## Rails 6.0.2.2 (March 19, 2020) ##
|
91
|
-
|
92
|
-
* Fix possible XSS vector in escape_javascript helper
|
93
|
-
|
94
|
-
CVE-2020-5267
|
95
|
-
|
96
|
-
*Aaron Patterson*
|
97
|
-
|
98
|
-
|
99
|
-
## Rails 6.0.2.1 (December 18, 2019) ##
|
100
|
-
|
101
|
-
* No changes.
|
102
|
-
|
103
|
-
|
104
|
-
## Rails 6.0.2 (December 13, 2019) ##
|
105
|
-
|
106
|
-
* No changes.
|
107
|
-
|
108
|
-
|
109
|
-
## Rails 6.0.1 (November 5, 2019) ##
|
110
|
-
|
111
|
-
* UJS avoids `Element.closest()` for IE 9 compatibility.
|
112
|
-
|
113
|
-
*George Claghorn*
|
114
|
-
|
115
|
-
|
116
|
-
## Rails 6.0.0 (August 16, 2019) ##
|
117
|
-
|
118
|
-
* ActionView::Helpers::SanitizeHelper: support rails-html-sanitizer 1.1.0.
|
119
|
-
|
120
|
-
*Juanito Fatas*
|
121
|
-
|
122
|
-
|
123
|
-
## Rails 6.0.0.rc2 (July 22, 2019) ##
|
124
|
-
|
125
|
-
* Fix `select_tag` so that it doesn't change `options` when `include_blank` is present.
|
126
|
-
|
127
|
-
*Younes SERRAJ*
|
128
|
-
|
129
|
-
|
130
|
-
## Rails 6.0.0.rc1 (April 24, 2019) ##
|
131
|
-
|
132
|
-
* Fix partial caching skips same item issue
|
133
|
-
|
134
|
-
If we render cached collection partials with repeated items, those repeated items
|
135
|
-
will get skipped. For example, if you have 5 identical items in your collection, Rails
|
136
|
-
only renders the first one when `cached` is set to true. But it should render all
|
137
|
-
5 items instead.
|
138
|
-
|
139
|
-
Fixes #35114.
|
140
|
-
|
141
|
-
*Stan Lo*
|
142
|
-
|
143
|
-
* Only clear ActionView cache in development on file changes
|
25
|
+
tag.input type: 'checkbox', name: 'published', aria: {
|
26
|
+
invalid: @post.errors[:published].any?,
|
27
|
+
labelledby: ['published_context', 'published_label'],
|
28
|
+
describedby: { published_errors: @post.errors[:published].any? }
|
29
|
+
}
|
30
|
+
#=> <input
|
31
|
+
type="checkbox" name="published" aria-invalid="true"
|
32
|
+
aria-labelledby="published_context published_label"
|
33
|
+
aria-describedby="published_errors"
|
34
|
+
>
|
144
35
|
|
145
|
-
|
146
|
-
the view paths have changed. Applications which have implemented custom
|
147
|
-
`ActionView::Resolver` subclasses may need to add their own cache clearing.
|
36
|
+
*Sean Doyle*
|
148
37
|
|
149
|
-
|
38
|
+
* Remove deprecated `escape_whitelist` from `ActionView::Template::Handlers::ERB`.
|
150
39
|
|
151
|
-
*
|
40
|
+
*Rafael Mendonça França*
|
152
41
|
|
153
|
-
|
42
|
+
* Remove deprecated `find_all_anywhere` from `ActionView::Resolver`.
|
154
43
|
|
155
|
-
*
|
156
|
-
without using any handlers, using the new `Template::RawFile` class.
|
44
|
+
*Rafael Mendonça França*
|
157
45
|
|
158
|
-
|
46
|
+
* Remove deprecated `formats` from `ActionView::Template::HTML`.
|
159
47
|
|
48
|
+
*Rafael Mendonça França*
|
160
49
|
|
161
|
-
|
50
|
+
* Remove deprecated `formats` from `ActionView::Template::RawFile`.
|
162
51
|
|
163
|
-
*
|
52
|
+
*Rafael Mendonça França*
|
164
53
|
|
165
|
-
|
166
|
-
arbitrary files on the target server or to perform a denial of service
|
167
|
-
attack.
|
54
|
+
* Remove deprecated `formats` from `ActionView::Template::Text`.
|
168
55
|
|
169
|
-
|
170
|
-
Fixes CVE-2019-5419
|
56
|
+
*Rafael Mendonça França*
|
171
57
|
|
172
|
-
|
58
|
+
* Remove deprecated `find_file` from `ActionView::PathSet`.
|
173
59
|
|
60
|
+
*Rafael Mendonça França*
|
174
61
|
|
175
|
-
|
62
|
+
* Remove deprecated `rendered_format` from `ActionView::LookupContext`.
|
176
63
|
|
177
|
-
*
|
178
|
-
no replacement.
|
64
|
+
*Rafael Mendonça França*
|
179
65
|
|
180
|
-
|
66
|
+
* Remove deprecated `find_file` from `ActionView::ViewPaths`.
|
181
67
|
|
182
|
-
*
|
183
|
-
no replacement.
|
68
|
+
*Rafael Mendonça França*
|
184
69
|
|
185
|
-
|
70
|
+
* Require that `ActionView::Base` subclasses implement `#compiled_method_container`.
|
186
71
|
|
187
|
-
*
|
72
|
+
*Rafael Mendonça França*
|
188
73
|
|
189
|
-
|
74
|
+
* Remove deprecated support to pass an object that is not a `ActionView::LookupContext` as the first argument
|
75
|
+
in `ActionView::Base#initialize`.
|
190
76
|
|
191
|
-
*
|
77
|
+
*Rafael Mendonça França*
|
192
78
|
|
193
|
-
*
|
194
|
-
now accept two parameters, the view object and the source for the view object.
|
79
|
+
* Remove deprecated `format` argument `ActionView::Base#initialize`.
|
195
80
|
|
196
|
-
*
|
81
|
+
*Rafael Mendonça França*
|
197
82
|
|
83
|
+
* Remove deprecated `ActionView::Template#refresh`.
|
198
84
|
|
199
|
-
|
85
|
+
*Rafael Mendonça França*
|
200
86
|
|
201
|
-
*
|
202
|
-
[`rails-ujs`](https://www.npmjs.com/package/rails-ujs) to
|
203
|
-
[`@rails/ujs`](https://www.npmjs.com/package/@rails/ujs).
|
87
|
+
* Remove deprecated `ActionView::Template#original_encoding`.
|
204
88
|
|
205
|
-
*
|
89
|
+
*Rafael Mendonça França*
|
206
90
|
|
207
|
-
* Remove deprecated `
|
91
|
+
* Remove deprecated `ActionView::Template#variants`.
|
208
92
|
|
209
93
|
*Rafael Mendonça França*
|
210
94
|
|
211
|
-
*
|
212
|
-
`ActionView::Base` subclasses. This prevents the use of forms and buttons.
|
95
|
+
* Remove deprecated `ActionView::Template#formats`.
|
213
96
|
|
214
|
-
*
|
215
|
-
|
216
|
-
* Fix UJS permanently showing disabled text in a[data-remote][data-disable-with] elements within forms.
|
97
|
+
*Rafael Mendonça França*
|
217
98
|
|
218
|
-
|
99
|
+
* Remove deprecated `ActionView::Template#virtual_path=`.
|
219
100
|
|
220
|
-
*
|
101
|
+
*Rafael Mendonça França*
|
221
102
|
|
222
|
-
*
|
223
|
-
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
|
224
|
-
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
|
103
|
+
* Remove deprecated `ActionView::Template#updated_at`.
|
225
104
|
|
226
|
-
|
227
|
-
<%= link_to 'Remote', remote_path, class: 'remote', remote: true, data: { type: :json } %>
|
228
|
-
```
|
105
|
+
*Rafael Mendonça França*
|
229
106
|
|
230
|
-
|
107
|
+
* Remove deprecated `updated_at` argument required on `ActionView::Template#initialize`.
|
231
108
|
|
232
|
-
*
|
109
|
+
*Rafael Mendonça França*
|
233
110
|
|
234
|
-
*
|
111
|
+
* Make `locals` argument required on `ActionView::Template#initialize`.
|
235
112
|
|
236
|
-
|
113
|
+
*Rafael Mendonça França*
|
237
114
|
|
238
|
-
|
239
|
-
This is a paragraph with an initial indent,
|
240
|
-
followed by additional lines that are not indented,
|
241
|
-
and finally terminated with a blockquote:
|
242
|
-
"A pithy saying"
|
243
|
-
```
|
115
|
+
* Remove deprecated `ActionView::Template.finalize_compiled_template_methods`.
|
244
116
|
|
245
|
-
|
117
|
+
*Rafael Mendonça França*
|
246
118
|
|
247
|
-
|
119
|
+
* Remove deprecated `config.action_view.finalize_compiled_template_methods`
|
248
120
|
|
249
|
-
*
|
121
|
+
*Rafael Mendonça França*
|
250
122
|
|
251
|
-
*
|
123
|
+
* Remove deprecated support to calling `ActionView::ViewPaths#with_fallback` with a block.
|
252
124
|
|
253
|
-
|
125
|
+
*Rafael Mendonça França*
|
254
126
|
|
255
|
-
|
256
|
-
Rendered posts/_form.html.erb (Duration: 7.1ms | Allocations: 6004)
|
257
|
-
Rendered posts/new.html.erb within layouts/application (Duration: 8.3ms | Allocations: 6654)
|
258
|
-
Completed 200 OK in 858ms (Views: 848.4ms | ActiveRecord: 0.4ms | Allocations: 1539564)
|
259
|
-
```
|
127
|
+
* Remove deprecated support to passing absolute paths to `render template:`.
|
260
128
|
|
261
|
-
*
|
129
|
+
*Rafael Mendonça França*
|
262
130
|
|
263
|
-
*
|
131
|
+
* Remove deprecated support to passing relative paths to `render file:`.
|
264
132
|
|
265
|
-
|
133
|
+
*Rafael Mendonça França*
|
266
134
|
|
267
|
-
|
135
|
+
* Remove support to template handlers that don't accept two arguments.
|
268
136
|
|
269
|
-
*
|
137
|
+
*Rafael Mendonça França*
|
270
138
|
|
271
|
-
|
272
|
-
and `collection_select` it is possible to call private methods from
|
273
|
-
the objects used.
|
139
|
+
* Remove deprecated pattern argument in `ActionView::Template::PathResolver`.
|
274
140
|
|
275
|
-
|
141
|
+
*Rafael Mendonça França*
|
276
142
|
|
277
|
-
|
143
|
+
* Remove deprecated support to call private methods from object in some view helpers.
|
278
144
|
|
279
|
-
*
|
145
|
+
*Rafael Mendonça França*
|
280
146
|
|
281
|
-
|
282
|
-
|
283
|
-
`to_form_params` was comparing the given symbol and string keys.
|
147
|
+
* `ActionView::Helpers::TranslationHelper#translate` accepts a block, yielding
|
148
|
+
the translated text and the fully resolved translation key:
|
284
149
|
|
285
|
-
|
286
|
-
|
150
|
+
<%= translate(".relative_key") do |translation, resolved_key| %>
|
151
|
+
<span title="<%= resolved_key %>"><%= translation %></span>
|
152
|
+
<% end %>
|
287
153
|
|
288
|
-
*
|
154
|
+
*Sean Doyle*
|
289
155
|
|
290
|
-
*
|
156
|
+
* Ensure cache fragment digests include all relevant template dependencies when
|
157
|
+
fragments are contained in a block passed to the render helper. Remove the
|
158
|
+
virtual_path keyword arguments found in CacheHelper as they no longer possess
|
159
|
+
any function following 1581cab.
|
291
160
|
|
292
|
-
|
161
|
+
Fixes #38984.
|
293
162
|
|
294
|
-
|
295
|
-
foo_html:
|
296
|
-
- "One"
|
297
|
-
- "<strong>Two</strong>"
|
298
|
-
- "Three 👋 🙂"
|
163
|
+
*Aaron Lipman*
|
299
164
|
|
300
|
-
|
165
|
+
* Deprecate `config.action_view.raise_on_missing_translations` in favor of
|
166
|
+
`config.i18n.raise_on_missing_translations`.
|
301
167
|
|
302
|
-
|
303
|
-
|
168
|
+
New generalized configuration option now determines whether an error should be raised
|
169
|
+
for missing translations in controllers and views.
|
304
170
|
|
305
|
-
|
171
|
+
*fatkodima*
|
306
172
|
|
307
|
-
|
173
|
+
* Instrument layout rendering in `TemplateRenderer#render_with_layout` as `render_layout.action_view`,
|
174
|
+
and include (when necessary) the layout's virtual path in notification payloads for collection and partial renders.
|
308
175
|
|
309
|
-
|
176
|
+
*Zach Kemp*
|
310
177
|
|
311
|
-
|
312
|
-
<option value="1998">Heisei 10</option>
|
313
|
-
<option value="1999">Heisei 11</option>
|
314
|
-
<option value="2000">Heisei 12</option>
|
315
|
-
</select>
|
316
|
-
/* The rest is omitted */
|
178
|
+
* `ActionView::Base.annotate_rendered_view_with_filenames` annotates HTML output with template file names.
|
317
179
|
|
318
|
-
*
|
180
|
+
*Joel Hawksley*, *Aaron Patterson*
|
319
181
|
|
320
|
-
*
|
321
|
-
|
182
|
+
* `ActionView::Helpers::TranslationHelper#translate` returns nil when
|
183
|
+
passed `default: nil` without a translation matching `I18n#translate`.
|
322
184
|
|
323
|
-
|
185
|
+
*Stefan Wrobel*
|
324
186
|
|
325
|
-
|
187
|
+
* `OptimizedFileSystemResolver` prefers template details in order of locale,
|
188
|
+
formats, variants, handlers.
|
326
189
|
|
327
|
-
*
|
328
|
-
support automatic nonce generation for Content Security Policy.
|
329
|
-
Works the same way as `javascript_tag nonce: true` does.
|
190
|
+
*Iago Pimenta*
|
330
191
|
|
331
|
-
|
192
|
+
* Added `class_names` helper to create a CSS class value with conditional classes.
|
332
193
|
|
333
|
-
*
|
194
|
+
*Joel Hawksley*, *Aaron Patterson*
|
334
195
|
|
335
|
-
|
196
|
+
* Add support for conditional values to TagBuilder.
|
336
197
|
|
337
|
-
*
|
198
|
+
*Joel Hawksley*
|
338
199
|
|
339
|
-
|
340
|
-
Add a configuration option,
|
341
|
-
`action_view.finalize_compiled_template_methods`, and turn it off in
|
342
|
-
the test environment.
|
200
|
+
* `ActionView::Helpers::FormOptionsHelper#select` should mark option for `nil` as selected.
|
343
201
|
|
344
|
-
|
202
|
+
```ruby
|
203
|
+
@post = Post.new
|
204
|
+
@post.category = nil
|
345
205
|
|
346
|
-
|
206
|
+
# Before
|
207
|
+
select("post", "category", none: nil, programming: 1, economics: 2)
|
208
|
+
# =>
|
209
|
+
# <select name="post[category]" id="post_category">
|
210
|
+
# <option value="">none</option>
|
211
|
+
# <option value="1">programming</option>
|
212
|
+
# <option value="2">economics</option>
|
213
|
+
# </select>
|
347
214
|
|
348
|
-
|
215
|
+
# After
|
216
|
+
select("post", "category", none: nil, programming: 1, economics: 2)
|
217
|
+
# =>
|
218
|
+
# <select name="post[category]" id="post_category">
|
219
|
+
# <option selected="selected" value="">none</option>
|
220
|
+
# <option value="1">programming</option>
|
221
|
+
# <option value="2">economics</option>
|
222
|
+
# </select>
|
223
|
+
```
|
349
224
|
|
350
|
-
|
351
|
-
return (my_bootstrap_modal_confirm(message));
|
352
|
-
}
|
225
|
+
*bogdanvlviv*
|
353
226
|
|
354
|
-
|
227
|
+
* Log lines for partial renders and started template renders are now
|
228
|
+
emitted at the `DEBUG` level instead of `INFO`.
|
355
229
|
|
356
|
-
|
357
|
-
field.
|
230
|
+
Completed template renders are still logged at the `INFO` level.
|
358
231
|
|
359
|
-
|
232
|
+
*DHH*
|
360
233
|
|
361
|
-
|
362
|
-
:category,
|
363
|
-
["lifestyle", "programming", "spiritual"],
|
364
|
-
{ selected: "", disabled: "", prompt: "Choose one" },
|
365
|
-
{ required: true }
|
234
|
+
* ActionView::Helpers::SanitizeHelper: support rails-html-sanitizer 1.1.0.
|
366
235
|
|
367
|
-
|
236
|
+
*Juanito Fatas*
|
368
237
|
|
369
|
-
|
238
|
+
* Added `phone_to` helper method to create a link from mobile numbers.
|
370
239
|
|
371
|
-
|
372
|
-
<option disabled="disabled" selected="selected" value="">Choose one</option>
|
373
|
-
<option value="lifestyle">lifestyle</option>
|
374
|
-
<option value="programming">programming</option>
|
375
|
-
<option value="spiritual">spiritual</option></select>
|
240
|
+
*Pietro Moro*
|
376
241
|
|
377
|
-
|
242
|
+
* annotated_source_code returns an empty array so TemplateErrors without a
|
243
|
+
template in the backtrace are surfaced properly by DebugExceptions.
|
378
244
|
|
379
|
-
*
|
245
|
+
*Guilherme Mansur*, *Kasper Timm Hansen*
|
380
246
|
|
381
|
-
|
382
|
-
IE8 or lower becomes increasingly difficult so default to not enforcing
|
383
|
-
UTF-8 encoding as it's not relevant to other browsers.
|
247
|
+
* Add autoload for SyntaxErrorInTemplate so syntax errors are correctly raised by DebugExceptions.
|
384
248
|
|
385
|
-
*
|
249
|
+
*Guilherme Mansur*, *Gannon McGibbon*
|
386
250
|
|
387
|
-
*
|
251
|
+
* `RenderingHelper` supports rendering objects that `respond_to?` `:render_in`.
|
388
252
|
|
389
|
-
*
|
253
|
+
*Joel Hawksley*, *Natasha Umer*, *Aaron Patterson*, *Shawn Allen*, *Emily Plummer*, *Diana Mounter*, *John Hawthorn*, *Nathan Herald*, *Zaid Zawaideh*, *Zach Ahn*
|
390
254
|
|
391
|
-
*
|
255
|
+
* Fix `select_tag` so that it doesn't change `options` when `include_blank` is present.
|
392
256
|
|
393
|
-
*
|
257
|
+
*Younes SERRAJ*
|
394
258
|
|
395
259
|
|
396
|
-
Please check [
|
260
|
+
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actionview/CHANGELOG.md) for previous changes.
|
data/MIT-LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -15,7 +15,7 @@ The latest version of Action View can be installed with RubyGems:
|
|
15
15
|
|
16
16
|
Source code can be downloaded as part of the Rails project on GitHub:
|
17
17
|
|
18
|
-
* https://github.com/rails/rails/tree/
|
18
|
+
* https://github.com/rails/rails/tree/master/actionview
|
19
19
|
|
20
20
|
|
21
21
|
== License
|