view_component 3.0.0.rc6 → 3.0.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/docs/CHANGELOG.md +76 -0
- data/lib/view_component/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 639cd1c50a78567738c9d90363e98cb740f1f45ca70c9cb7ea20d22aacbce6e9
|
|
4
|
+
data.tar.gz: cbec2597e6193dcb43ddab199d1147977d505dd320b765ed38eb11f877917f23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b26863964af13fd7c3bca798f4acd88c87709965badda42b02fe8125151f6e91b879e5118551d5b4c041509bbe26c2d463fcd4470bf6cbe5f946bc99c34f6a9c
|
|
7
|
+
data.tar.gz: e170eae333570563f5e068e8cbc1c4cfab05363671a9691169eaa2cbb30202076d38d8b59b8d7b28a73ab8777542c9173455e6f828f5f7344a3213424a69d049
|
data/docs/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,82 @@ nav_order: 5
|
|
|
10
10
|
|
|
11
11
|
## main
|
|
12
12
|
|
|
13
|
+
### v3.0.0
|
|
14
|
+
|
|
15
|
+
1,000+ days and 100+ releases later, the 200+ contributors to ViewComponent are proud to ship v3.0.0!
|
|
16
|
+
|
|
17
|
+
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:
|
|
18
|
+
|
|
19
|
+
This release makes the following breaking changes, many of which have long been deprecated:
|
|
20
|
+
|
|
21
|
+
* BREAKING: Remove deprecated slots setter methods. Use `with_SLOT_NAME` instead.
|
|
22
|
+
|
|
23
|
+
*Joel Hawksley*
|
|
24
|
+
|
|
25
|
+
* BREAKING: Remove deprecated SlotsV1 in favor of current SlotsV2.
|
|
26
|
+
|
|
27
|
+
*Joel Hawksley*
|
|
28
|
+
|
|
29
|
+
* BREAKING: Remove deprecated `content_areas` feature. Use Slots instead.
|
|
30
|
+
|
|
31
|
+
*Joel Hawksley*
|
|
32
|
+
|
|
33
|
+
* BREAKING: Remove deprecated support for loading ViewComponent engine manually. Make sure `require "view_component/engine"` is removed from `Gemfile`.
|
|
34
|
+
|
|
35
|
+
*Joel Hawksley*
|
|
36
|
+
|
|
37
|
+
* BREAKING: Remove deprecated `generate_*` methods. Use `generate.*` instead.
|
|
38
|
+
|
|
39
|
+
*Joel Hawksley*
|
|
40
|
+
|
|
41
|
+
* BREAKING: Remove deprecated `with_variant` method.
|
|
42
|
+
|
|
43
|
+
*Joel Hawksley*
|
|
44
|
+
|
|
45
|
+
* BREAKING: Remove deprecated `rendered_component` in favor of `rendered_content`.
|
|
46
|
+
|
|
47
|
+
*Joel Hawksley*
|
|
48
|
+
|
|
49
|
+
* BREAKING: Remove deprecated `config.preview_path` in favor of `config.preview_paths`.
|
|
50
|
+
|
|
51
|
+
*Joel Hawksley*
|
|
52
|
+
|
|
53
|
+
* BREAKING: Support Ruby 2.7+ instead of 2.4+
|
|
54
|
+
|
|
55
|
+
*Joel Hawksley*
|
|
56
|
+
|
|
57
|
+
* BREAKING: Remove deprecated `before_render_check`.
|
|
58
|
+
|
|
59
|
+
*Joel Hawksley*
|
|
60
|
+
|
|
61
|
+
* BREAKING: Change counter variable to start iterating from `0` instead of `1`.
|
|
62
|
+
|
|
63
|
+
*Frank S*
|
|
64
|
+
|
|
65
|
+
* BREAKING: `#SLOT_NAME` getter no longer accepts arguments. This change was missed as part of the earlier deprecation in `3.0.0.rc1`.
|
|
66
|
+
|
|
67
|
+
*Joel Hawksley*
|
|
68
|
+
|
|
69
|
+
* BREAKING: Raise `TranslateCalledBeforeRenderError`, `ControllerCalledBeforeRenderError`, or `HelpersCalledBeforeRenderError` instead of `ViewContextCalledBeforeRenderError`.
|
|
70
|
+
|
|
71
|
+
*Joel Hawksley*
|
|
72
|
+
|
|
73
|
+
* 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.
|
|
74
|
+
|
|
75
|
+
*Joel Hawksley*
|
|
76
|
+
|
|
77
|
+
* BREAKING: Rename `SlotV2` to `Slot` and `SlotableV2` to `Slotable`.
|
|
78
|
+
|
|
79
|
+
*Joel Hawksley*
|
|
80
|
+
|
|
81
|
+
* BREAKING: Incorporate `PolymorphicSlots` into `Slotable`. To migrate, remove any references to `PolymorphicSlots` as they are no longer necessary.
|
|
82
|
+
|
|
83
|
+
*Joel Hawksley*
|
|
84
|
+
|
|
85
|
+
* 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.
|
|
86
|
+
|
|
87
|
+
*Joel Hawksley*
|
|
88
|
+
|
|
13
89
|
### v3.0.0.rc6
|
|
14
90
|
|
|
15
91
|
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!
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: view_component
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.0
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ViewComponent Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-04-
|
|
11
|
+
date: 2023-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -416,9 +416,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
416
416
|
version: 2.7.0
|
|
417
417
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
418
418
|
requirements:
|
|
419
|
-
- - "
|
|
419
|
+
- - ">="
|
|
420
420
|
- !ruby/object:Gem::Version
|
|
421
|
-
version:
|
|
421
|
+
version: '0'
|
|
422
422
|
requirements: []
|
|
423
423
|
rubygems_version: 3.2.32
|
|
424
424
|
signing_key:
|