humidifier 4.1.1 → 4.2.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/.github/workflows/main.yml +1 -1
- data/.rubocop.yml +15 -1
- data/CHANGELOG.md +12 -1
- data/CloudFormationResourceSpecification.json +104326 -35227
- data/Gemfile +1 -1
- data/Gemfile.lock +31 -31
- data/README.md +5 -0
- data/Rakefile +11 -11
- data/exe/humidifier +5 -5
- data/humidifier.gemspec +29 -29
- data/lib/humidifier/cli.rb +30 -22
- data/lib/humidifier/config/mapper.rb +1 -1
- data/lib/humidifier/config/mapping.rb +2 -2
- data/lib/humidifier/config.rb +1 -1
- data/lib/humidifier/directory.rb +5 -5
- data/lib/humidifier/loader.rb +104 -48
- data/lib/humidifier/output.rb +3 -3
- data/lib/humidifier/parameter.rb +2 -2
- data/lib/humidifier/props.rb +73 -51
- data/lib/humidifier/ref.rb +1 -1
- data/lib/humidifier/resource.rb +3 -3
- data/lib/humidifier/serializer.rb +2 -2
- data/lib/humidifier/stack.rb +6 -6
- data/lib/humidifier/upgrade.rb +10 -10
- data/lib/humidifier/version.rb +1 -1
- data/lib/humidifier.rb +31 -31
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e34324981b385bc3efdad5bfeeb886003df6b3bcdb627fb95c1f56412c10eba5
|
4
|
+
data.tar.gz: 8cc326723106dc6cba28d716e4c3d0a872989adde9c11d8403f499cd1efa5bda
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8482de19718abc28b58c1468fb51ee0541cb50beb033a87e948869c6e247241ecbf477190bf895c2d593dcd73135536c6259ffd83209996dd9d6cecdbd5c4066
|
7
|
+
data.tar.gz: dfe5eb332ecdc43e2e530e310e00eaaa69eb15c86d5e424ecdec2f7471a332ae19cacd99d9f832609dd8375b3cc6a4c93acce30e37a92c05a136bc2033bb18e7
|
data/.github/workflows/main.yml
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
AllCops:
|
2
2
|
DisplayCopNames: true
|
3
3
|
DisplayStyleGuide: true
|
4
|
+
NewCops: enable
|
5
|
+
SuggestExtensions: false
|
4
6
|
TargetRubyVersion: 2.7
|
5
7
|
Exclude:
|
6
8
|
- '{tmp,vendor,yard}/**/*'
|
@@ -14,12 +16,21 @@ Layout/LineLength:
|
|
14
16
|
Lint/AmbiguousBlockAssociation:
|
15
17
|
Enabled: false
|
16
18
|
|
17
|
-
|
19
|
+
Lint/DuplicateBranch:
|
20
|
+
Enabled: false
|
21
|
+
|
22
|
+
Lint/EmptyBlock:
|
23
|
+
Enabled: false
|
24
|
+
|
25
|
+
Metrics:
|
18
26
|
Enabled: false
|
19
27
|
|
20
28
|
Naming/MemoizedInstanceVariableName:
|
21
29
|
Enabled: false
|
22
30
|
|
31
|
+
Naming/MethodParameterName:
|
32
|
+
Enabled: false
|
33
|
+
|
23
34
|
Naming/RescuedExceptionsVariableName:
|
24
35
|
Enabled: false
|
25
36
|
|
@@ -43,3 +54,6 @@ Style/OptionalBooleanParameter:
|
|
43
54
|
|
44
55
|
Style/PerlBackrefs:
|
45
56
|
Enabled: false
|
57
|
+
|
58
|
+
Style/StringLiterals:
|
59
|
+
EnforcedStyle: double_quotes
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [4.2.0] - 2022-06-06
|
10
|
+
|
11
|
+
### Added
|
12
|
+
|
13
|
+
- The `version` command which will print out the specification version.
|
14
|
+
|
15
|
+
### Changed
|
16
|
+
|
17
|
+
- Bump to CFN spec 75.0.0.
|
18
|
+
|
9
19
|
## [4.1.1] - 2021-11-17
|
10
20
|
|
11
21
|
### Changed
|
@@ -98,7 +108,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
98
108
|
### Changed
|
99
109
|
- Update to CloudFormation specs v2.15.0
|
100
110
|
|
101
|
-
[unreleased]: https://github.com/kddnewton/humidifier/compare/v4.
|
111
|
+
[unreleased]: https://github.com/kddnewton/humidifier/compare/v4.2.0...HEAD
|
112
|
+
[4.2.0]: https://github.com/kddnewton/humidifier/compare/v4.1.1...v4.2.0
|
102
113
|
[4.1.1]: https://github.com/kddnewton/humidifier/compare/v4.1.0...v4.1.1
|
103
114
|
[4.1.0]: https://github.com/kddnewton/humidifier/compare/v4.0.2...v4.1.0
|
104
115
|
[4.0.2]: https://github.com/kddnewton/humidifier/compare/v4.0.1...v4.0.2
|