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