view_component 2.83.0 → 3.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/concerns/view_component/preview_actions.rb +5 -1
- data/app/controllers/view_components_system_test_controller.rb +24 -1
- data/app/helpers/preview_helper.rb +22 -4
- data/app/views/view_components/_preview_source.html.erb +2 -2
- data/docs/CHANGELOG.md +807 -1
- data/lib/rails/generators/abstract_generator.rb +9 -1
- data/lib/rails/generators/component/component_generator.rb +2 -1
- data/lib/rails/generators/component/templates/component.rb.tt +3 -2
- data/lib/rails/generators/erb/component_generator.rb +1 -1
- data/lib/rails/generators/locale/component_generator.rb +3 -3
- data/lib/rails/generators/preview/templates/component_preview.rb.tt +2 -0
- data/lib/rails/generators/rspec/component_generator.rb +15 -3
- data/lib/rails/generators/rspec/templates/component_spec.rb.tt +1 -1
- data/lib/rails/generators/stimulus/component_generator.rb +8 -3
- data/lib/rails/generators/stimulus/templates/component_controller.ts.tt +9 -0
- data/lib/rails/generators/test_unit/templates/component_test.rb.tt +1 -1
- data/lib/view_component/base.rb +169 -164
- data/lib/view_component/capture_compatibility.rb +44 -0
- data/lib/view_component/collection.rb +20 -8
- data/lib/view_component/compiler.rb +166 -207
- data/lib/view_component/config.rb +63 -14
- data/lib/view_component/deprecation.rb +1 -1
- data/lib/view_component/docs_builder_component.html.erb +5 -1
- data/lib/view_component/docs_builder_component.rb +28 -9
- data/lib/view_component/engine.rb +58 -28
- data/lib/view_component/errors.rb +240 -0
- data/lib/view_component/inline_template.rb +55 -0
- data/lib/view_component/instrumentation.rb +10 -2
- data/lib/view_component/preview.rb +7 -8
- data/lib/view_component/rails/tasks/view_component.rake +11 -2
- data/lib/view_component/slot.rb +119 -1
- data/lib/view_component/slotable.rb +394 -94
- data/lib/view_component/slotable_default.rb +20 -0
- data/lib/view_component/system_test_helpers.rb +5 -5
- data/lib/view_component/template.rb +134 -0
- data/lib/view_component/test_helpers.rb +138 -59
- data/lib/view_component/translatable.rb +45 -26
- data/lib/view_component/use_helpers.rb +42 -0
- data/lib/view_component/version.rb +4 -3
- data/lib/view_component/with_content_helper.rb +3 -8
- data/lib/view_component.rb +3 -12
- metadata +277 -38
- data/lib/view_component/content_areas.rb +0 -56
- data/lib/view_component/polymorphic_slots.rb +0 -103
- data/lib/view_component/preview_template_error.rb +0 -6
- data/lib/view_component/slot_v2.rb +0 -98
- data/lib/view_component/slotable_v2.rb +0 -391
- data/lib/view_component/template_error.rb +0 -9
data/docs/CHANGELOG.md
CHANGED
@@ -10,12 +10,818 @@ nav_order: 5
|
|
10
10
|
|
11
11
|
## main
|
12
12
|
|
13
|
-
##
|
13
|
+
## 3.21.0
|
14
|
+
|
15
|
+
* Updates testing docs to include an example of how to use with RSpec.
|
16
|
+
|
17
|
+
*Rylan Bowers*
|
18
|
+
|
19
|
+
* Add `--skip-suffix` option to component generator.
|
20
|
+
|
21
|
+
*KAWAKAMI Moeki*
|
22
|
+
|
23
|
+
* Add FreeATS to list of companies using ViewComponent.
|
24
|
+
|
25
|
+
*Ilia Liamshin*
|
26
|
+
|
27
|
+
* Ensure HTML output safety wrapper is used for all inline templates.
|
28
|
+
|
29
|
+
*Joel Hawksley*
|
30
|
+
|
31
|
+
* Expose `.identifier` method as part of public API.
|
32
|
+
|
33
|
+
*Joel Hawksley*
|
34
|
+
|
35
|
+
* Add rails 8 support to CI.
|
36
|
+
|
37
|
+
*Reegan Viljoen*
|
38
|
+
|
39
|
+
* Updates ActionText compatibility documentation to reference `rich_textarea_tag` for Rails 8.0 support.
|
40
|
+
|
41
|
+
*Alvin Crespo*
|
42
|
+
|
43
|
+
## 3.20.0
|
44
|
+
|
45
|
+
* Allow rendering `with_collection` to accept an optional `spacer_component` to be rendered between each item.
|
46
|
+
|
47
|
+
*Nick Coyne*
|
48
|
+
|
49
|
+
* Remove OpenStruct from codebase.
|
50
|
+
|
51
|
+
*Oleksii Vasyliev*
|
52
|
+
|
53
|
+
## 3.19.0
|
54
|
+
|
55
|
+
* Relax Active Support version constraint in gemspec.
|
56
|
+
|
57
|
+
*Simon Fish*
|
58
|
+
|
59
|
+
## 3.18.0
|
60
|
+
|
61
|
+
* Enable components to use `@request` and `request` methods/ivars.
|
62
|
+
|
63
|
+
*Blake Williams*
|
64
|
+
|
65
|
+
* Fix bug where implicit locales in component filenames threw a `NameError`.
|
66
|
+
|
67
|
+
*Chloe Fons*
|
68
|
+
|
69
|
+
* Register ViewComponent tests directory for `rails stats`.
|
70
|
+
|
71
|
+
*Javier Aranda*
|
72
|
+
|
73
|
+
* Wrap entire compile step in a mutex to make it more resilient to race conditions.
|
74
|
+
|
75
|
+
*Blake Williams*
|
76
|
+
|
77
|
+
* Add [Niva]([niva.co](https://www.niva.co/)) to companies who use `ViewComponent`.
|
78
|
+
|
79
|
+
*Daniel Vu Dao*
|
80
|
+
|
81
|
+
* Fix `preview_paths` in docs.
|
82
|
+
|
83
|
+
*Javier Aranda*
|
84
|
+
|
85
|
+
## 3.17.0
|
86
|
+
|
87
|
+
* Use struct instead openstruct in lib code.
|
88
|
+
|
89
|
+
*Oleksii Vasyliev*
|
90
|
+
|
91
|
+
* Fix bug where stimulus controller was not added to ERB when stimulus was activated by default.
|
92
|
+
|
93
|
+
*Denis Pasin*
|
94
|
+
|
95
|
+
* Add typescript support to stimulus generator.
|
96
|
+
|
97
|
+
*Denis Pasin*
|
98
|
+
|
99
|
+
* Fix the example of #vc_test_request in the API reference to use the correct method name.
|
100
|
+
|
101
|
+
*Alberto Rocha*
|
102
|
+
|
103
|
+
* Fix development mode race condition that caused an invalid duplicate template error.
|
104
|
+
|
105
|
+
*Blake Williams*
|
106
|
+
|
107
|
+
## 3.16.0
|
108
|
+
|
109
|
+
* Add template information to multiple template error messages.
|
110
|
+
|
111
|
+
*Joel Hawksley*
|
112
|
+
|
113
|
+
* Add `ostruct` to gemspec file to suppress stdlib removal warning.
|
114
|
+
|
115
|
+
*Jonathan Underwood*
|
116
|
+
|
117
|
+
## 3.15.1
|
118
|
+
|
119
|
+
* Re-add `@private`, undocumented `.identifier` method that was only meant for internal framework use but was used by some downstream consumers. This method will be removed in a coming minor release.
|
120
|
+
|
121
|
+
*Joel Hawksley*
|
122
|
+
|
123
|
+
## 3.15.0
|
124
|
+
|
125
|
+
* Add basic internal testing for memory allocations.
|
126
|
+
|
127
|
+
*Joel Hawksley*
|
128
|
+
|
129
|
+
* Add support for request formats.
|
130
|
+
|
131
|
+
*Joel Hawksley*
|
132
|
+
|
133
|
+
* Add `rendered_json` test helper.
|
134
|
+
|
135
|
+
*Joel Hawksley*
|
136
|
+
|
137
|
+
* Add `with_format` test helper.
|
138
|
+
|
139
|
+
*Joel Hawksley*
|
140
|
+
|
141
|
+
* Warn if using Ruby < 3.2 or Rails < 7.1, which won't be supported by ViewComponent v4, to be released no earlier than April 1, 2025.
|
142
|
+
|
143
|
+
*Joel Hawksley*
|
144
|
+
|
145
|
+
* Add Kicksite to list of companies using ViewComponent.
|
146
|
+
|
147
|
+
*Adil Lari*
|
148
|
+
|
149
|
+
* Allow overridden slot methods to use `super`.
|
150
|
+
|
151
|
+
*Andrew Schwartz*
|
152
|
+
|
153
|
+
* Add Rails engine support to generators.
|
154
|
+
|
155
|
+
*Tomasz Kowalewski*
|
156
|
+
|
157
|
+
* Register stats directories with `Rails::CodeStatistics.register_directory` to support `rails stats` in Rails 8.
|
158
|
+
|
159
|
+
*Petrik de Heus*
|
160
|
+
|
161
|
+
* Fixed type declaration for `ViewComponent::TestHelpers.with_controller_class` parameter.
|
162
|
+
|
163
|
+
*Graham Rogers*
|
164
|
+
|
165
|
+
## 3.14.0
|
166
|
+
|
167
|
+
* Defer to built-in caching for language environment setup, rather than manually using `actions/cache` in CI.
|
168
|
+
|
169
|
+
*Simon Fish*
|
170
|
+
|
171
|
+
* Add test coverage for use of `turbo_stream` helpers in components when `capture_compatibility_patch_enabled` is `true`.
|
172
|
+
|
173
|
+
*Simon Fish*
|
174
|
+
|
175
|
+
* Add experimental `SlotableDefault` module, allowing components to define a `default_SLOTNAME` method to provide a default value for slots.
|
176
|
+
|
177
|
+
*Joel Hawksley*
|
178
|
+
|
179
|
+
* Add documentation on rendering ViewComponents outside of the view context.
|
180
|
+
|
181
|
+
*Joel Hawksley*
|
182
|
+
|
183
|
+
* Look for preview files that end in `preview.rb` rather than `_preview.rb` to allow previews to exist in sidecar directory with test files.
|
184
|
+
|
185
|
+
*Seth Herr*
|
186
|
+
|
187
|
+
* Add `assert_component_rendered` test helper.
|
188
|
+
|
189
|
+
*Reegan Viljoen*
|
190
|
+
|
191
|
+
* Add `prefix:` option to `use_helpers`.
|
192
|
+
|
193
|
+
*Reegan Viljoen*
|
194
|
+
|
195
|
+
* Add support for Rails 7.2.
|
196
|
+
|
197
|
+
*Reegan Viljoen*
|
198
|
+
|
199
|
+
## 3.13.0
|
200
|
+
|
201
|
+
* Add ruby head and YJIT to CI.
|
202
|
+
|
203
|
+
*Reegan Viljoen*
|
204
|
+
|
205
|
+
* Fixed a bug where inline templates where unable to remove trailing whitespace without throwing an error.
|
206
|
+
|
207
|
+
*Reegan Viljoen*
|
208
|
+
|
209
|
+
* Fixed CI for Rails main.
|
210
|
+
|
211
|
+
*Reegan Viljoen*
|
212
|
+
|
213
|
+
* Add `from:` option to `use_helpers` to allow for more flexible helper inclusion from modules.
|
214
|
+
|
215
|
+
*Reegan Viljoen*
|
216
|
+
|
217
|
+
* Fixed ruby head matcher issue.
|
218
|
+
|
219
|
+
*Reegan Viljoen*
|
220
|
+
|
221
|
+
## 3.12.1
|
222
|
+
|
223
|
+
* Ensure content is rendered correctly for forwarded slots.
|
224
|
+
|
225
|
+
*Cameron Dutro*
|
226
|
+
|
227
|
+
## 3.12.0
|
228
|
+
|
229
|
+
* Remove offline links from resources.
|
230
|
+
|
231
|
+
*Paulo Henrique Meneses*
|
232
|
+
|
233
|
+
* Fix templates not being correctly populated when caller location label has a prefix.
|
234
|
+
|
235
|
+
On the upstream version of Ruby, method owners are now included in backtraces as prefixes. This caused the call stack filtering to not work as intended and thus `source_location` to be incorrect for child ViewComponents, consequently not populating templates correctly.
|
236
|
+
|
237
|
+
*Allan Pires, Jason Kim*
|
238
|
+
|
239
|
+
* Use component path for generating RSpec files.
|
240
|
+
|
241
|
+
When generating new RSpec files for components, the generator will use the `view_component_path` value in the config to decide where to put the new spec file. For instance, if the `view_component_path` option has been changed to `app/views/components`, the generator will put the spec file in `spec/views/components`. **If the `view_component_path` doesn't start with `app/`, then the generator will fall back to `spec/components/`.**
|
242
|
+
|
243
|
+
This feature is enabled via the `config.view_component.generate.use_component_path_for_rspec_tests` option, defaulting to `false`. The default will change to `true` in ViewComponent v4.
|
244
|
+
|
245
|
+
*William Mathewson*
|
246
|
+
|
247
|
+
## 3.11.0
|
248
|
+
|
249
|
+
* Fix running non-integration tests under Rails main.
|
250
|
+
|
251
|
+
*Cameron Dutro*
|
252
|
+
|
253
|
+
* Better name and link for Avo.
|
254
|
+
|
255
|
+
*Adrian Marin*
|
256
|
+
|
257
|
+
* Document using rack-mini-profiler with ViewComponent.
|
258
|
+
|
259
|
+
*Thomas Carr*
|
260
|
+
|
261
|
+
* Move dependencies to gemspec.
|
262
|
+
|
263
|
+
*Joel Hawksley*
|
264
|
+
|
265
|
+
* Include ViewComponent::UseHelpers by default.
|
266
|
+
|
267
|
+
*Reegan Viljoen*
|
268
|
+
|
269
|
+
* Bump `puma` in Gemfile.lock.
|
270
|
+
|
271
|
+
*Cameron Dutro*
|
272
|
+
|
273
|
+
* Add Keenly to users list.
|
274
|
+
|
275
|
+
*Vinoth*
|
276
|
+
|
277
|
+
## 3.10.0
|
278
|
+
|
279
|
+
* Fix html escaping in `#call` for non-strings.
|
280
|
+
|
281
|
+
*Reegan Viljoen, Cameron Dutro*
|
282
|
+
|
283
|
+
* Add `output_preamble` to match `output_postamble`, using the same safety checks.
|
284
|
+
|
285
|
+
*Kali Donovan, Michael Daross*
|
286
|
+
|
287
|
+
* Exclude html escaping of I18n reserved keys with `I18n::RESERVED_KEYS` rather than `I18n.reserved_keys_pattern`.
|
288
|
+
|
289
|
+
*Nick Coyne*
|
290
|
+
|
291
|
+
* Update CI configuration to use `Appraisal`.
|
292
|
+
|
293
|
+
*Hans Lemuet, Simon Fish*
|
294
|
+
|
295
|
+
## 3.9.0
|
296
|
+
|
297
|
+
* Don’t break `rails stats` if ViewComponent path is missing.
|
298
|
+
|
299
|
+
*Claudio Baccigalupo*
|
300
|
+
|
301
|
+
* Add deprecation warnings for EOL ruby and Rails versions and patches associated with them.
|
302
|
+
|
303
|
+
*Reegan Viljoen*
|
304
|
+
|
305
|
+
* Add support for Ruby 3.3.
|
306
|
+
|
307
|
+
*Reegan Viljoen*
|
308
|
+
|
309
|
+
* Allow translations to be inherited and overridden in subclasses.
|
310
|
+
|
311
|
+
*Elia Schito*
|
312
|
+
|
313
|
+
* Resolve console warnings when running test suite.
|
314
|
+
|
315
|
+
*Joel Hawksley*
|
316
|
+
|
317
|
+
* Fix spelling in a local variable.
|
318
|
+
|
319
|
+
*Olle Jonsson*
|
320
|
+
|
321
|
+
* Avoid duplicating rendered string when `output_postamble` is blank.
|
322
|
+
|
323
|
+
*Mitchell Henke*
|
14
324
|
|
15
325
|
* Ensure HTML output safety.
|
16
326
|
|
17
327
|
*Cameron Dutro*
|
18
328
|
|
329
|
+
## 3.8.0
|
330
|
+
|
331
|
+
* Use correct value for the `config.action_dispatch.show_exceptions` config option for edge Rails.
|
332
|
+
|
333
|
+
*Cameron Dutro*
|
334
|
+
|
335
|
+
* Remove unsupported versions of Rails & Ruby from CI matrix.
|
336
|
+
|
337
|
+
*Reegan Viljoen*
|
338
|
+
|
339
|
+
* Raise error when uncountable slot names are used in `renders_many`
|
340
|
+
|
341
|
+
*Hugo Chantelauze*
|
342
|
+
*Reegan Viljoen*
|
343
|
+
|
344
|
+
* Replace usage of `String#ends_with?` with `String#end_with?` to reduce the dependency on ActiveSupport core extensions.
|
345
|
+
|
346
|
+
*halo*
|
347
|
+
|
348
|
+
* Don't add ActionDispatch::Static middleware unless `public_file_server.enabled`.
|
349
|
+
|
350
|
+
*Daniel Gonzalez*
|
351
|
+
*Reegan Viljoen*
|
352
|
+
|
353
|
+
* Resolve an issue where slots starting with `call` would cause a `NameError`
|
354
|
+
|
355
|
+
*Blake Williams*
|
356
|
+
|
357
|
+
* Add `use_helper` API.
|
358
|
+
|
359
|
+
*Reegan Viljoen*
|
360
|
+
|
361
|
+
* Fix bug where the `Rails` module wasn't being searched from the root namespace.
|
362
|
+
|
363
|
+
*Zenéixe*
|
364
|
+
|
365
|
+
* Fix bug where `#with_request_url`, set the incorrect `request.fullpath`.
|
366
|
+
|
367
|
+
*Nachiket Pusalkar*
|
368
|
+
|
369
|
+
* Allow setting method when using the `with_request_url` test helper.
|
370
|
+
|
371
|
+
*Andrew Duthie*
|
372
|
+
|
373
|
+
## 3.7.0
|
374
|
+
|
375
|
+
* Support Rails 7.1 in CI.
|
376
|
+
|
377
|
+
*Reegan Viljoen*
|
378
|
+
*Cameron Dutro*
|
379
|
+
|
380
|
+
* Document the capture compatibility patch on the Known issues page.
|
381
|
+
|
382
|
+
*Simon Fish*
|
383
|
+
|
384
|
+
* Add Simundia to list of companies using ViewComponent.
|
385
|
+
|
386
|
+
*Alexandre Ignjatovic*
|
387
|
+
|
388
|
+
* Reduce UnboundMethod objects by memoizing initialize_parameters.
|
389
|
+
|
390
|
+
*Rainer Borene*
|
391
|
+
|
392
|
+
* Improve docs about inline templates interpolation.
|
393
|
+
|
394
|
+
*Hans Lemuet*
|
395
|
+
|
396
|
+
* Update generators.md to clarify the way of changing `config.view_component.view_component_path`.
|
397
|
+
|
398
|
+
*Shozo Hatta*
|
399
|
+
|
400
|
+
* Attempt to fix Ferrum timeout errors by creating driver with unique name.
|
401
|
+
|
402
|
+
*Cameron Dutro*
|
403
|
+
|
404
|
+
## 3.6.0
|
405
|
+
|
406
|
+
* Refer to `helpers` in `NameError` message in development and test environments.
|
407
|
+
|
408
|
+
*Simon Fish*
|
409
|
+
|
410
|
+
* Fix API documentation and revert unnecessary change in `preview.rb`.
|
411
|
+
|
412
|
+
*Richard Macklin*
|
413
|
+
|
414
|
+
* Initialize ViewComponent::Config with defaults before framework load.
|
415
|
+
|
416
|
+
*Simon Fish*
|
417
|
+
|
418
|
+
* Add 3.2 to the list of Ruby CI versions
|
419
|
+
|
420
|
+
*Igor Drozdov*
|
421
|
+
|
422
|
+
* Stop running PVC's `docs:preview` rake task in CI, as the old docsite has been removed.
|
423
|
+
|
424
|
+
*Cameron Dutro*
|
425
|
+
|
426
|
+
* Minor testing documentation improvement.
|
427
|
+
|
428
|
+
*Travis Gaff*
|
429
|
+
|
430
|
+
* Add SearchApi to users list.
|
431
|
+
|
432
|
+
*Sebastjan Prachovskij*
|
433
|
+
|
434
|
+
* Fix `#with_request_url` to ensure `request.query_parameters` is an instance of ActiveSupport::HashWithIndifferentAccess.
|
435
|
+
|
436
|
+
*milk1000cc*
|
437
|
+
|
438
|
+
* Add PeopleForce to list of companies using ViewComponent.
|
439
|
+
|
440
|
+
*Volodymyr Khandiuk*
|
441
|
+
|
442
|
+
## 3.5.0
|
443
|
+
|
444
|
+
* Add Skroutz to users list.
|
445
|
+
|
446
|
+
*Chris Nitsas*
|
447
|
+
|
448
|
+
* Improve implementation of `#render_parent` so it respects variants and deep inheritance hierarchies.
|
449
|
+
|
450
|
+
*Cameron Dutro*
|
451
|
+
|
452
|
+
* Add CharlieHR to users list.
|
453
|
+
|
454
|
+
*Alex Balhatchet*
|
455
|
+
|
456
|
+
## 3.4.0
|
457
|
+
|
458
|
+
* Avoid including Rails `url_helpers` into `Preview` class when they're not defined.
|
459
|
+
|
460
|
+
*Richard Macklin*
|
461
|
+
|
462
|
+
* Allow instrumentation to be automatically included in Server-Timing headers generated by Rails. To enable this set the config `config.use_deprecated_instrumentation_name = false`. The old key `!render.view_component` is deprecated: update ActiveSupport::Notification subscriptions to `render.view_component`.
|
463
|
+
|
464
|
+
*Travis Gaff*
|
465
|
+
|
466
|
+
## 3.3.0
|
467
|
+
|
468
|
+
* Include InlineTemplate by default in Base. **Note:** It's no longer necessary to include `ViewComponent::InlineTemplate` to use inline templates.
|
469
|
+
|
470
|
+
*Joel Hawksley*
|
471
|
+
|
472
|
+
* Allow Setting host when using the `with_request_url` test helper.
|
473
|
+
|
474
|
+
*Daniel Alfaro*
|
475
|
+
|
476
|
+
* Resolve ambiguous preview paths when using components without the Component suffix.
|
477
|
+
|
478
|
+
*Reed Law*
|
479
|
+
|
480
|
+
## 3.2.0
|
481
|
+
|
482
|
+
* Fix viewcomponent.org Axe violations.
|
483
|
+
|
484
|
+
*Joel Hawksley*
|
485
|
+
|
486
|
+
* Fix example of RSpec configuration in docs
|
487
|
+
|
488
|
+
*Pasha Kalashnikov*
|
489
|
+
|
490
|
+
* Add URL helpers to previews
|
491
|
+
|
492
|
+
*Reegan Viljoen*
|
493
|
+
|
494
|
+
## 3.1.0
|
495
|
+
|
496
|
+
* Check `defined?(Rails) && Rails.application` before using `ViewComponent::Base.config.view_component_path`.
|
497
|
+
|
498
|
+
*Donapieppo*
|
499
|
+
|
500
|
+
* Allow customization of polymorphic slot setters.
|
501
|
+
|
502
|
+
*Cameron Dutro*
|
503
|
+
|
504
|
+
* Fix duplication in configuration docs.
|
505
|
+
|
506
|
+
*Tom Chen*
|
507
|
+
|
508
|
+
* Fix helpers not reloading in development.
|
509
|
+
|
510
|
+
*Jonathan del Strother*
|
511
|
+
|
512
|
+
* Add `SECURITY.md`.
|
513
|
+
|
514
|
+
*Joel Hawksley*
|
515
|
+
|
516
|
+
* Add Ophelos to list of companies using ViewComponent.
|
517
|
+
|
518
|
+
*Graham Rogers*
|
519
|
+
|
520
|
+
* Add FlightLogger to list of companies using ViewComponent.
|
521
|
+
|
522
|
+
*Joseph Carpenter*
|
523
|
+
|
524
|
+
* Fix coverage reports overwriting each other when running locally.
|
525
|
+
|
526
|
+
*Jonathan del Strother*
|
527
|
+
|
528
|
+
* Add @reeganviljoen to triage team.
|
529
|
+
|
530
|
+
*Reegan Viljoen*
|
531
|
+
|
532
|
+
### v3.0.0
|
533
|
+
|
534
|
+
1,000+ days and 100+ releases later, the 200+ contributors to ViewComponent are proud to ship v3.0.0!
|
535
|
+
|
536
|
+
We're so grateful for all the work of community members to get us to this release. Whether it’s filing bug reports, designing APIs in long-winded discussion threads, or writing code itself, ViewComponent is built by the community, for the community. We couldn’t be more proud of what we’re building together :heart:
|
537
|
+
|
538
|
+
This release makes the following breaking changes, many of which have long been deprecated:
|
539
|
+
|
540
|
+
* BREAKING: Remove deprecated slots setter methods. Use `with_SLOT_NAME` instead.
|
541
|
+
|
542
|
+
*Joel Hawksley*
|
543
|
+
|
544
|
+
For example:
|
545
|
+
|
546
|
+
```diff
|
547
|
+
<%= render BlogComponent.new do |component| %>
|
548
|
+
- <% component.header do %>
|
549
|
+
+ <% component.with_header do %>
|
550
|
+
<%= link_to "My blog", root_path %>
|
551
|
+
<% end %>
|
552
|
+
<% end %>
|
553
|
+
```
|
554
|
+
|
555
|
+
* BREAKING: Remove deprecated SlotsV1 in favor of current SlotsV2.
|
556
|
+
|
557
|
+
*Joel Hawksley*
|
558
|
+
|
559
|
+
* BREAKING: Remove deprecated `content_areas` feature. Use Slots instead.
|
560
|
+
|
561
|
+
*Joel Hawksley*
|
562
|
+
|
563
|
+
* BREAKING: Remove deprecated support for loading ViewComponent engine manually. Make sure `require "view_component/engine"` is removed from `Gemfile`.
|
564
|
+
|
565
|
+
*Joel Hawksley*
|
566
|
+
|
567
|
+
* BREAKING: Remove deprecated `generate_*` methods. Use `generate.*` instead.
|
568
|
+
|
569
|
+
*Joel Hawksley*
|
570
|
+
|
571
|
+
* BREAKING: Remove deprecated `with_variant` method.
|
572
|
+
|
573
|
+
*Joel Hawksley*
|
574
|
+
|
575
|
+
* BREAKING: Remove deprecated `rendered_component` in favor of `rendered_content`.
|
576
|
+
|
577
|
+
*Joel Hawksley*
|
578
|
+
|
579
|
+
* BREAKING: Remove deprecated `config.preview_path` in favor of `config.preview_paths`.
|
580
|
+
|
581
|
+
*Joel Hawksley*
|
582
|
+
|
583
|
+
* BREAKING: Support Ruby 2.7+ instead of 2.4+
|
584
|
+
|
585
|
+
*Joel Hawksley*
|
586
|
+
|
587
|
+
* BREAKING: Remove deprecated `before_render_check`.
|
588
|
+
|
589
|
+
*Joel Hawksley*
|
590
|
+
|
591
|
+
* BREAKING: Change counter variable to start iterating from `0` instead of `1`.
|
592
|
+
|
593
|
+
*Frank S*
|
594
|
+
|
595
|
+
* BREAKING: `#SLOT_NAME` getter no longer accepts arguments. This change was missed as part of the earlier deprecation in `3.0.0.rc1`.
|
596
|
+
|
597
|
+
*Joel Hawksley*
|
598
|
+
|
599
|
+
* BREAKING: Raise `TranslateCalledBeforeRenderError`, `ControllerCalledBeforeRenderError`, or `HelpersCalledBeforeRenderError` instead of `ViewContextCalledBeforeRenderError`.
|
600
|
+
|
601
|
+
*Joel Hawksley*
|
602
|
+
|
603
|
+
* BREAKING: Raise `SlotPredicateNameError`, `RedefinedSlotError`, `ReservedSingularSlotNameError`, `ContentSlotNameError`, `InvalidSlotDefinitionError`, `ReservedPluralSlotNameError`, `ContentAlreadySetForPolymorphicSlotErrror`, `SystemTestControllerOnlyAllowedInTestError`, `SystemTestControllerNefariousPathError`, `NoMatchingTemplatesForPreviewError`, `MultipleMatchingTemplatesForPreviewError`, `DuplicateContentError`, `EmptyOrInvalidInitializerError`, `MissingCollectionArgumentError`, `ReservedParameterError`, `InvalidCollectionArgumentError`, `MultipleInlineTemplatesError`, `MissingPreviewTemplateError`, `DuplicateSlotContentError` or `NilWithContentError` instead of generic error classes.
|
604
|
+
|
605
|
+
*Joel Hawksley*
|
606
|
+
|
607
|
+
* BREAKING: Rename `SlotV2` to `Slot` and `SlotableV2` to `Slotable`.
|
608
|
+
|
609
|
+
*Joel Hawksley*
|
610
|
+
|
611
|
+
* BREAKING: Incorporate `PolymorphicSlots` into `Slotable`. To migrate, remove any references to `PolymorphicSlots` as they are no longer necessary.
|
612
|
+
|
613
|
+
*Joel Hawksley*
|
614
|
+
|
615
|
+
* BREAKING: Rename private TestHelpers#controller, #build_controller, #request, and #preview_class to avoid conflicts. Note: While these methods were undocumented and marked as private, they were accessible in tests. As such, we're considering this to be a breaking change.
|
616
|
+
|
617
|
+
*Joel Hawksley*
|
618
|
+
|
619
|
+
* Add support for CSP nonces inside of components.
|
620
|
+
|
621
|
+
*Reegan Viljoen*
|
622
|
+
|
623
|
+
### v3.0.0.rc6
|
624
|
+
|
625
|
+
Run into an issue with this release candidate? [Let us know](https://github.com/ViewComponent/view_component/issues/1629). We hope to release v3.0.0 in the near future!
|
626
|
+
|
627
|
+
* BREAKING: `#SLOT_NAME` getter no longer accepts arguments. This change was missed as part of the earlier deprecation in `3.0.0.rc1`.
|
628
|
+
|
629
|
+
*Joel Hawksley*
|
630
|
+
|
631
|
+
* BREAKING: Raise `TranslateCalledBeforeRenderError`, `ControllerCalledBeforeRenderError`, or `HelpersCalledBeforeRenderError` instead of `ViewContextCalledBeforeRenderError`.
|
632
|
+
|
633
|
+
*Joel Hawksley*
|
634
|
+
|
635
|
+
* BREAKING: Raise `SlotPredicateNameError`, `RedefinedSlotError`, `ReservedSingularSlotNameError`, `ContentSlotNameError`, `InvalidSlotDefinitionError`, `ReservedPluralSlotNameError`, `ContentAlreadySetForPolymorphicSlotErrror`, `SystemTestControllerOnlyAllowedInTestError`, `SystemTestControllerNefariousPathError`, `NoMatchingTemplatesForPreviewError`, `MultipleMatchingTemplatesForPreviewError`, `DuplicateContentError`, `EmptyOrInvalidInitializerError`, `MissingCollectionArgumentError`, `ReservedParameterError`, `InvalidCollectionArgumentError`, `MultipleInlineTemplatesError`, `MissingPreviewTemplateError`, `DuplicateSlotContentError` or `NilWithContentError` instead of generic error classes.
|
636
|
+
|
637
|
+
*Joel Hawksley*
|
638
|
+
|
639
|
+
* Fix bug where `content?` and `with_content` didn't work reliably with slots.
|
640
|
+
|
641
|
+
*Derek Kniffin, Joel Hawksley*
|
642
|
+
|
643
|
+
* Add `with_SLOT_NAME_content` helper.
|
644
|
+
|
645
|
+
*Will Cosgrove*
|
646
|
+
|
647
|
+
* Allow ActiveRecord objects to be passed to `renders_many`.
|
648
|
+
|
649
|
+
*Leigh Halliday*
|
650
|
+
|
651
|
+
* Fix broken links in documentation.
|
652
|
+
|
653
|
+
*Ellen Keal*
|
654
|
+
|
655
|
+
* Run `standardrb` against markdown in docs.
|
656
|
+
|
657
|
+
*Joel Hawksley*
|
658
|
+
|
659
|
+
* Allow `.with_content` to be redefined by components.
|
660
|
+
|
661
|
+
*Joel Hawksley*
|
662
|
+
|
663
|
+
* Run `standardrb` against markdown in docs.
|
664
|
+
|
665
|
+
*Joel Hawksley*
|
666
|
+
|
667
|
+
* Raise error if translations are used in initializer.
|
668
|
+
|
669
|
+
*Joel Hawksley*
|
670
|
+
|
671
|
+
## v3.0.0.rc5
|
672
|
+
|
673
|
+
Run into an issue with this release candidate? [Let us know](https://github.com/ViewComponent/view_component/issues/1629).
|
674
|
+
|
675
|
+
* Fix bug where `mkdir_p` failed due to incorrect permissions.
|
676
|
+
|
677
|
+
*Joel Hawksley*
|
678
|
+
|
679
|
+
* Check for inline `erb_template` calls when deciding whether to compile a component's superclass.
|
680
|
+
|
681
|
+
*Justin Kenyon*
|
682
|
+
|
683
|
+
* Protect against `SystemStackError` if `CaptureCompatibility` module is included more than once.
|
684
|
+
|
685
|
+
*Cameron Dutro*
|
686
|
+
|
687
|
+
## v3.0.0.rc4
|
688
|
+
|
689
|
+
Run into an issue with this release candidate? [Let us know](https://github.com/ViewComponent/view_component/issues/1629).
|
690
|
+
|
691
|
+
* Add `TestHelpers#vc_test_request`.
|
692
|
+
|
693
|
+
*Joel Hawksley*
|
694
|
+
|
695
|
+
## v3.0.0.rc3
|
696
|
+
|
697
|
+
Run into an issue with this release candidate? [Let us know](https://github.com/ViewComponent/view_component/issues/1629).
|
698
|
+
|
699
|
+
* Fix typos in generator docs.
|
700
|
+
|
701
|
+
*Sascha Karnatz*
|
702
|
+
|
703
|
+
* Add `TestHelpers#vc_test_controller`.
|
704
|
+
|
705
|
+
*Joel Hawksley*
|
706
|
+
|
707
|
+
* Document `config.view_component.capture_compatibility_patch_enabled` as option for the known incompatibilities with Rails form helpers.
|
708
|
+
|
709
|
+
*Tobias L. Maier*
|
710
|
+
|
711
|
+
* Add support for experimental inline templates.
|
712
|
+
|
713
|
+
*Blake Williams*
|
714
|
+
|
715
|
+
* Expose `translate` and `t` I18n methods on component classes.
|
716
|
+
|
717
|
+
*Elia Schito*
|
718
|
+
|
719
|
+
* Protect against Arbitrary File Read edge case in `ViewComponentsSystemTestController`.
|
720
|
+
|
721
|
+
*Nick Malcolm*
|
722
|
+
|
723
|
+
## v3.0.0.rc2
|
724
|
+
|
725
|
+
Run into an issue with this release? [Let us know](https://github.com/ViewComponent/view_component/issues/1629).
|
726
|
+
|
727
|
+
* BREAKING: Rename `SlotV2` to `Slot` and `SlotableV2` to `Slotable`.
|
728
|
+
|
729
|
+
*Joel Hawksley*
|
730
|
+
|
731
|
+
* BREAKING: Incorporate `PolymorphicSlots` into `Slotable`. To migrate, remove any references to `PolymorphicSlots` as they are no longer necessary.
|
732
|
+
|
733
|
+
*Joel Hawksley*
|
734
|
+
|
735
|
+
* BREAKING: Rename private TestHelpers#controller, #build_controller, #request, and #preview_class to avoid conflicts. Note: While these methods were undocumented and marked as private, they were accessible in tests. As such, we're considering this to be a breaking change.
|
736
|
+
|
737
|
+
*Joel Hawksley*
|
738
|
+
|
739
|
+
* Avoid loading ActionView::Base during Rails initialization. Originally submitted in #1528.
|
740
|
+
|
741
|
+
*Jonathan del Strother*
|
742
|
+
|
743
|
+
* Improve documentation of known incompatibilities with Rails form helpers.
|
744
|
+
|
745
|
+
*Tobias L. Maier*
|
746
|
+
|
747
|
+
* Remove dependency on environment task from `view_component:statsetup`.
|
748
|
+
|
749
|
+
*Svetlin Simonyan*
|
750
|
+
|
751
|
+
* Add experimental `config.view_component.capture_compatibility_patch_enabled` option resolving rendering issues related to forms, capture, turbo frames, etc.
|
752
|
+
|
753
|
+
*Blake Williams*
|
754
|
+
|
755
|
+
* Add `#content?` method that indicates if content has been passed to component.
|
756
|
+
|
757
|
+
*Joel Hawksley*
|
758
|
+
|
759
|
+
* Added example of a custom preview controller.
|
760
|
+
|
761
|
+
*Graham Rogers*
|
762
|
+
|
763
|
+
* Add Krystal to list of companies using ViewComponent.
|
764
|
+
|
765
|
+
*Matt Bearman*
|
766
|
+
|
767
|
+
* Add Mon Ami to list of companies using ViewComponent.
|
768
|
+
|
769
|
+
*Ethan Lee-Tyson*
|
770
|
+
|
771
|
+
## 3.0.0.rc1
|
772
|
+
|
773
|
+
1,000+ days and 100+ releases later, the 200+ contributors to ViewComponent are proud to ship v3.0.0!
|
774
|
+
|
775
|
+
We're so grateful for all the work of community members to get us to this release. Whether it’s filing bug reports, designing APIs in long-winded discussion threads, or writing code itself, ViewComponent is built by the community, for the community. We couldn’t be more proud of what we’re building together :heart:
|
776
|
+
|
777
|
+
This release makes the following breaking changes, many of which have long been deprecated:
|
778
|
+
|
779
|
+
* BREAKING: Remove deprecated slots setter methods. Use `with_SLOT_NAME` instead.
|
780
|
+
|
781
|
+
*Joel Hawksley*
|
782
|
+
|
783
|
+
* BREAKING: Remove deprecated SlotsV1 in favor of current SlotsV2.
|
784
|
+
|
785
|
+
*Joel Hawksley*
|
786
|
+
|
787
|
+
* BREAKING: Remove deprecated `content_areas` feature. Use Slots instead.
|
788
|
+
|
789
|
+
*Joel Hawksley*
|
790
|
+
|
791
|
+
* BREAKING: Remove deprecated support for loading ViewComponent engine manually. Make sure `require "view_component/engine"` is removed from `Gemfile`.
|
792
|
+
|
793
|
+
*Joel Hawksley*
|
794
|
+
|
795
|
+
* BREAKING: Remove deprecated `generate_*` methods. Use `generate.*` instead.
|
796
|
+
|
797
|
+
*Joel Hawksley*
|
798
|
+
|
799
|
+
* BREAKING: Remove deprecated `with_variant` method.
|
800
|
+
|
801
|
+
*Joel Hawksley*
|
802
|
+
|
803
|
+
* BREAKING: Remove deprecated `rendered_component` in favor of `rendered_content`.
|
804
|
+
|
805
|
+
*Joel Hawksley*
|
806
|
+
|
807
|
+
* BREAKING: Remove deprecated `config.preview_path` in favor of `config.preview_paths`.
|
808
|
+
|
809
|
+
*Joel Hawksley*
|
810
|
+
|
811
|
+
* BREAKING: Support Ruby 2.7+ instead of 2.4+
|
812
|
+
|
813
|
+
*Joel Hawksley*
|
814
|
+
|
815
|
+
* BREAKING: Remove deprecated `before_render_check`.
|
816
|
+
|
817
|
+
*Joel Hawksley*
|
818
|
+
|
819
|
+
* BREAKING: Change counter variable to start iterating from `0` instead of `1`.
|
820
|
+
|
821
|
+
*Frank S*
|
822
|
+
|
823
|
+
Run into an issue with this release? [Let us know](https://github.com/ViewComponent/view_component/issues/1629).
|
824
|
+
|
19
825
|
## 2.82.0
|
20
826
|
|
21
827
|
* Revert "Avoid loading ActionView::Base during initialization (#1528)"
|