cfndsl 1.0.5 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +18 -3
- data/.travis.yml +1 -1
- data/CHANGELOG.md +215 -41
- data/README.md +9 -11
- data/Rakefile +3 -1
- data/cfndsl.gemspec +2 -2
- data/lib/cfndsl/aws/patches/500_BadTagsv13.0.0_patch.json +51 -0
- data/lib/cfndsl/aws/patches/500_BadTagsv16.2.0_patch.json +23 -0
- data/lib/cfndsl/aws/patches/900_SageMakerTags_patch.json +41 -0
- data/lib/cfndsl/aws/resource_specification.json +4528 -3459
- data/lib/cfndsl/cfnlego/cloudformation.rb +1 -1
- data/lib/cfndsl/cloudformation.rb +3 -2
- data/lib/cfndsl/globals.rb +1 -0
- data/lib/cfndsl/jsonable.rb +7 -6
- data/lib/cfndsl/orchestration_template.rb +3 -5
- data/lib/cfndsl/plurals.rb +2 -2
- data/lib/cfndsl/rake_task.rb +6 -6
- data/lib/cfndsl/ref_check.rb +2 -2
- data/lib/cfndsl/resources.rb +18 -1
- data/lib/cfndsl/runner.rb +2 -4
- data/lib/cfndsl/specification.rb +11 -13
- data/lib/cfndsl/types.rb +11 -7
- data/lib/cfndsl/version.rb +1 -1
- data/lib/deep_merge/core.rb +9 -8
- data/sample/vpc_example.rb +3 -3
- data/sample/vpc_with_vpn_example.rb +3 -3
- data/spec/cfndsl_spec.rb +20 -0
- data/spec/cli_spec.rb +2 -0
- data/spec/cloud_formation_template_spec.rb +34 -0
- data/spec/support/shared_examples/orchestration_template.rb +7 -0
- data/spec/types_definition_spec.rb +3 -2
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4888acd0e17faf09fae382e22f218de5c1fcf3c734d2d6354df78f2980fab112
|
4
|
+
data.tar.gz: 90983fc52aba48a1f8ed2b171b15bdc6c87c4e8797938b821bb2f9063bbaa897
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55bef3d697fabf51322e0e460d5a1c408ad3eed169eda5bf9ef41d722391327dff41a593f92eb2d89b258cf31a31919e3e055d4a6538ba46c1fbd6251664fc61
|
7
|
+
data.tar.gz: 821e4142a8e694f14c69ef73efecb65d757096f2b8255fa4cf7c172dca1299e5184e00c06119e6ad94aa6d4d75aac1b274237122532d854b34c6c197d6055efa
|
data/.rubocop.yml
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
|
1
|
+
Layout/LineLength:
|
2
2
|
Max: 160
|
3
3
|
|
4
4
|
Metrics/CyclomaticComplexity:
|
5
5
|
Max: 10
|
6
6
|
|
7
7
|
Metrics/AbcSize:
|
8
|
-
Max:
|
8
|
+
Max: 30
|
9
9
|
|
10
10
|
Metrics/BlockLength:
|
11
11
|
Enabled: false
|
@@ -13,6 +13,12 @@ Metrics/BlockLength:
|
|
13
13
|
Metrics/MethodLength:
|
14
14
|
Max: 25
|
15
15
|
|
16
|
+
Metrics/PerceivedComplexity:
|
17
|
+
Max: 15
|
18
|
+
|
19
|
+
Metrics/ClassLength:
|
20
|
+
Max: 105
|
21
|
+
|
16
22
|
# Due to our @Properties style instance names
|
17
23
|
Naming/VariableName:
|
18
24
|
Enabled: false
|
@@ -25,10 +31,19 @@ Naming/MethodName:
|
|
25
31
|
Lint/Void:
|
26
32
|
Enabled: false
|
27
33
|
|
34
|
+
Lint/MissingSuper:
|
35
|
+
Enabled: false
|
36
|
+
|
28
37
|
Style/SafeNavigation:
|
29
38
|
Enabled: false
|
30
39
|
|
40
|
+
# crashing in 0.85.0
|
41
|
+
Lint/MixedRegexpCaptureTypes:
|
42
|
+
Enabled: false
|
43
|
+
|
31
44
|
AllCops:
|
32
|
-
|
45
|
+
NewCops: disable
|
46
|
+
SuggestExtensions: false
|
47
|
+
TargetRubyVersion: 2.7
|
33
48
|
Exclude:
|
34
49
|
- 'tmp/**/*'
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,14 +1,92 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
## [
|
4
|
-
|
3
|
+
## [1.3.0](https://github.com/cfndsl/cfndsl/tree/1.3.0) (2021-01-04)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.2.0...1.3.0)
|
6
|
+
|
7
|
+
**Closed issues:**
|
8
|
+
|
9
|
+
- Freeze specifications version [\#466](https://github.com/cfndsl/cfndsl/issues/466)
|
10
|
+
- Outdated assertion in Readme [\#459](https://github.com/cfndsl/cfndsl/issues/459)
|
11
|
+
- Composing and merging CfnDsl templates [\#375](https://github.com/cfndsl/cfndsl/issues/375)
|
12
|
+
|
13
|
+
**Merged pull requests:**
|
14
|
+
|
15
|
+
- enable resource version 22.0.0, some type processing fixes [\#467](https://github.com/cfndsl/cfndsl/pull/467) ([toshke](https://github.com/toshke))
|
16
|
+
|
17
|
+
## [v1.2.0](https://github.com/cfndsl/cfndsl/tree/v1.2.0) (2020-07-29)
|
18
|
+
|
19
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.1.1...v1.2.0)
|
20
|
+
|
21
|
+
**Implemented enhancements:**
|
22
|
+
|
23
|
+
- Support for Fn::EachMemberEquals, Fn::EachMemberIn, Fn::RefAll, Fn::ValueOf , Fn::ValueOfAll [\#250](https://github.com/cfndsl/cfndsl/issues/250)
|
24
|
+
- Handle Serialization Generically [\#248](https://github.com/cfndsl/cfndsl/issues/248)
|
25
|
+
- Clarify Functions [\#232](https://github.com/cfndsl/cfndsl/issues/232)
|
26
|
+
- Support for rendering nested stacks [\#118](https://github.com/cfndsl/cfndsl/issues/118)
|
27
|
+
- Config driven template generation [\#117](https://github.com/cfndsl/cfndsl/issues/117)
|
28
|
+
- Unintended side effectos of PR \#64 - Need better error messages for ambiguous resources. [\#68](https://github.com/cfndsl/cfndsl/issues/68)
|
29
|
+
- DependsOn should be constructive [\#63](https://github.com/cfndsl/cfndsl/issues/63)
|
30
|
+
|
31
|
+
**Closed issues:**
|
32
|
+
|
33
|
+
- SecurityGroupIngress is always an array - 1.1.1 [\#460](https://github.com/cfndsl/cfndsl/issues/460)
|
34
|
+
- CloudFrontOriginAccessIdentity is an undefined method [\#448](https://github.com/cfndsl/cfndsl/issues/448)
|
35
|
+
- Suggested way of splitting code to multiple files? [\#259](https://github.com/cfndsl/cfndsl/issues/259)
|
36
|
+
- Move AWS Types to ruby Contracts for better and more flexible validation? [\#222](https://github.com/cfndsl/cfndsl/issues/222)
|
37
|
+
|
38
|
+
**Merged pull requests:**
|
39
|
+
|
40
|
+
- Support composeable DependsOn [\#465](https://github.com/cfndsl/cfndsl/pull/465) ([lwoggardner](https://github.com/lwoggardner))
|
41
|
+
- test workaround for \#460 [\#463](https://github.com/cfndsl/cfndsl/pull/463) ([lwoggardner](https://github.com/lwoggardner))
|
42
|
+
- Bring up to date [\#462](https://github.com/cfndsl/cfndsl/pull/462) ([lwoggardner](https://github.com/lwoggardner))
|
43
|
+
- Update cfndsl raison d'être [\#461](https://github.com/cfndsl/cfndsl/pull/461) ([lwoggardner](https://github.com/lwoggardner))
|
44
|
+
- Fix \#455 [\#456](https://github.com/cfndsl/cfndsl/pull/456) ([lwoggardner](https://github.com/lwoggardner))
|
45
|
+
|
46
|
+
## [v1.1.1](https://github.com/cfndsl/cfndsl/tree/v1.1.1) (2020-06-02)
|
47
|
+
|
48
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.1.0...v1.1.1)
|
49
|
+
|
50
|
+
**Merged pull requests:**
|
51
|
+
|
52
|
+
- allow hooks [\#458](https://github.com/cfndsl/cfndsl/pull/458) ([gergnz](https://github.com/gergnz))
|
53
|
+
- add UpdateReplacePolicy [\#457](https://github.com/cfndsl/cfndsl/pull/457) ([gergnz](https://github.com/gergnz))
|
54
|
+
|
55
|
+
## [v1.1.0](https://github.com/cfndsl/cfndsl/tree/v1.1.0) (2020-05-31)
|
56
|
+
|
57
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.6...v1.1.0)
|
58
|
+
|
59
|
+
**Closed issues:**
|
60
|
+
|
61
|
+
- Shorthand method of accessing resource attributes via FnSub fails reference checks [\#455](https://github.com/cfndsl/cfndsl/issues/455)
|
62
|
+
|
63
|
+
## [v1.0.6](https://github.com/cfndsl/cfndsl/tree/v1.0.6) (2020-04-23)
|
64
|
+
|
65
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.5...v1.0.6)
|
66
|
+
|
67
|
+
**Fixed bugs:**
|
68
|
+
|
69
|
+
- unknown type AWSResourceGroupsGroupJson [\#453](https://github.com/cfndsl/cfndsl/issues/453)
|
70
|
+
|
71
|
+
**Merged pull requests:**
|
72
|
+
|
73
|
+
- Bring up to date [\#454](https://github.com/cfndsl/cfndsl/pull/454) ([lwoggardner](https://github.com/lwoggardner))
|
74
|
+
|
75
|
+
## [v1.0.5](https://github.com/cfndsl/cfndsl/tree/v1.0.5) (2020-03-20)
|
76
|
+
|
77
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.4...v1.0.5)
|
5
78
|
|
6
79
|
**Merged pull requests:**
|
7
80
|
|
8
81
|
- Update spec to 11.5.0 [\#452](https://github.com/cfndsl/cfndsl/pull/452) ([lwoggardner](https://github.com/lwoggardner))
|
9
82
|
- fix bugs in rake task [\#451](https://github.com/cfndsl/cfndsl/pull/451) ([lwoggardner](https://github.com/lwoggardner))
|
10
83
|
|
84
|
+
## [v1.0.4](https://github.com/cfndsl/cfndsl/tree/v1.0.4) (2020-03-20)
|
85
|
+
|
86
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.3...v1.0.4)
|
87
|
+
|
11
88
|
## [v1.0.3](https://github.com/cfndsl/cfndsl/tree/v1.0.3) (2020-03-12)
|
89
|
+
|
12
90
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.2...v1.0.3)
|
13
91
|
|
14
92
|
**Fixed bugs:**
|
@@ -20,6 +98,7 @@
|
|
20
98
|
- fixes \#449 [\#450](https://github.com/cfndsl/cfndsl/pull/450) ([gergnz](https://github.com/gergnz))
|
21
99
|
|
22
100
|
## [v1.0.2](https://github.com/cfndsl/cfndsl/tree/v1.0.2) (2020-02-22)
|
101
|
+
|
23
102
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.1...v1.0.2)
|
24
103
|
|
25
104
|
**Closed issues:**
|
@@ -33,6 +112,7 @@
|
|
33
112
|
- Added support for AWS::Partition pseudo parameter [\#445](https://github.com/cfndsl/cfndsl/pull/445) ([behrangsa](https://github.com/behrangsa))
|
34
113
|
|
35
114
|
## [v1.0.1](https://github.com/cfndsl/cfndsl/tree/v1.0.1) (2020-01-26)
|
115
|
+
|
36
116
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.0...v1.0.1)
|
37
117
|
|
38
118
|
**Implemented enhancements:**
|
@@ -48,6 +128,7 @@
|
|
48
128
|
- Add the pseudo parameter AWS::URLSuffix [\#443](https://github.com/cfndsl/cfndsl/pull/443) ([rickselby](https://github.com/rickselby))
|
49
129
|
|
50
130
|
## [v1.0.0](https://github.com/cfndsl/cfndsl/tree/v1.0.0) (2020-01-16)
|
131
|
+
|
51
132
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.5...v1.0.0)
|
52
133
|
|
53
134
|
**Implemented enhancements:**
|
@@ -59,7 +140,6 @@
|
|
59
140
|
|
60
141
|
**Fixed bugs:**
|
61
142
|
|
62
|
-
- gitter.im link is broken \\(gives 404 not found\\) [\#432](https://github.com/cfndsl/cfndsl/issues/432)
|
63
143
|
- ArtifactStore and ArtifactStores are not the same thing [\#389](https://github.com/cfndsl/cfndsl/issues/389)
|
64
144
|
|
65
145
|
**Closed issues:**
|
@@ -81,6 +161,7 @@
|
|
81
161
|
- Add a Gitter chat badge to README.md [\#436](https://github.com/cfndsl/cfndsl/pull/436) ([gitter-badger](https://github.com/gitter-badger))
|
82
162
|
|
83
163
|
## [v0.17.5](https://github.com/cfndsl/cfndsl/tree/v0.17.5) (2019-12-27)
|
164
|
+
|
84
165
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.0.pre.1...v0.17.5)
|
85
166
|
|
86
167
|
**Fixed bugs:**
|
@@ -98,18 +179,25 @@
|
|
98
179
|
- add tag types to new WAFv2, as AWS are not explicitly defining them in the spec [\#435](https://github.com/cfndsl/cfndsl/pull/435) ([gergnz](https://github.com/gergnz))
|
99
180
|
|
100
181
|
## [v1.0.0.pre.1](https://github.com/cfndsl/cfndsl/tree/v1.0.0.pre.1) (2019-10-27)
|
182
|
+
|
101
183
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.0.pre.2...v1.0.0.pre.1)
|
102
184
|
|
103
185
|
## [v1.0.0.pre.2](https://github.com/cfndsl/cfndsl/tree/v1.0.0.pre.2) (2019-10-27)
|
186
|
+
|
104
187
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.4...v1.0.0.pre.2)
|
105
188
|
|
106
189
|
**Merged pull requests:**
|
107
190
|
|
108
191
|
- 1.0.0 pre rake and spec [\#427](https://github.com/cfndsl/cfndsl/pull/427) ([lwoggardner](https://github.com/lwoggardner))
|
109
|
-
- 1.0.0.pre merge fix403 [\#426](https://github.com/cfndsl/cfndsl/pull/426) ([lwoggardner](https://github.com/lwoggardner))
|
110
192
|
- 1.0.0.pre merge with master [\#425](https://github.com/cfndsl/cfndsl/pull/425) ([lwoggardner](https://github.com/lwoggardner))
|
193
|
+
- implement json patch for patches and pull in patches from CDK [\#386](https://github.com/cfndsl/cfndsl/pull/386) ([gergnz](https://github.com/gergnz))
|
194
|
+
- merge ruby version fix into 1.0.0.pre branch [\#333](https://github.com/cfndsl/cfndsl/pull/333) ([gergnz](https://github.com/gergnz))
|
195
|
+
- remove 'disable\_binding', merge 0.x changes [\#329](https://github.com/cfndsl/cfndsl/pull/329) ([gergnz](https://github.com/gergnz))
|
196
|
+
- Modernize cfndsl executable [\#319](https://github.com/cfndsl/cfndsl/pull/319) ([kornypoet](https://github.com/kornypoet))
|
197
|
+
- Remove support for OpenStack Heat [\#318](https://github.com/cfndsl/cfndsl/pull/318) ([kornypoet](https://github.com/kornypoet))
|
111
198
|
|
112
199
|
## [v0.17.4](https://github.com/cfndsl/cfndsl/tree/v0.17.4) (2019-10-06)
|
200
|
+
|
113
201
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.3...v0.17.4)
|
114
202
|
|
115
203
|
**Closed issues:**
|
@@ -122,13 +210,16 @@
|
|
122
210
|
- Suggest to not use system wide Ruby [\#421](https://github.com/cfndsl/cfndsl/pull/421) ([elmobp](https://github.com/elmobp))
|
123
211
|
|
124
212
|
## [v0.17.3](https://github.com/cfndsl/cfndsl/tree/v0.17.3) (2019-09-13)
|
213
|
+
|
125
214
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.2...v0.17.3)
|
126
215
|
|
127
216
|
**Merged pull requests:**
|
128
217
|
|
218
|
+
- 1.0.0.pre merge fix403 [\#426](https://github.com/cfndsl/cfndsl/pull/426) ([lwoggardner](https://github.com/lwoggardner))
|
129
219
|
- Fix for \#418. This time with less pre 1.0.... [\#420](https://github.com/cfndsl/cfndsl/pull/420) ([cmaxwellau](https://github.com/cmaxwellau))
|
130
220
|
|
131
221
|
## [v0.17.2](https://github.com/cfndsl/cfndsl/tree/v0.17.2) (2019-09-05)
|
222
|
+
|
132
223
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.1...v0.17.2)
|
133
224
|
|
134
225
|
**Fixed bugs:**
|
@@ -146,6 +237,7 @@
|
|
146
237
|
- Added Rules support for cross-parameter validation [\#417](https://github.com/cfndsl/cfndsl/pull/417) ([cmaxwellau](https://github.com/cmaxwellau))
|
147
238
|
|
148
239
|
## [v0.17.1](https://github.com/cfndsl/cfndsl/tree/v0.17.1) (2019-09-01)
|
240
|
+
|
149
241
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.0...v0.17.1)
|
150
242
|
|
151
243
|
**Fixed bugs:**
|
@@ -161,6 +253,7 @@
|
|
161
253
|
- Patch to support Tags on AWS::IAM::Role and AWS::Serverless::Function, add support for AWS::Serverless::Application [\#413](https://github.com/cfndsl/cfndsl/pull/413) ([cmaxwellau](https://github.com/cmaxwellau))
|
162
254
|
|
163
255
|
## [v0.17.0](https://github.com/cfndsl/cfndsl/tree/v0.17.0) (2019-06-16)
|
256
|
+
|
164
257
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.13...v0.17.0)
|
165
258
|
|
166
259
|
**Closed issues:**
|
@@ -174,6 +267,7 @@
|
|
174
267
|
- Added cfndsl patch for AWSEC2CapacityReservationTag Name Error [\#409](https://github.com/cfndsl/cfndsl/pull/409) ([sktan](https://github.com/sktan))
|
175
268
|
|
176
269
|
## [v0.16.13](https://github.com/cfndsl/cfndsl/tree/v0.16.13) (2019-03-22)
|
270
|
+
|
177
271
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.12...v0.16.13)
|
178
272
|
|
179
273
|
**Closed issues:**
|
@@ -186,6 +280,7 @@
|
|
186
280
|
- add InlineCode to serverless function [\#405](https://github.com/cfndsl/cfndsl/pull/405) ([gergnz](https://github.com/gergnz))
|
187
281
|
|
188
282
|
## [v0.16.12](https://github.com/cfndsl/cfndsl/tree/v0.16.12) (2019-02-24)
|
283
|
+
|
189
284
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.11...v0.16.12)
|
190
285
|
|
191
286
|
**Closed issues:**
|
@@ -200,6 +295,7 @@
|
|
200
295
|
- add instructions at the top of the readme on how to update the spec [\#400](https://github.com/cfndsl/cfndsl/pull/400) ([gergnz](https://github.com/gergnz))
|
201
296
|
|
202
297
|
## [v0.16.11](https://github.com/cfndsl/cfndsl/tree/v0.16.11) (2019-02-22)
|
298
|
+
|
203
299
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.10...v0.16.11)
|
204
300
|
|
205
301
|
**Closed issues:**
|
@@ -208,9 +304,11 @@
|
|
208
304
|
|
209
305
|
**Merged pull requests:**
|
210
306
|
|
307
|
+
- Add VPCEndpoint resource to address \#398 [\#399](https://github.com/cfndsl/cfndsl/pull/399) ([cfarrend](https://github.com/cfarrend))
|
211
308
|
- handle simple resource types [\#397](https://github.com/cfndsl/cfndsl/pull/397) ([gergnz](https://github.com/gergnz))
|
212
309
|
|
213
310
|
## [v0.16.10](https://github.com/cfndsl/cfndsl/tree/v0.16.10) (2019-02-13)
|
311
|
+
|
214
312
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.9...v0.16.10)
|
215
313
|
|
216
314
|
**Implemented enhancements:**
|
@@ -223,11 +321,8 @@
|
|
223
321
|
- support a version for cfndsl -u [\#393](https://github.com/cfndsl/cfndsl/issues/393)
|
224
322
|
- 'require': cannot load such file -- hana \(0.17.pre.5\) [\#387](https://github.com/cfndsl/cfndsl/issues/387)
|
225
323
|
|
226
|
-
**Merged pull requests:**
|
227
|
-
|
228
|
-
- implement json patch for patches and pull in patches from CDK [\#386](https://github.com/cfndsl/cfndsl/pull/386) ([gergnz](https://github.com/gergnz))
|
229
|
-
|
230
324
|
## [v0.16.9](https://github.com/cfndsl/cfndsl/tree/v0.16.9) (2018-12-07)
|
325
|
+
|
231
326
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.8...v0.16.9)
|
232
327
|
|
233
328
|
**Closed issues:**
|
@@ -242,6 +337,7 @@
|
|
242
337
|
- fix \#382, add Map primitive type [\#383](https://github.com/cfndsl/cfndsl/pull/383) ([gergnz](https://github.com/gergnz))
|
243
338
|
|
244
339
|
## [v0.16.8](https://github.com/cfndsl/cfndsl/tree/v0.16.8) (2018-11-21)
|
340
|
+
|
245
341
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.7...v0.16.8)
|
246
342
|
|
247
343
|
**Merged pull requests:**
|
@@ -249,6 +345,7 @@
|
|
249
345
|
- add fix for 2.15.0, There is a pattern here... [\#379](https://github.com/cfndsl/cfndsl/pull/379) ([gergnz](https://github.com/gergnz))
|
250
346
|
|
251
347
|
## [v0.16.7](https://github.com/cfndsl/cfndsl/tree/v0.16.7) (2018-11-11)
|
348
|
+
|
252
349
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.6...v0.16.7)
|
253
350
|
|
254
351
|
**Closed issues:**
|
@@ -261,6 +358,7 @@
|
|
261
358
|
- add missing types fixes \#377 [\#378](https://github.com/cfndsl/cfndsl/pull/378) ([gergnz](https://github.com/gergnz))
|
262
359
|
|
263
360
|
## [v0.16.6](https://github.com/cfndsl/cfndsl/tree/v0.16.6) (2018-05-30)
|
361
|
+
|
264
362
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.5...v0.16.6)
|
265
363
|
|
266
364
|
**Fixed bugs:**
|
@@ -272,9 +370,11 @@
|
|
272
370
|
- Array dupe [\#372](https://github.com/cfndsl/cfndsl/pull/372) ([johnf](https://github.com/johnf))
|
273
371
|
|
274
372
|
## [v0.16.5](https://github.com/cfndsl/cfndsl/tree/v0.16.5) (2018-04-16)
|
373
|
+
|
275
374
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.4...v0.16.5)
|
276
375
|
|
277
376
|
## [v0.16.4](https://github.com/cfndsl/cfndsl/tree/v0.16.4) (2018-04-16)
|
377
|
+
|
278
378
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.3...v0.16.4)
|
279
379
|
|
280
380
|
**Merged pull requests:**
|
@@ -283,6 +383,7 @@
|
|
283
383
|
- update SAM for latest details [\#366](https://github.com/cfndsl/cfndsl/pull/366) ([gergnz](https://github.com/gergnz))
|
284
384
|
|
285
385
|
## [v0.16.3](https://github.com/cfndsl/cfndsl/tree/v0.16.3) (2018-03-19)
|
386
|
+
|
286
387
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.2...v0.16.3)
|
287
388
|
|
288
389
|
**Closed issues:**
|
@@ -296,6 +397,7 @@
|
|
296
397
|
- 0.x changes to 1.0.0.pre [\#361](https://github.com/cfndsl/cfndsl/pull/361) ([gergnz](https://github.com/gergnz))
|
297
398
|
|
298
399
|
## [v0.16.2](https://github.com/cfndsl/cfndsl/tree/v0.16.2) (2017-12-07)
|
400
|
+
|
299
401
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.1...v0.16.2)
|
300
402
|
|
301
403
|
**Closed issues:**
|
@@ -307,14 +409,15 @@
|
|
307
409
|
- add option to print version. Fixes \#358 [\#359](https://github.com/cfndsl/cfndsl/pull/359) ([gergnz](https://github.com/gergnz))
|
308
410
|
|
309
411
|
## [v0.16.1](https://github.com/cfndsl/cfndsl/tree/v0.16.1) (2017-12-02)
|
412
|
+
|
310
413
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.0...v0.16.1)
|
311
414
|
|
312
415
|
**Merged pull requests:**
|
313
416
|
|
314
|
-
- Add VPCEndpoint resource to address \#398 [\#399](https://github.com/cfndsl/cfndsl/pull/399) ([cfarrend](https://github.com/cfarrend))
|
315
417
|
- 352 update contacts repos [\#355](https://github.com/cfndsl/cfndsl/pull/355) ([gergnz](https://github.com/gergnz))
|
316
418
|
|
317
419
|
## [v0.16.0](https://github.com/cfndsl/cfndsl/tree/v0.16.0) (2017-11-15)
|
420
|
+
|
318
421
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.3...v0.16.0)
|
319
422
|
|
320
423
|
**Fixed bugs:**
|
@@ -331,6 +434,7 @@
|
|
331
434
|
- Update the embedded resource specification file to version 1.9.1 [\#346](https://github.com/cfndsl/cfndsl/pull/346) ([bobziuchkovski](https://github.com/bobziuchkovski))
|
332
435
|
|
333
436
|
## [v0.15.3](https://github.com/cfndsl/cfndsl/tree/v0.15.3) (2017-09-05)
|
437
|
+
|
334
438
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.2...v0.15.3)
|
335
439
|
|
336
440
|
**Implemented enhancements:**
|
@@ -344,11 +448,8 @@
|
|
344
448
|
- Support for Lambda backed custom resources with shorthand [\#315](https://github.com/cfndsl/cfndsl/issues/315)
|
345
449
|
- Merging cfnlego, cfn2dsl into cfndsl [\#272](https://github.com/cfndsl/cfndsl/issues/272)
|
346
450
|
|
347
|
-
**Merged pull requests:**
|
348
|
-
|
349
|
-
- Fix parameter parsing when its value contains equal symbol [\#340](https://github.com/cfndsl/cfndsl/pull/340) ([ans0600](https://github.com/ans0600))
|
350
|
-
|
351
451
|
## [v0.15.2](https://github.com/cfndsl/cfndsl/tree/v0.15.2) (2017-06-20)
|
452
|
+
|
352
453
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.1...v0.15.2)
|
353
454
|
|
354
455
|
**Implemented enhancements:**
|
@@ -358,9 +459,9 @@
|
|
358
459
|
**Merged pull requests:**
|
359
460
|
|
360
461
|
- add outformat for rake task [\#334](https://github.com/cfndsl/cfndsl/pull/334) ([gergnz](https://github.com/gergnz))
|
361
|
-
- merge ruby version fix into 1.0.0.pre branch [\#333](https://github.com/cfndsl/cfndsl/pull/333) ([gergnz](https://github.com/gergnz))
|
362
462
|
|
363
463
|
## [v0.15.1](https://github.com/cfndsl/cfndsl/tree/v0.15.1) (2017-06-19)
|
464
|
+
|
364
465
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.0...v0.15.1)
|
365
466
|
|
366
467
|
**Fixed bugs:**
|
@@ -369,6 +470,7 @@
|
|
369
470
|
- specify ruby v 2.1 as minimum [\#332](https://github.com/cfndsl/cfndsl/pull/332) ([gergnz](https://github.com/gergnz))
|
370
471
|
|
371
472
|
## [v0.15.0](https://github.com/cfndsl/cfndsl/tree/v0.15.0) (2017-06-18)
|
473
|
+
|
372
474
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.14.0...v0.15.0)
|
373
475
|
|
374
476
|
**Closed issues:**
|
@@ -377,11 +479,12 @@
|
|
377
479
|
|
378
480
|
**Merged pull requests:**
|
379
481
|
|
482
|
+
- Fix parameter parsing when its value contains equal symbol [\#340](https://github.com/cfndsl/cfndsl/pull/340) ([ans0600](https://github.com/ans0600))
|
380
483
|
- Clean up of README [\#330](https://github.com/cfndsl/cfndsl/pull/330) ([elmobp](https://github.com/elmobp))
|
381
|
-
- remove 'disable\_binding', merge 0.x changes [\#329](https://github.com/cfndsl/cfndsl/pull/329) ([gergnz](https://github.com/gergnz))
|
382
484
|
- enable deep merge as the default for yaml [\#328](https://github.com/cfndsl/cfndsl/pull/328) ([gergnz](https://github.com/gergnz))
|
383
485
|
|
384
486
|
## [v0.14.0](https://github.com/cfndsl/cfndsl/tree/v0.14.0) (2017-06-15)
|
487
|
+
|
385
488
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.13.1...v0.14.0)
|
386
489
|
|
387
490
|
**Implemented enhancements:**
|
@@ -392,11 +495,8 @@
|
|
392
495
|
|
393
496
|
- Error reading specification file on 0.13.0 [\#322](https://github.com/cfndsl/cfndsl/issues/322)
|
394
497
|
|
395
|
-
**Merged pull requests:**
|
396
|
-
|
397
|
-
- Modernize cfndsl executable [\#319](https://github.com/cfndsl/cfndsl/pull/319) ([kornypoet](https://github.com/kornypoet))
|
398
|
-
|
399
498
|
## [v0.13.1](https://github.com/cfndsl/cfndsl/tree/v0.13.1) (2017-05-17)
|
499
|
+
|
400
500
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.13.0...v0.13.1)
|
401
501
|
|
402
502
|
**Implemented enhancements:**
|
@@ -413,6 +513,7 @@
|
|
413
513
|
- Fallback to included resource spec if not overridden [\#323](https://github.com/cfndsl/cfndsl/pull/323) ([kornypoet](https://github.com/kornypoet))
|
414
514
|
|
415
515
|
## [v0.13.0](https://github.com/cfndsl/cfndsl/tree/v0.13.0) (2017-05-17)
|
516
|
+
|
416
517
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.11...v0.13.0)
|
417
518
|
|
418
519
|
**Closed issues:**
|
@@ -421,11 +522,12 @@
|
|
421
522
|
|
422
523
|
**Merged pull requests:**
|
423
524
|
|
424
|
-
- Remove support for OpenStack Heat [\#318](https://github.com/cfndsl/cfndsl/pull/318) ([kornypoet](https://github.com/kornypoet))
|
425
525
|
- Remove release\_url config from github changelog generator [\#316](https://github.com/cfndsl/cfndsl/pull/316) ([mikechau](https://github.com/mikechau))
|
526
|
+
- IAM Managed Policy: Add support for ManagedPolicyName property [\#310](https://github.com/cfndsl/cfndsl/pull/310) ([mikechau](https://github.com/mikechau))
|
426
527
|
- WIP: Aws schema [\#278](https://github.com/cfndsl/cfndsl/pull/278) ([kornypoet](https://github.com/kornypoet))
|
427
528
|
|
428
529
|
## [v0.12.11](https://github.com/cfndsl/cfndsl/tree/v0.12.11) (2017-05-10)
|
530
|
+
|
429
531
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.10...v0.12.11)
|
430
532
|
|
431
533
|
**Merged pull requests:**
|
@@ -433,6 +535,7 @@
|
|
433
535
|
- Add generated changelog [\#314](https://github.com/cfndsl/cfndsl/pull/314) ([mikechau](https://github.com/mikechau))
|
434
536
|
|
435
537
|
## [v0.12.10](https://github.com/cfndsl/cfndsl/tree/v0.12.10) (2017-05-10)
|
538
|
+
|
436
539
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.9...v0.12.10)
|
437
540
|
|
438
541
|
**Merged pull requests:**
|
@@ -440,6 +543,7 @@
|
|
440
543
|
- EC2::SecurityGroup: Add GroupName property [\#313](https://github.com/cfndsl/cfndsl/pull/313) ([mikechau](https://github.com/mikechau))
|
441
544
|
|
442
545
|
## [v0.12.9](https://github.com/cfndsl/cfndsl/tree/v0.12.9) (2017-05-08)
|
546
|
+
|
443
547
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.8...v0.12.9)
|
444
548
|
|
445
549
|
**Merged pull requests:**
|
@@ -447,14 +551,15 @@
|
|
447
551
|
- Update AWS::CloudWatch::Alarm with 2 new properties [\#312](https://github.com/cfndsl/cfndsl/pull/312) ([AnominousSign](https://github.com/AnominousSign))
|
448
552
|
|
449
553
|
## [v0.12.8](https://github.com/cfndsl/cfndsl/tree/v0.12.8) (2017-05-03)
|
554
|
+
|
450
555
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.7...v0.12.8)
|
451
556
|
|
452
557
|
**Merged pull requests:**
|
453
558
|
|
454
559
|
- CloudFormation::Stack: Add Tags property [\#311](https://github.com/cfndsl/cfndsl/pull/311) ([mikechau](https://github.com/mikechau))
|
455
|
-
- IAM Managed Policy: Add support for ManagedPolicyName property [\#310](https://github.com/cfndsl/cfndsl/pull/310) ([mikechau](https://github.com/mikechau))
|
456
560
|
|
457
561
|
## [v0.12.7](https://github.com/cfndsl/cfndsl/tree/v0.12.7) (2017-04-23)
|
562
|
+
|
458
563
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.6...v0.12.7)
|
459
564
|
|
460
565
|
**Merged pull requests:**
|
@@ -462,6 +567,7 @@
|
|
462
567
|
- Add ssm param [\#307](https://github.com/cfndsl/cfndsl/pull/307) ([elmobp](https://github.com/elmobp))
|
463
568
|
|
464
569
|
## [v0.12.6](https://github.com/cfndsl/cfndsl/tree/v0.12.6) (2017-04-21)
|
570
|
+
|
465
571
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.5...v0.12.6)
|
466
572
|
|
467
573
|
**Fixed bugs:**
|
@@ -473,6 +579,7 @@
|
|
473
579
|
- add a globals class, and exclude reserverd words [\#309](https://github.com/cfndsl/cfndsl/pull/309) ([gergnz](https://github.com/gergnz))
|
474
580
|
|
475
581
|
## [v0.12.5](https://github.com/cfndsl/cfndsl/tree/v0.12.5) (2017-04-10)
|
582
|
+
|
476
583
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.4...v0.12.5)
|
477
584
|
|
478
585
|
**Merged pull requests:**
|
@@ -481,6 +588,7 @@
|
|
481
588
|
- Add Amazon EFS type \(Elastic File System\) [\#305](https://github.com/cfndsl/cfndsl/pull/305) ([AnominousSign](https://github.com/AnominousSign))
|
482
589
|
|
483
590
|
## [v0.12.4](https://github.com/cfndsl/cfndsl/tree/v0.12.4) (2017-03-29)
|
591
|
+
|
484
592
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.3...v0.12.4)
|
485
593
|
|
486
594
|
**Fixed bugs:**
|
@@ -497,6 +605,7 @@
|
|
497
605
|
- Add SSM Support [\#301](https://github.com/cfndsl/cfndsl/pull/301) ([elmobp](https://github.com/elmobp))
|
498
606
|
|
499
607
|
## [v0.12.3](https://github.com/cfndsl/cfndsl/tree/v0.12.3) (2017-03-12)
|
608
|
+
|
500
609
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.2...v0.12.3)
|
501
610
|
|
502
611
|
**Closed issues:**
|
@@ -508,6 +617,7 @@
|
|
508
617
|
- Fix RedrivePolicy attributes [\#297](https://github.com/cfndsl/cfndsl/pull/297) ([devops-dude](https://github.com/devops-dude))
|
509
618
|
|
510
619
|
## [v0.12.2](https://github.com/cfndsl/cfndsl/tree/v0.12.2) (2017-03-04)
|
620
|
+
|
511
621
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.1...v0.12.2)
|
512
622
|
|
513
623
|
**Closed issues:**
|
@@ -519,6 +629,7 @@
|
|
519
629
|
- add UserName property to IAM::User [\#293](https://github.com/cfndsl/cfndsl/pull/293) ([gergnz](https://github.com/gergnz))
|
520
630
|
|
521
631
|
## [v0.12.1](https://github.com/cfndsl/cfndsl/tree/v0.12.1) (2017-02-21)
|
632
|
+
|
522
633
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.0...v0.12.1)
|
523
634
|
|
524
635
|
**Closed issues:**
|
@@ -530,6 +641,7 @@
|
|
530
641
|
- updating IAM::Role and S3::Bucket types [\#292](https://github.com/cfndsl/cfndsl/pull/292) ([kornypoet](https://github.com/kornypoet))
|
531
642
|
|
532
643
|
## [v0.12.0](https://github.com/cfndsl/cfndsl/tree/v0.12.0) (2017-01-29)
|
644
|
+
|
533
645
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.12...v0.12.0)
|
534
646
|
|
535
647
|
**Merged pull requests:**
|
@@ -537,6 +649,7 @@
|
|
537
649
|
- Added Serverless::Function & API Transforms [\#290](https://github.com/cfndsl/cfndsl/pull/290) ([jonjitsu](https://github.com/jonjitsu))
|
538
650
|
|
539
651
|
## [v0.11.12](https://github.com/cfndsl/cfndsl/tree/v0.11.12) (2017-01-20)
|
652
|
+
|
540
653
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.11...v0.11.12)
|
541
654
|
|
542
655
|
**Implemented enhancements:**
|
@@ -558,6 +671,7 @@
|
|
558
671
|
- Added support for Fn::Split intrinsic function. [\#289](https://github.com/cfndsl/cfndsl/pull/289) ([pablovarela](https://github.com/pablovarela))
|
559
672
|
|
560
673
|
## [v0.11.11](https://github.com/cfndsl/cfndsl/tree/v0.11.11) (2016-12-04)
|
674
|
+
|
561
675
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.10...v0.11.11)
|
562
676
|
|
563
677
|
**Closed issues:**
|
@@ -569,6 +683,7 @@
|
|
569
683
|
- Add Environment as a property of Lambda::Function [\#280](https://github.com/cfndsl/cfndsl/pull/280) ([holmesjr](https://github.com/holmesjr))
|
570
684
|
|
571
685
|
## [v0.11.10](https://github.com/cfndsl/cfndsl/tree/v0.11.10) (2016-11-23)
|
686
|
+
|
572
687
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.9...v0.11.10)
|
573
688
|
|
574
689
|
**Closed issues:**
|
@@ -580,6 +695,7 @@
|
|
580
695
|
- Add Autoscaling NotificationConfiguration [\#275](https://github.com/cfndsl/cfndsl/pull/275) ([dbergamin](https://github.com/dbergamin))
|
581
696
|
|
582
697
|
## [v0.11.9](https://github.com/cfndsl/cfndsl/tree/v0.11.9) (2016-11-18)
|
698
|
+
|
583
699
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.8...v0.11.9)
|
584
700
|
|
585
701
|
**Closed issues:**
|
@@ -591,6 +707,7 @@
|
|
591
707
|
- Application Autoscaling Types [\#271](https://github.com/cfndsl/cfndsl/pull/271) ([kornypoet](https://github.com/kornypoet))
|
592
708
|
|
593
709
|
## [v0.11.8](https://github.com/cfndsl/cfndsl/tree/v0.11.8) (2016-11-13)
|
710
|
+
|
594
711
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.6...v0.11.8)
|
595
712
|
|
596
713
|
**Closed issues:**
|
@@ -604,6 +721,7 @@
|
|
604
721
|
- Add support for AWS::KMS::Alias [\#265](https://github.com/cfndsl/cfndsl/pull/265) ([mikechau](https://github.com/mikechau))
|
605
722
|
|
606
723
|
## [v0.11.6](https://github.com/cfndsl/cfndsl/tree/v0.11.6) (2016-10-23)
|
724
|
+
|
607
725
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.5...v0.11.6)
|
608
726
|
|
609
727
|
**Implemented enhancements:**
|
@@ -621,6 +739,7 @@
|
|
621
739
|
- Feature/add ecs task definition properties [\#261](https://github.com/cfndsl/cfndsl/pull/261) ([mikechau](https://github.com/mikechau))
|
622
740
|
|
623
741
|
## [v0.11.5](https://github.com/cfndsl/cfndsl/tree/v0.11.5) (2016-10-05)
|
742
|
+
|
624
743
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.4...v0.11.5)
|
625
744
|
|
626
745
|
**Implemented enhancements:**
|
@@ -632,6 +751,7 @@
|
|
632
751
|
- create fnsub branch, resolves \#244 and \#241 [\#258](https://github.com/cfndsl/cfndsl/pull/258) ([gergnz](https://github.com/gergnz))
|
633
752
|
|
634
753
|
## [v0.11.4](https://github.com/cfndsl/cfndsl/tree/v0.11.4) (2016-10-05)
|
754
|
+
|
635
755
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.3...v0.11.4)
|
636
756
|
|
637
757
|
**Implemented enhancements:**
|
@@ -653,6 +773,7 @@
|
|
653
773
|
- This supports yaml as an output type and leaves json as the default [\#243](https://github.com/cfndsl/cfndsl/pull/243) ([gergnz](https://github.com/gergnz))
|
654
774
|
|
655
775
|
## [v0.11.3](https://github.com/cfndsl/cfndsl/tree/v0.11.3) (2016-09-20)
|
776
|
+
|
656
777
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.2...v0.11.3)
|
657
778
|
|
658
779
|
**Merged pull requests:**
|
@@ -663,6 +784,7 @@
|
|
663
784
|
- Update conditions.rb [\#238](https://github.com/cfndsl/cfndsl/pull/238) ([herebebogans](https://github.com/herebebogans))
|
664
785
|
|
665
786
|
## [v0.11.2](https://github.com/cfndsl/cfndsl/tree/v0.11.2) (2016-09-19)
|
787
|
+
|
666
788
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.1...v0.11.2)
|
667
789
|
|
668
790
|
**Implemented enhancements:**
|
@@ -682,6 +804,7 @@
|
|
682
804
|
- Add AccessLoggingPolicy to ELB [\#233](https://github.com/cfndsl/cfndsl/pull/233) ([gergnz](https://github.com/gergnz))
|
683
805
|
|
684
806
|
## [v0.11.1](https://github.com/cfndsl/cfndsl/tree/v0.11.1) (2016-09-05)
|
807
|
+
|
685
808
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.0...v0.11.1)
|
686
809
|
|
687
810
|
**Closed issues:**
|
@@ -695,6 +818,7 @@
|
|
695
818
|
- Simplecov [\#224](https://github.com/cfndsl/cfndsl/pull/224) ([kornypoet](https://github.com/kornypoet))
|
696
819
|
|
697
820
|
## [v0.11.0](https://github.com/cfndsl/cfndsl/tree/v0.11.0) (2016-08-25)
|
821
|
+
|
698
822
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.10.2...v0.11.0)
|
699
823
|
|
700
824
|
**Implemented enhancements:**
|
@@ -703,6 +827,7 @@
|
|
703
827
|
- Top Level Metadata [\#209](https://github.com/cfndsl/cfndsl/pull/209) ([kornypoet](https://github.com/kornypoet))
|
704
828
|
|
705
829
|
## [v0.10.2](https://github.com/cfndsl/cfndsl/tree/v0.10.2) (2016-08-25)
|
830
|
+
|
706
831
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.10.1...v0.10.2)
|
707
832
|
|
708
833
|
**Merged pull requests:**
|
@@ -710,6 +835,7 @@
|
|
710
835
|
- Add SsmAssociations to EC2 Instance resource. [\#223](https://github.com/cfndsl/cfndsl/pull/223) ([pvdvreede](https://github.com/pvdvreede))
|
711
836
|
|
712
837
|
## [v0.10.1](https://github.com/cfndsl/cfndsl/tree/v0.10.1) (2016-08-24)
|
838
|
+
|
713
839
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.10.0...v0.10.1)
|
714
840
|
|
715
841
|
**Merged pull requests:**
|
@@ -717,6 +843,7 @@
|
|
717
843
|
- adding elasticache tags [\#216](https://github.com/cfndsl/cfndsl/pull/216) ([jstenhouse](https://github.com/jstenhouse))
|
718
844
|
|
719
845
|
## [v0.10.0](https://github.com/cfndsl/cfndsl/tree/v0.10.0) (2016-08-22)
|
846
|
+
|
720
847
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.5...v0.10.0)
|
721
848
|
|
722
849
|
**Merged pull requests:**
|
@@ -728,6 +855,7 @@
|
|
728
855
|
- Add EC2::FlowLog [\#215](https://github.com/cfndsl/cfndsl/pull/215) ([webdevwilson](https://github.com/webdevwilson))
|
729
856
|
|
730
857
|
## [v0.9.5](https://github.com/cfndsl/cfndsl/tree/v0.9.5) (2016-07-26)
|
858
|
+
|
731
859
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.4...v0.9.5)
|
732
860
|
|
733
861
|
**Implemented enhancements:**
|
@@ -735,6 +863,7 @@
|
|
735
863
|
- Plurals spec [\#212](https://github.com/cfndsl/cfndsl/pull/212) ([kornypoet](https://github.com/kornypoet))
|
736
864
|
|
737
865
|
## [v0.9.4](https://github.com/cfndsl/cfndsl/tree/v0.9.4) (2016-07-26)
|
866
|
+
|
738
867
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.3...v0.9.4)
|
739
868
|
|
740
869
|
**Implemented enhancements:**
|
@@ -742,6 +871,7 @@
|
|
742
871
|
- Names spec [\#211](https://github.com/cfndsl/cfndsl/pull/211) ([kornypoet](https://github.com/kornypoet))
|
743
872
|
|
744
873
|
## [v0.9.3](https://github.com/cfndsl/cfndsl/tree/v0.9.3) (2016-07-26)
|
874
|
+
|
745
875
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.2...v0.9.3)
|
746
876
|
|
747
877
|
**Merged pull requests:**
|
@@ -749,6 +879,7 @@
|
|
749
879
|
- AWS::WAF Type [\#208](https://github.com/cfndsl/cfndsl/pull/208) ([kornypoet](https://github.com/kornypoet))
|
750
880
|
|
751
881
|
## [v0.9.2](https://github.com/cfndsl/cfndsl/tree/v0.9.2) (2016-07-06)
|
882
|
+
|
752
883
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.1...v0.9.2)
|
753
884
|
|
754
885
|
**Fixed bugs:**
|
@@ -756,6 +887,7 @@
|
|
756
887
|
- Cfndsl206 apigateway resource [\#207](https://github.com/cfndsl/cfndsl/pull/207) ([gergnz](https://github.com/gergnz))
|
757
888
|
|
758
889
|
## [v0.9.1](https://github.com/cfndsl/cfndsl/tree/v0.9.1) (2016-06-22)
|
890
|
+
|
759
891
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.0...v0.9.1)
|
760
892
|
|
761
893
|
**Implemented enhancements:**
|
@@ -769,6 +901,7 @@
|
|
769
901
|
- Api gateway [\#201](https://github.com/cfndsl/cfndsl/pull/201) ([webdevwilson](https://github.com/webdevwilson))
|
770
902
|
|
771
903
|
## [v0.9.0](https://github.com/cfndsl/cfndsl/tree/v0.9.0) (2016-06-22)
|
904
|
+
|
772
905
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.9...v0.9.0)
|
773
906
|
|
774
907
|
**Implemented enhancements:**
|
@@ -776,6 +909,7 @@
|
|
776
909
|
- Exparams class methods [\#187](https://github.com/cfndsl/cfndsl/pull/187) ([kornypoet](https://github.com/kornypoet))
|
777
910
|
|
778
911
|
## [v0.8.9](https://github.com/cfndsl/cfndsl/tree/v0.8.9) (2016-06-02)
|
912
|
+
|
779
913
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.8...v0.8.9)
|
780
914
|
|
781
915
|
**Merged pull requests:**
|
@@ -783,6 +917,7 @@
|
|
783
917
|
- Add Tags attribute to ELB [\#200](https://github.com/cfndsl/cfndsl/pull/200) ([webdevwilson](https://github.com/webdevwilson))
|
784
918
|
|
785
919
|
## [v0.8.8](https://github.com/cfndsl/cfndsl/tree/v0.8.8) (2016-06-02)
|
920
|
+
|
786
921
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.7...v0.8.8)
|
787
922
|
|
788
923
|
**Merged pull requests:**
|
@@ -790,6 +925,7 @@
|
|
790
925
|
- Add AWS RDS Option Group to types. [\#198](https://github.com/cfndsl/cfndsl/pull/198) ([pvdvreede](https://github.com/pvdvreede))
|
791
926
|
|
792
927
|
## [v0.8.7](https://github.com/cfndsl/cfndsl/tree/v0.8.7) (2016-06-02)
|
928
|
+
|
793
929
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.6...v0.8.7)
|
794
930
|
|
795
931
|
**Implemented enhancements:**
|
@@ -798,6 +934,7 @@
|
|
798
934
|
- Update types.yaml - fixed tenancey typo [\#194](https://github.com/cfndsl/cfndsl/pull/194) ([johnhyland](https://github.com/johnhyland))
|
799
935
|
|
800
936
|
## [v0.8.6](https://github.com/cfndsl/cfndsl/tree/v0.8.6) (2016-05-05)
|
937
|
+
|
801
938
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.5...v0.8.6)
|
802
939
|
|
803
940
|
**Implemented enhancements:**
|
@@ -809,6 +946,7 @@
|
|
809
946
|
- Adding MicrosoftAD to AWS types. [\#193](https://github.com/cfndsl/cfndsl/pull/193) ([pvdvreede](https://github.com/pvdvreede))
|
810
947
|
|
811
948
|
## [v0.8.5](https://github.com/cfndsl/cfndsl/tree/v0.8.5) (2016-05-04)
|
949
|
+
|
812
950
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.4...v0.8.5)
|
813
951
|
|
814
952
|
**Implemented enhancements:**
|
@@ -821,6 +959,7 @@
|
|
821
959
|
- Add cloudwatch events type [\#189](https://github.com/cfndsl/cfndsl/pull/189) ([gergnz](https://github.com/gergnz))
|
822
960
|
|
823
961
|
## [v0.8.4](https://github.com/cfndsl/cfndsl/tree/v0.8.4) (2016-05-03)
|
962
|
+
|
824
963
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.3...v0.8.4)
|
825
964
|
|
826
965
|
**Merged pull requests:**
|
@@ -828,6 +967,7 @@
|
|
828
967
|
- remove duplicate nat g/w definition [\#190](https://github.com/cfndsl/cfndsl/pull/190) ([gergnz](https://github.com/gergnz))
|
829
968
|
|
830
969
|
## [v0.8.3](https://github.com/cfndsl/cfndsl/tree/v0.8.3) (2016-04-27)
|
970
|
+
|
831
971
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.2...v0.8.3)
|
832
972
|
|
833
973
|
**Fixed bugs:**
|
@@ -835,6 +975,7 @@
|
|
835
975
|
- Add tag arguments [\#188](https://github.com/cfndsl/cfndsl/pull/188) ([kornypoet](https://github.com/kornypoet))
|
836
976
|
|
837
977
|
## [v0.8.2](https://github.com/cfndsl/cfndsl/tree/v0.8.2) (2016-04-27)
|
978
|
+
|
838
979
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.1...v0.8.2)
|
839
980
|
|
840
981
|
**Merged pull requests:**
|
@@ -842,50 +983,43 @@
|
|
842
983
|
- Updated OpsWorks\_Stack to include ChefConfiguration [\#186](https://github.com/cfndsl/cfndsl/pull/186) ([webdevwilson](https://github.com/webdevwilson))
|
843
984
|
|
844
985
|
## [v0.8.1](https://github.com/cfndsl/cfndsl/tree/v0.8.1) (2016-04-27)
|
986
|
+
|
845
987
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.0...v0.8.1)
|
846
988
|
|
989
|
+
**Implemented enhancements:**
|
990
|
+
|
991
|
+
- Use as\_json instead of to\_json [\#157](https://github.com/cfndsl/cfndsl/pull/157) ([johnf](https://github.com/johnf))
|
992
|
+
|
847
993
|
**Merged pull requests:**
|
848
994
|
|
849
995
|
- Add in Route53 Health Check Tags as a type [\#185](https://github.com/cfndsl/cfndsl/pull/185) ([gergnz](https://github.com/gergnz))
|
850
996
|
|
851
997
|
## [v0.8.0](https://github.com/cfndsl/cfndsl/tree/v0.8.0) (2016-04-27)
|
852
|
-
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.7.0...v0.8.0)
|
853
|
-
|
854
|
-
**Implemented enhancements:**
|
855
|
-
|
856
|
-
- Use as\_json instead of to\_json [\#157](https://github.com/cfndsl/cfndsl/pull/157) ([johnf](https://github.com/johnf))
|
857
|
-
|
858
|
-
**Fixed bugs:**
|
859
998
|
|
860
|
-
|
999
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.7.0...v0.8.0)
|
861
1000
|
|
862
1001
|
## [v0.7.0](https://github.com/cfndsl/cfndsl/tree/v0.7.0) (2016-04-27)
|
1002
|
+
|
863
1003
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.6.2...v0.7.0)
|
864
1004
|
|
865
1005
|
**Implemented enhancements:**
|
866
1006
|
|
867
1007
|
- Fix the issue with plural types [\#153](https://github.com/cfndsl/cfndsl/pull/153) ([johnf](https://github.com/johnf))
|
868
1008
|
|
869
|
-
**Fixed bugs:**
|
870
|
-
|
871
|
-
- Fix the issue with plural types [\#153](https://github.com/cfndsl/cfndsl/pull/153) ([johnf](https://github.com/johnf))
|
872
|
-
|
873
1009
|
## [v0.6.2](https://github.com/cfndsl/cfndsl/tree/v0.6.2) (2016-04-19)
|
1010
|
+
|
874
1011
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.6.1...v0.6.2)
|
875
1012
|
|
876
1013
|
**Implemented enhancements:**
|
877
1014
|
|
878
1015
|
- Fix for \#181 - deprecation warning [\#182](https://github.com/cfndsl/cfndsl/pull/182) ([cmaxwellau](https://github.com/cmaxwellau))
|
879
1016
|
|
880
|
-
**Fixed bugs:**
|
881
|
-
|
882
|
-
- Fix for \\#181 - deprecation warning [\#182](https://github.com/cfndsl/cfndsl/pull/182) ([cmaxwellau](https://github.com/cmaxwellau))
|
883
|
-
|
884
1017
|
**Closed issues:**
|
885
1018
|
|
886
1019
|
- Deprecation warning with rake 11.1.2 [\#181](https://github.com/cfndsl/cfndsl/issues/181)
|
887
1020
|
|
888
1021
|
## [v0.6.1](https://github.com/cfndsl/cfndsl/tree/v0.6.1) (2016-04-18)
|
1022
|
+
|
889
1023
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.6.0...v0.6.1)
|
890
1024
|
|
891
1025
|
**Implemented enhancements:**
|
@@ -897,6 +1031,7 @@
|
|
897
1031
|
- Update types.yaml [\#180](https://github.com/cfndsl/cfndsl/pull/180) ([herebebogans](https://github.com/herebebogans))
|
898
1032
|
|
899
1033
|
## [v0.6.0](https://github.com/cfndsl/cfndsl/tree/v0.6.0) (2016-04-18)
|
1034
|
+
|
900
1035
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.5.2...v0.6.0)
|
901
1036
|
|
902
1037
|
**Implemented enhancements:**
|
@@ -904,14 +1039,15 @@
|
|
904
1039
|
- External params [\#179](https://github.com/cfndsl/cfndsl/pull/179) ([kornypoet](https://github.com/kornypoet))
|
905
1040
|
|
906
1041
|
## [v0.5.2](https://github.com/cfndsl/cfndsl/tree/v0.5.2) (2016-04-15)
|
1042
|
+
|
907
1043
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.5.1...v0.5.2)
|
908
1044
|
|
909
1045
|
**Fixed bugs:**
|
910
1046
|
|
911
1047
|
- 5.0 release breaks addTag [\#175](https://github.com/cfndsl/cfndsl/issues/175)
|
912
|
-
- Remove erroneous logstream output [\#178](https://github.com/cfndsl/cfndsl/pull/178) ([stevenjack](https://github.com/stevenjack))
|
913
1048
|
|
914
1049
|
## [v0.5.1](https://github.com/cfndsl/cfndsl/tree/v0.5.1) (2016-04-15)
|
1050
|
+
|
915
1051
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.5.0...v0.5.1)
|
916
1052
|
|
917
1053
|
**Implemented enhancements:**
|
@@ -927,6 +1063,7 @@
|
|
927
1063
|
- Pretty printing no longer working with Rake builds [\#176](https://github.com/cfndsl/cfndsl/issues/176)
|
928
1064
|
|
929
1065
|
## [v0.5.0](https://github.com/cfndsl/cfndsl/tree/v0.5.0) (2016-04-13)
|
1066
|
+
|
930
1067
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.4...v0.5.0)
|
931
1068
|
|
932
1069
|
**Implemented enhancements:**
|
@@ -935,9 +1072,9 @@
|
|
935
1072
|
- cfndsl\_examples [\#83](https://github.com/cfndsl/cfndsl/issues/83)
|
936
1073
|
- The Juno release of Openstack Heat has a whole new floatilla of resources [\#67](https://github.com/cfndsl/cfndsl/issues/67)
|
937
1074
|
- CLI Tests [\#169](https://github.com/cfndsl/cfndsl/pull/169) ([kornypoet](https://github.com/kornypoet))
|
938
|
-
- Rubocop fixes [\#161](https://github.com/cfndsl/cfndsl/pull/161) ([stevenjack](https://github.com/stevenjack))
|
939
1075
|
|
940
1076
|
## [v0.4.4](https://github.com/cfndsl/cfndsl/tree/v0.4.4) (2016-04-01)
|
1077
|
+
|
941
1078
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.2...v0.4.4)
|
942
1079
|
|
943
1080
|
**Closed issues:**
|
@@ -945,9 +1082,11 @@
|
|
945
1082
|
- Updating aws\_types.yaml? [\#165](https://github.com/cfndsl/cfndsl/issues/165)
|
946
1083
|
|
947
1084
|
## [v0.4.2](https://github.com/cfndsl/cfndsl/tree/v0.4.2) (2016-03-03)
|
1085
|
+
|
948
1086
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.3...v0.4.2)
|
949
1087
|
|
950
1088
|
## [v0.4.3](https://github.com/cfndsl/cfndsl/tree/v0.4.3) (2016-03-01)
|
1089
|
+
|
951
1090
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.1...v0.4.3)
|
952
1091
|
|
953
1092
|
**Closed issues:**
|
@@ -955,12 +1094,15 @@
|
|
955
1094
|
- Support the Elasticsearch Service [\#155](https://github.com/cfndsl/cfndsl/issues/155)
|
956
1095
|
|
957
1096
|
## [v0.4.1](https://github.com/cfndsl/cfndsl/tree/v0.4.1) (2016-02-18)
|
1097
|
+
|
958
1098
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.0...v0.4.1)
|
959
1099
|
|
960
1100
|
## [v0.4.0](https://github.com/cfndsl/cfndsl/tree/v0.4.0) (2016-02-11)
|
1101
|
+
|
961
1102
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.6...v0.4.0)
|
962
1103
|
|
963
1104
|
## [v0.3.6](https://github.com/cfndsl/cfndsl/tree/v0.3.6) (2016-02-09)
|
1105
|
+
|
964
1106
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.5...v0.3.6)
|
965
1107
|
|
966
1108
|
**Implemented enhancements:**
|
@@ -968,9 +1110,11 @@
|
|
968
1110
|
- Pretty-formatted multi-line output JSON [\#149](https://github.com/cfndsl/cfndsl/issues/149)
|
969
1111
|
|
970
1112
|
## [v0.3.5](https://github.com/cfndsl/cfndsl/tree/v0.3.5) (2016-02-03)
|
1113
|
+
|
971
1114
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.4...v0.3.5)
|
972
1115
|
|
973
1116
|
## [v0.3.4](https://github.com/cfndsl/cfndsl/tree/v0.3.4) (2016-01-28)
|
1117
|
+
|
974
1118
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.3...v0.3.4)
|
975
1119
|
|
976
1120
|
**Merged pull requests:**
|
@@ -978,6 +1122,7 @@
|
|
978
1122
|
- add AutoScalingConfiguration missing property [\#144](https://github.com/cfndsl/cfndsl/pull/144) ([kornypoet](https://github.com/kornypoet))
|
979
1123
|
|
980
1124
|
## [v0.3.3](https://github.com/cfndsl/cfndsl/tree/v0.3.3) (2015-12-26)
|
1125
|
+
|
981
1126
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.2...v0.3.3)
|
982
1127
|
|
983
1128
|
**Closed issues:**
|
@@ -986,6 +1131,7 @@
|
|
986
1131
|
- Add support for KMS::Key [\#140](https://github.com/cfndsl/cfndsl/issues/140)
|
987
1132
|
|
988
1133
|
## [v0.3.2](https://github.com/cfndsl/cfndsl/tree/v0.3.2) (2015-11-20)
|
1134
|
+
|
989
1135
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.1...v0.3.2)
|
990
1136
|
|
991
1137
|
**Merged pull requests:**
|
@@ -997,24 +1143,31 @@
|
|
997
1143
|
- Enable NotificationConfigurations on S3 Bucket object [\#131](https://github.com/cfndsl/cfndsl/pull/131) ([webdevwilson](https://github.com/webdevwilson))
|
998
1144
|
|
999
1145
|
## [v0.3.1](https://github.com/cfndsl/cfndsl/tree/v0.3.1) (2015-10-29)
|
1146
|
+
|
1000
1147
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.9...v0.3.1)
|
1001
1148
|
|
1002
1149
|
## [v0.2.9](https://github.com/cfndsl/cfndsl/tree/v0.2.9) (2015-10-29)
|
1150
|
+
|
1003
1151
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.8...v0.2.9)
|
1004
1152
|
|
1005
1153
|
## [v0.2.8](https://github.com/cfndsl/cfndsl/tree/v0.2.8) (2015-10-29)
|
1154
|
+
|
1006
1155
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.7...v0.2.8)
|
1007
1156
|
|
1008
1157
|
## [v0.2.7](https://github.com/cfndsl/cfndsl/tree/v0.2.7) (2015-10-14)
|
1158
|
+
|
1009
1159
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.4...v0.2.7)
|
1010
1160
|
|
1011
1161
|
## [v0.2.4](https://github.com/cfndsl/cfndsl/tree/v0.2.4) (2015-09-29)
|
1162
|
+
|
1012
1163
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.0...v0.2.4)
|
1013
1164
|
|
1014
1165
|
## [v0.3.0](https://github.com/cfndsl/cfndsl/tree/v0.3.0) (2015-09-29)
|
1166
|
+
|
1015
1167
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.3...v0.3.0)
|
1016
1168
|
|
1017
1169
|
## [v0.2.3](https://github.com/cfndsl/cfndsl/tree/v0.2.3) (2015-08-26)
|
1170
|
+
|
1018
1171
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.2...v0.2.3)
|
1019
1172
|
|
1020
1173
|
**Closed issues:**
|
@@ -1022,12 +1175,15 @@
|
|
1022
1175
|
- Undefined symbol: EC2MountPoint - possible issue? [\#124](https://github.com/cfndsl/cfndsl/issues/124)
|
1023
1176
|
|
1024
1177
|
## [v0.2.2](https://github.com/cfndsl/cfndsl/tree/v0.2.2) (2015-08-10)
|
1178
|
+
|
1025
1179
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.1...v0.2.2)
|
1026
1180
|
|
1027
1181
|
## [v0.2.1](https://github.com/cfndsl/cfndsl/tree/v0.2.1) (2015-08-10)
|
1182
|
+
|
1028
1183
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.0...v0.2.1)
|
1029
1184
|
|
1030
1185
|
## [v0.2.0](https://github.com/cfndsl/cfndsl/tree/v0.2.0) (2015-08-10)
|
1186
|
+
|
1031
1187
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.20...v0.2.0)
|
1032
1188
|
|
1033
1189
|
**Closed issues:**
|
@@ -1035,6 +1191,7 @@
|
|
1035
1191
|
- Add support for IAM::Group ManagedPolicyArns [\#119](https://github.com/cfndsl/cfndsl/issues/119)
|
1036
1192
|
|
1037
1193
|
## [v0.1.20](https://github.com/cfndsl/cfndsl/tree/v0.1.20) (2015-07-22)
|
1194
|
+
|
1038
1195
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.19...v0.1.20)
|
1039
1196
|
|
1040
1197
|
**Closed issues:**
|
@@ -1043,6 +1200,7 @@
|
|
1043
1200
|
- aws\_types.aws AWS::SQS::Queue missing property QueueName: String [\#108](https://github.com/cfndsl/cfndsl/issues/108)
|
1044
1201
|
|
1045
1202
|
## [v0.1.19](https://github.com/cfndsl/cfndsl/tree/v0.1.19) (2015-07-16)
|
1203
|
+
|
1046
1204
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.18...v0.1.19)
|
1047
1205
|
|
1048
1206
|
**Closed issues:**
|
@@ -1050,12 +1208,15 @@
|
|
1050
1208
|
- SecurityGroupIngress/Egress formatting with additional \[\] [\#109](https://github.com/cfndsl/cfndsl/issues/109)
|
1051
1209
|
|
1052
1210
|
## [v0.1.18](https://github.com/cfndsl/cfndsl/tree/v0.1.18) (2015-06-22)
|
1211
|
+
|
1053
1212
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.17...v0.1.18)
|
1054
1213
|
|
1055
1214
|
## [v0.1.17](https://github.com/cfndsl/cfndsl/tree/v0.1.17) (2015-06-22)
|
1215
|
+
|
1056
1216
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.16...v0.1.17)
|
1057
1217
|
|
1058
1218
|
## [v0.1.16](https://github.com/cfndsl/cfndsl/tree/v0.1.16) (2015-06-15)
|
1219
|
+
|
1059
1220
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.15...v0.1.16)
|
1060
1221
|
|
1061
1222
|
**Fixed bugs:**
|
@@ -1063,6 +1224,7 @@
|
|
1063
1224
|
- PreferredAvailabilityZone Property on ElastiCache\_CacheCluster is incorrect [\#92](https://github.com/cfndsl/cfndsl/issues/92)
|
1064
1225
|
|
1065
1226
|
## [v0.1.15](https://github.com/cfndsl/cfndsl/tree/v0.1.15) (2015-05-10)
|
1227
|
+
|
1066
1228
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.14...v0.1.15)
|
1067
1229
|
|
1068
1230
|
**Closed issues:**
|
@@ -1070,6 +1232,7 @@
|
|
1070
1232
|
- Oddity where do/end block breaks expectations, but {} works fine? [\#86](https://github.com/cfndsl/cfndsl/issues/86)
|
1071
1233
|
|
1072
1234
|
## [v0.1.14](https://github.com/cfndsl/cfndsl/tree/v0.1.14) (2015-04-24)
|
1235
|
+
|
1073
1236
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.11...v0.1.14)
|
1074
1237
|
|
1075
1238
|
**Implemented enhancements:**
|
@@ -1082,6 +1245,7 @@
|
|
1082
1245
|
- Add Route53::HostedZone and Route53::HealthCheck [\#85](https://github.com/cfndsl/cfndsl/pull/85) ([benley](https://github.com/benley))
|
1083
1246
|
|
1084
1247
|
## [v0.1.11](https://github.com/cfndsl/cfndsl/tree/v0.1.11) (2015-02-05)
|
1248
|
+
|
1085
1249
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.10...v0.1.11)
|
1086
1250
|
|
1087
1251
|
**Implemented enhancements:**
|
@@ -1089,9 +1253,11 @@
|
|
1089
1253
|
- "AWS::SNS::Topic" does not appear to be fully defined [\#81](https://github.com/cfndsl/cfndsl/issues/81)
|
1090
1254
|
|
1091
1255
|
## [v0.1.10](https://github.com/cfndsl/cfndsl/tree/v0.1.10) (2015-01-19)
|
1256
|
+
|
1092
1257
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.9...v0.1.10)
|
1093
1258
|
|
1094
1259
|
## [v0.1.9](https://github.com/cfndsl/cfndsl/tree/v0.1.9) (2015-01-13)
|
1260
|
+
|
1095
1261
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.8...v0.1.9)
|
1096
1262
|
|
1097
1263
|
**Closed issues:**
|
@@ -1103,9 +1269,11 @@
|
|
1103
1269
|
- Fixes a typo in cfndsl.rb that was causing an error when in verbose mode... [\#76](https://github.com/cfndsl/cfndsl/pull/76) ([scottabutler](https://github.com/scottabutler))
|
1104
1270
|
|
1105
1271
|
## [v0.1.8](https://github.com/cfndsl/cfndsl/tree/v0.1.8) (2015-01-02)
|
1272
|
+
|
1106
1273
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.7...v0.1.8)
|
1107
1274
|
|
1108
1275
|
## [v0.1.7](https://github.com/cfndsl/cfndsl/tree/v0.1.7) (2014-12-26)
|
1276
|
+
|
1109
1277
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.3...v0.1.7)
|
1110
1278
|
|
1111
1279
|
**Closed issues:**
|
@@ -1130,6 +1298,7 @@
|
|
1130
1298
|
- Add NetworkInterface resource Closes \#54 [\#55](https://github.com/cfndsl/cfndsl/pull/55) ([erikmack](https://github.com/erikmack))
|
1131
1299
|
|
1132
1300
|
## [v0.1.3](https://github.com/cfndsl/cfndsl/tree/v0.1.3) (2014-07-02)
|
1301
|
+
|
1133
1302
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.2...v0.1.3)
|
1134
1303
|
|
1135
1304
|
**Fixed bugs:**
|
@@ -1141,6 +1310,7 @@
|
|
1141
1310
|
- Output to a string instead of STDOUT? [\#23](https://github.com/cfndsl/cfndsl/issues/23)
|
1142
1311
|
|
1143
1312
|
## [v0.1.2](https://github.com/cfndsl/cfndsl/tree/v0.1.2) (2014-05-28)
|
1313
|
+
|
1144
1314
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.1...v0.1.2)
|
1145
1315
|
|
1146
1316
|
**Closed issues:**
|
@@ -1148,6 +1318,7 @@
|
|
1148
1318
|
- Publish Updated Gem? [\#50](https://github.com/cfndsl/cfndsl/issues/50)
|
1149
1319
|
|
1150
1320
|
## [v0.1.1](https://github.com/cfndsl/cfndsl/tree/v0.1.1) (2014-05-14)
|
1321
|
+
|
1151
1322
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.0...v0.1.1)
|
1152
1323
|
|
1153
1324
|
**Closed issues:**
|
@@ -1159,6 +1330,9 @@
|
|
1159
1330
|
- Change license to MIT and update gemfile [\#48](https://github.com/cfndsl/cfndsl/pull/48) ([stevenjack](https://github.com/stevenjack))
|
1160
1331
|
|
1161
1332
|
## [v0.1.0](https://github.com/cfndsl/cfndsl/tree/v0.1.0) (2014-05-13)
|
1333
|
+
|
1334
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/28b75a5024ee1768113950cfcf317f97c691f608...v0.1.0)
|
1335
|
+
|
1162
1336
|
**Implemented enhancements:**
|
1163
1337
|
|
1164
1338
|
- Adds missing Pseudo Parameters [\#40](https://github.com/cfndsl/cfndsl/pull/40) ([stevenjack](https://github.com/stevenjack))
|
@@ -1204,4 +1378,4 @@
|
|
1204
1378
|
|
1205
1379
|
|
1206
1380
|
|
1207
|
-
\* *This
|
1381
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|