view_component-form 0.3.0 → 0.3.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb7de8796f3d1d1c9b97fc0a44be13dcd52c2bbb7a110e3fae30b304de6878a4
|
|
4
|
+
data.tar.gz: e4433d65cddff7b870dc6f27d6c160cbc7ead213c36f328508001c849824786a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a761bdd5ca27a3eec09758e4208b18a6e4e268479e04c7a6fb64cae9552405430743e20592aed3c31837e22c63b3c989e269231a62a3cfe09ad9d6d5a8e6035f
|
|
7
|
+
data.tar.gz: e3180c117bbdf67b537cbb1f8ebdeca0aa829248d9bed006878301908b267f27c35fff6527aa85385e2b034052506240b06cd35e95464fa9e995df7c933f3b4e
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
Nothing yet.
|
|
9
|
+
|
|
10
|
+
## [0.3.1] - 2026-08-07
|
|
11
|
+
### Fixed
|
|
12
|
+
- Detect required association validators for `_id` and `_ids` fields (#229)
|
|
13
|
+
### Changed
|
|
14
|
+
- Remove upper bound for Rails dependencies (#206)
|
|
8
15
|
|
|
9
16
|
## [0.3.0] - 2025-10-24
|
|
10
17
|
### Added
|
|
@@ -145,7 +152,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
145
152
|
- Add CHANGELOG (#50)
|
|
146
153
|
- Add CI (#2)
|
|
147
154
|
|
|
148
|
-
[Unreleased]: https://github.com/pantographe/view_component-form/compare/v0.
|
|
155
|
+
[Unreleased]: https://github.com/pantographe/view_component-form/compare/v0.3.1...HEAD
|
|
156
|
+
[0.3.1]: https://github.com/pantographe/view_component-form/compare/v0.3.0...v0.3.1
|
|
157
|
+
[0.3.0]: https://github.com/pantographe/view_component-form/compare/v0.2.11...v0.3.0
|
|
149
158
|
[0.2.11]: https://github.com/pantographe/view_component-form/compare/v0.2.10...v0.2.11
|
|
150
159
|
[0.2.10]: https://github.com/pantographe/view_component-form/compare/v0.2.9...v0.2.10
|
|
151
160
|
[0.2.9]: https://github.com/pantographe/view_component-form/compare/v0.2.8...v0.2.9
|
|
@@ -8,7 +8,7 @@ class TestView < ActionView::Base
|
|
|
8
8
|
include ActionText::TagHelper if defined?(ActionText)
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
-
module ViewComponent
|
|
11
|
+
module ViewComponent # rubocop:disable Style/OneClassPerFile
|
|
12
12
|
module Form
|
|
13
13
|
module TestHelpers
|
|
14
14
|
def form_with(object, builder: ViewComponent::Form::Builder, **options)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: view_component-form
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pantographe
|
|
@@ -16,9 +16,6 @@ dependencies:
|
|
|
16
16
|
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
18
|
version: 7.2.0
|
|
19
|
-
- - "<"
|
|
20
|
-
- !ruby/object:Gem::Version
|
|
21
|
-
version: '8.2'
|
|
22
19
|
type: :runtime
|
|
23
20
|
prerelease: false
|
|
24
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -26,9 +23,6 @@ dependencies:
|
|
|
26
23
|
- - ">="
|
|
27
24
|
- !ruby/object:Gem::Version
|
|
28
25
|
version: 7.2.0
|
|
29
|
-
- - "<"
|
|
30
|
-
- !ruby/object:Gem::Version
|
|
31
|
-
version: '8.2'
|
|
32
26
|
- !ruby/object:Gem::Dependency
|
|
33
27
|
name: activesupport
|
|
34
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -36,9 +30,6 @@ dependencies:
|
|
|
36
30
|
- - ">="
|
|
37
31
|
- !ruby/object:Gem::Version
|
|
38
32
|
version: 7.2.0
|
|
39
|
-
- - "<"
|
|
40
|
-
- !ruby/object:Gem::Version
|
|
41
|
-
version: '8.2'
|
|
42
33
|
type: :runtime
|
|
43
34
|
prerelease: false
|
|
44
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -46,9 +37,6 @@ dependencies:
|
|
|
46
37
|
- - ">="
|
|
47
38
|
- !ruby/object:Gem::Version
|
|
48
39
|
version: 7.2.0
|
|
49
|
-
- - "<"
|
|
50
|
-
- !ruby/object:Gem::Version
|
|
51
|
-
version: '8.2'
|
|
52
40
|
- !ruby/object:Gem::Dependency
|
|
53
41
|
name: view_component
|
|
54
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -166,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
166
154
|
- !ruby/object:Gem::Version
|
|
167
155
|
version: '0'
|
|
168
156
|
requirements: []
|
|
169
|
-
rubygems_version:
|
|
157
|
+
rubygems_version: 4.0.16
|
|
170
158
|
specification_version: 4
|
|
171
159
|
summary: Rails FormBuilder for ViewComponent
|
|
172
160
|
test_files: []
|