cfndsl 1.0.3 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +7 -2
- data/CHANGELOG.md +181 -32
- data/Rakefile +2 -2
- data/cfndsl.gemspec +1 -1
- data/lib/cfndsl/aws/patches/500_BadTagsv13.0.0_patch.json +51 -0
- data/lib/cfndsl/aws/resource_specification.json +11493 -3147
- data/lib/cfndsl/cfnlego/cloudformation.rb +1 -1
- data/lib/cfndsl/jsonable.rb +2 -2
- data/lib/cfndsl/orchestration_template.rb +1 -1
- data/lib/cfndsl/rake_task.rb +3 -2
- data/lib/cfndsl/resources.rb +1 -1
- data/lib/cfndsl/version.rb +1 -1
- data/sample/t1-extra.yaml +1 -0
- data/sample/t1.yaml +0 -1
- data/spec/cloud_formation_template_spec.rb +33 -0
- data/spec/generate_spec.rb +1 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c11f50695d1e13909473489585ada3f4f3e82817d1b79819c26cc3301dd74dc2
|
|
4
|
+
data.tar.gz: f944c74fdb59b4a52677a7816a4e65b97ad39ba8046124cbafeda3fe311a7304
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff62869d9f35a74c25298669cfb3c36a1b9512a4b30991d4e374278eb6bbde19292f20c31fd079a6751b6db71728c4501f425b45f37350750382aec5f54b9dbf
|
|
7
|
+
data.tar.gz: a2db5440ca6d3dfce93f8cbc9cfc92bf2c98be149cd63476d6895bcb93e310f0b728a6dc3a90bc342b7915bd0b9a1643a1b6e6027ec4ec5097564f209e94d62c
|
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,7 +1,54 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [1.
|
|
4
|
-
|
|
3
|
+
## [1.1.1](https://github.com/cfndsl/cfndsl/tree/1.1.1) (2020-06-02)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.1.0...1.1.1)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- allow hooks [\#458](https://github.com/cfndsl/cfndsl/pull/458) ([gergnz](https://github.com/gergnz))
|
|
10
|
+
- add UpdateReplacePolicy [\#457](https://github.com/cfndsl/cfndsl/pull/457) ([gergnz](https://github.com/gergnz))
|
|
11
|
+
|
|
12
|
+
## [v1.1.0](https://github.com/cfndsl/cfndsl/tree/v1.1.0) (2020-05-31)
|
|
13
|
+
|
|
14
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.6...v1.1.0)
|
|
15
|
+
|
|
16
|
+
**Closed issues:**
|
|
17
|
+
|
|
18
|
+
- Shorthand method of accessing resource attributes via FnSub fails reference checks [\#455](https://github.com/cfndsl/cfndsl/issues/455)
|
|
19
|
+
|
|
20
|
+
**Merged pull requests:**
|
|
21
|
+
|
|
22
|
+
- Fix \#455 [\#456](https://github.com/cfndsl/cfndsl/pull/456) ([lwoggardner](https://github.com/lwoggardner))
|
|
23
|
+
|
|
24
|
+
## [v1.0.6](https://github.com/cfndsl/cfndsl/tree/v1.0.6) (2020-04-23)
|
|
25
|
+
|
|
26
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.5...v1.0.6)
|
|
27
|
+
|
|
28
|
+
**Fixed bugs:**
|
|
29
|
+
|
|
30
|
+
- unknown type AWSResourceGroupsGroupJson [\#453](https://github.com/cfndsl/cfndsl/issues/453)
|
|
31
|
+
|
|
32
|
+
**Merged pull requests:**
|
|
33
|
+
|
|
34
|
+
- Bring up to date [\#454](https://github.com/cfndsl/cfndsl/pull/454) ([lwoggardner](https://github.com/lwoggardner))
|
|
35
|
+
|
|
36
|
+
## [v1.0.5](https://github.com/cfndsl/cfndsl/tree/v1.0.5) (2020-03-20)
|
|
37
|
+
|
|
38
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.4...v1.0.5)
|
|
39
|
+
|
|
40
|
+
**Merged pull requests:**
|
|
41
|
+
|
|
42
|
+
- Update spec to 11.5.0 [\#452](https://github.com/cfndsl/cfndsl/pull/452) ([lwoggardner](https://github.com/lwoggardner))
|
|
43
|
+
- fix bugs in rake task [\#451](https://github.com/cfndsl/cfndsl/pull/451) ([lwoggardner](https://github.com/lwoggardner))
|
|
44
|
+
|
|
45
|
+
## [v1.0.4](https://github.com/cfndsl/cfndsl/tree/v1.0.4) (2020-03-20)
|
|
46
|
+
|
|
47
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.3...v1.0.4)
|
|
48
|
+
|
|
49
|
+
## [v1.0.3](https://github.com/cfndsl/cfndsl/tree/v1.0.3) (2020-03-12)
|
|
50
|
+
|
|
51
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.2...v1.0.3)
|
|
5
52
|
|
|
6
53
|
**Fixed bugs:**
|
|
7
54
|
|
|
@@ -12,6 +59,7 @@
|
|
|
12
59
|
- fixes \#449 [\#450](https://github.com/cfndsl/cfndsl/pull/450) ([gergnz](https://github.com/gergnz))
|
|
13
60
|
|
|
14
61
|
## [v1.0.2](https://github.com/cfndsl/cfndsl/tree/v1.0.2) (2020-02-22)
|
|
62
|
+
|
|
15
63
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.1...v1.0.2)
|
|
16
64
|
|
|
17
65
|
**Closed issues:**
|
|
@@ -25,6 +73,7 @@
|
|
|
25
73
|
- Added support for AWS::Partition pseudo parameter [\#445](https://github.com/cfndsl/cfndsl/pull/445) ([behrangsa](https://github.com/behrangsa))
|
|
26
74
|
|
|
27
75
|
## [v1.0.1](https://github.com/cfndsl/cfndsl/tree/v1.0.1) (2020-01-26)
|
|
76
|
+
|
|
28
77
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.0...v1.0.1)
|
|
29
78
|
|
|
30
79
|
**Implemented enhancements:**
|
|
@@ -40,6 +89,7 @@
|
|
|
40
89
|
- Add the pseudo parameter AWS::URLSuffix [\#443](https://github.com/cfndsl/cfndsl/pull/443) ([rickselby](https://github.com/rickselby))
|
|
41
90
|
|
|
42
91
|
## [v1.0.0](https://github.com/cfndsl/cfndsl/tree/v1.0.0) (2020-01-16)
|
|
92
|
+
|
|
43
93
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.5...v1.0.0)
|
|
44
94
|
|
|
45
95
|
**Implemented enhancements:**
|
|
@@ -51,7 +101,6 @@
|
|
|
51
101
|
|
|
52
102
|
**Fixed bugs:**
|
|
53
103
|
|
|
54
|
-
- gitter.im link is broken \\(gives 404 not found\\) [\#432](https://github.com/cfndsl/cfndsl/issues/432)
|
|
55
104
|
- ArtifactStore and ArtifactStores are not the same thing [\#389](https://github.com/cfndsl/cfndsl/issues/389)
|
|
56
105
|
|
|
57
106
|
**Closed issues:**
|
|
@@ -73,6 +122,7 @@
|
|
|
73
122
|
- Add a Gitter chat badge to README.md [\#436](https://github.com/cfndsl/cfndsl/pull/436) ([gitter-badger](https://github.com/gitter-badger))
|
|
74
123
|
|
|
75
124
|
## [v0.17.5](https://github.com/cfndsl/cfndsl/tree/v0.17.5) (2019-12-27)
|
|
125
|
+
|
|
76
126
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.0.pre.1...v0.17.5)
|
|
77
127
|
|
|
78
128
|
**Fixed bugs:**
|
|
@@ -90,9 +140,11 @@
|
|
|
90
140
|
- 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))
|
|
91
141
|
|
|
92
142
|
## [v1.0.0.pre.1](https://github.com/cfndsl/cfndsl/tree/v1.0.0.pre.1) (2019-10-27)
|
|
143
|
+
|
|
93
144
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.0.pre.2...v1.0.0.pre.1)
|
|
94
145
|
|
|
95
146
|
## [v1.0.0.pre.2](https://github.com/cfndsl/cfndsl/tree/v1.0.0.pre.2) (2019-10-27)
|
|
147
|
+
|
|
96
148
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.4...v1.0.0.pre.2)
|
|
97
149
|
|
|
98
150
|
**Merged pull requests:**
|
|
@@ -100,8 +152,15 @@
|
|
|
100
152
|
- 1.0.0 pre rake and spec [\#427](https://github.com/cfndsl/cfndsl/pull/427) ([lwoggardner](https://github.com/lwoggardner))
|
|
101
153
|
- 1.0.0.pre merge fix403 [\#426](https://github.com/cfndsl/cfndsl/pull/426) ([lwoggardner](https://github.com/lwoggardner))
|
|
102
154
|
- 1.0.0.pre merge with master [\#425](https://github.com/cfndsl/cfndsl/pull/425) ([lwoggardner](https://github.com/lwoggardner))
|
|
155
|
+
- implement json patch for patches and pull in patches from CDK [\#386](https://github.com/cfndsl/cfndsl/pull/386) ([gergnz](https://github.com/gergnz))
|
|
156
|
+
- 0.x changes to 1.0.0.pre [\#361](https://github.com/cfndsl/cfndsl/pull/361) ([gergnz](https://github.com/gergnz))
|
|
157
|
+
- merge ruby version fix into 1.0.0.pre branch [\#333](https://github.com/cfndsl/cfndsl/pull/333) ([gergnz](https://github.com/gergnz))
|
|
158
|
+
- remove 'disable\_binding', merge 0.x changes [\#329](https://github.com/cfndsl/cfndsl/pull/329) ([gergnz](https://github.com/gergnz))
|
|
159
|
+
- Modernize cfndsl executable [\#319](https://github.com/cfndsl/cfndsl/pull/319) ([kornypoet](https://github.com/kornypoet))
|
|
160
|
+
- Remove support for OpenStack Heat [\#318](https://github.com/cfndsl/cfndsl/pull/318) ([kornypoet](https://github.com/kornypoet))
|
|
103
161
|
|
|
104
162
|
## [v0.17.4](https://github.com/cfndsl/cfndsl/tree/v0.17.4) (2019-10-06)
|
|
163
|
+
|
|
105
164
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.3...v0.17.4)
|
|
106
165
|
|
|
107
166
|
**Closed issues:**
|
|
@@ -114,6 +173,7 @@
|
|
|
114
173
|
- Suggest to not use system wide Ruby [\#421](https://github.com/cfndsl/cfndsl/pull/421) ([elmobp](https://github.com/elmobp))
|
|
115
174
|
|
|
116
175
|
## [v0.17.3](https://github.com/cfndsl/cfndsl/tree/v0.17.3) (2019-09-13)
|
|
176
|
+
|
|
117
177
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.2...v0.17.3)
|
|
118
178
|
|
|
119
179
|
**Merged pull requests:**
|
|
@@ -121,6 +181,7 @@
|
|
|
121
181
|
- Fix for \#418. This time with less pre 1.0.... [\#420](https://github.com/cfndsl/cfndsl/pull/420) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
122
182
|
|
|
123
183
|
## [v0.17.2](https://github.com/cfndsl/cfndsl/tree/v0.17.2) (2019-09-05)
|
|
184
|
+
|
|
124
185
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.1...v0.17.2)
|
|
125
186
|
|
|
126
187
|
**Fixed bugs:**
|
|
@@ -138,6 +199,7 @@
|
|
|
138
199
|
- Added Rules support for cross-parameter validation [\#417](https://github.com/cfndsl/cfndsl/pull/417) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
139
200
|
|
|
140
201
|
## [v0.17.1](https://github.com/cfndsl/cfndsl/tree/v0.17.1) (2019-09-01)
|
|
202
|
+
|
|
141
203
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.0...v0.17.1)
|
|
142
204
|
|
|
143
205
|
**Fixed bugs:**
|
|
@@ -153,6 +215,7 @@
|
|
|
153
215
|
- 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))
|
|
154
216
|
|
|
155
217
|
## [v0.17.0](https://github.com/cfndsl/cfndsl/tree/v0.17.0) (2019-06-16)
|
|
218
|
+
|
|
156
219
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.13...v0.17.0)
|
|
157
220
|
|
|
158
221
|
**Closed issues:**
|
|
@@ -166,6 +229,7 @@
|
|
|
166
229
|
- Added cfndsl patch for AWSEC2CapacityReservationTag Name Error [\#409](https://github.com/cfndsl/cfndsl/pull/409) ([sktan](https://github.com/sktan))
|
|
167
230
|
|
|
168
231
|
## [v0.16.13](https://github.com/cfndsl/cfndsl/tree/v0.16.13) (2019-03-22)
|
|
232
|
+
|
|
169
233
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.12...v0.16.13)
|
|
170
234
|
|
|
171
235
|
**Closed issues:**
|
|
@@ -178,6 +242,7 @@
|
|
|
178
242
|
- add InlineCode to serverless function [\#405](https://github.com/cfndsl/cfndsl/pull/405) ([gergnz](https://github.com/gergnz))
|
|
179
243
|
|
|
180
244
|
## [v0.16.12](https://github.com/cfndsl/cfndsl/tree/v0.16.12) (2019-02-24)
|
|
245
|
+
|
|
181
246
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.11...v0.16.12)
|
|
182
247
|
|
|
183
248
|
**Closed issues:**
|
|
@@ -192,6 +257,7 @@
|
|
|
192
257
|
- 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))
|
|
193
258
|
|
|
194
259
|
## [v0.16.11](https://github.com/cfndsl/cfndsl/tree/v0.16.11) (2019-02-22)
|
|
260
|
+
|
|
195
261
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.10...v0.16.11)
|
|
196
262
|
|
|
197
263
|
**Closed issues:**
|
|
@@ -204,6 +270,7 @@
|
|
|
204
270
|
- handle simple resource types [\#397](https://github.com/cfndsl/cfndsl/pull/397) ([gergnz](https://github.com/gergnz))
|
|
205
271
|
|
|
206
272
|
## [v0.16.10](https://github.com/cfndsl/cfndsl/tree/v0.16.10) (2019-02-13)
|
|
273
|
+
|
|
207
274
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.9...v0.16.10)
|
|
208
275
|
|
|
209
276
|
**Implemented enhancements:**
|
|
@@ -216,11 +283,8 @@
|
|
|
216
283
|
- support a version for cfndsl -u [\#393](https://github.com/cfndsl/cfndsl/issues/393)
|
|
217
284
|
- 'require': cannot load such file -- hana \(0.17.pre.5\) [\#387](https://github.com/cfndsl/cfndsl/issues/387)
|
|
218
285
|
|
|
219
|
-
**Merged pull requests:**
|
|
220
|
-
|
|
221
|
-
- implement json patch for patches and pull in patches from CDK [\#386](https://github.com/cfndsl/cfndsl/pull/386) ([gergnz](https://github.com/gergnz))
|
|
222
|
-
|
|
223
286
|
## [v0.16.9](https://github.com/cfndsl/cfndsl/tree/v0.16.9) (2018-12-07)
|
|
287
|
+
|
|
224
288
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.8...v0.16.9)
|
|
225
289
|
|
|
226
290
|
**Closed issues:**
|
|
@@ -235,6 +299,7 @@
|
|
|
235
299
|
- fix \#382, add Map primitive type [\#383](https://github.com/cfndsl/cfndsl/pull/383) ([gergnz](https://github.com/gergnz))
|
|
236
300
|
|
|
237
301
|
## [v0.16.8](https://github.com/cfndsl/cfndsl/tree/v0.16.8) (2018-11-21)
|
|
302
|
+
|
|
238
303
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.7...v0.16.8)
|
|
239
304
|
|
|
240
305
|
**Merged pull requests:**
|
|
@@ -242,6 +307,7 @@
|
|
|
242
307
|
- add fix for 2.15.0, There is a pattern here... [\#379](https://github.com/cfndsl/cfndsl/pull/379) ([gergnz](https://github.com/gergnz))
|
|
243
308
|
|
|
244
309
|
## [v0.16.7](https://github.com/cfndsl/cfndsl/tree/v0.16.7) (2018-11-11)
|
|
310
|
+
|
|
245
311
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.6...v0.16.7)
|
|
246
312
|
|
|
247
313
|
**Closed issues:**
|
|
@@ -254,6 +320,7 @@
|
|
|
254
320
|
- add missing types fixes \#377 [\#378](https://github.com/cfndsl/cfndsl/pull/378) ([gergnz](https://github.com/gergnz))
|
|
255
321
|
|
|
256
322
|
## [v0.16.6](https://github.com/cfndsl/cfndsl/tree/v0.16.6) (2018-05-30)
|
|
323
|
+
|
|
257
324
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.5...v0.16.6)
|
|
258
325
|
|
|
259
326
|
**Fixed bugs:**
|
|
@@ -265,9 +332,11 @@
|
|
|
265
332
|
- Array dupe [\#372](https://github.com/cfndsl/cfndsl/pull/372) ([johnf](https://github.com/johnf))
|
|
266
333
|
|
|
267
334
|
## [v0.16.5](https://github.com/cfndsl/cfndsl/tree/v0.16.5) (2018-04-16)
|
|
335
|
+
|
|
268
336
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.4...v0.16.5)
|
|
269
337
|
|
|
270
338
|
## [v0.16.4](https://github.com/cfndsl/cfndsl/tree/v0.16.4) (2018-04-16)
|
|
339
|
+
|
|
271
340
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.3...v0.16.4)
|
|
272
341
|
|
|
273
342
|
**Merged pull requests:**
|
|
@@ -276,6 +345,7 @@
|
|
|
276
345
|
- update SAM for latest details [\#366](https://github.com/cfndsl/cfndsl/pull/366) ([gergnz](https://github.com/gergnz))
|
|
277
346
|
|
|
278
347
|
## [v0.16.3](https://github.com/cfndsl/cfndsl/tree/v0.16.3) (2018-03-19)
|
|
348
|
+
|
|
279
349
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.2...v0.16.3)
|
|
280
350
|
|
|
281
351
|
**Closed issues:**
|
|
@@ -286,9 +356,9 @@
|
|
|
286
356
|
|
|
287
357
|
- add Fn::Cidr [\#364](https://github.com/cfndsl/cfndsl/pull/364) ([gergnz](https://github.com/gergnz))
|
|
288
358
|
- fixes for rubocop [\#363](https://github.com/cfndsl/cfndsl/pull/363) ([gergnz](https://github.com/gergnz))
|
|
289
|
-
- 0.x changes to 1.0.0.pre [\#361](https://github.com/cfndsl/cfndsl/pull/361) ([gergnz](https://github.com/gergnz))
|
|
290
359
|
|
|
291
360
|
## [v0.16.2](https://github.com/cfndsl/cfndsl/tree/v0.16.2) (2017-12-07)
|
|
361
|
+
|
|
292
362
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.1...v0.16.2)
|
|
293
363
|
|
|
294
364
|
**Closed issues:**
|
|
@@ -300,6 +370,7 @@
|
|
|
300
370
|
- add option to print version. Fixes \#358 [\#359](https://github.com/cfndsl/cfndsl/pull/359) ([gergnz](https://github.com/gergnz))
|
|
301
371
|
|
|
302
372
|
## [v0.16.1](https://github.com/cfndsl/cfndsl/tree/v0.16.1) (2017-12-02)
|
|
373
|
+
|
|
303
374
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.0...v0.16.1)
|
|
304
375
|
|
|
305
376
|
**Merged pull requests:**
|
|
@@ -307,6 +378,7 @@
|
|
|
307
378
|
- 352 update contacts repos [\#355](https://github.com/cfndsl/cfndsl/pull/355) ([gergnz](https://github.com/gergnz))
|
|
308
379
|
|
|
309
380
|
## [v0.16.0](https://github.com/cfndsl/cfndsl/tree/v0.16.0) (2017-11-15)
|
|
381
|
+
|
|
310
382
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.3...v0.16.0)
|
|
311
383
|
|
|
312
384
|
**Fixed bugs:**
|
|
@@ -323,6 +395,7 @@
|
|
|
323
395
|
- Update the embedded resource specification file to version 1.9.1 [\#346](https://github.com/cfndsl/cfndsl/pull/346) ([bobziuchkovski](https://github.com/bobziuchkovski))
|
|
324
396
|
|
|
325
397
|
## [v0.15.3](https://github.com/cfndsl/cfndsl/tree/v0.15.3) (2017-09-05)
|
|
398
|
+
|
|
326
399
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.2...v0.15.3)
|
|
327
400
|
|
|
328
401
|
**Implemented enhancements:**
|
|
@@ -341,6 +414,7 @@
|
|
|
341
414
|
- Fix parameter parsing when its value contains equal symbol [\#340](https://github.com/cfndsl/cfndsl/pull/340) ([ans0600](https://github.com/ans0600))
|
|
342
415
|
|
|
343
416
|
## [v0.15.2](https://github.com/cfndsl/cfndsl/tree/v0.15.2) (2017-06-20)
|
|
417
|
+
|
|
344
418
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.1...v0.15.2)
|
|
345
419
|
|
|
346
420
|
**Implemented enhancements:**
|
|
@@ -350,9 +424,9 @@
|
|
|
350
424
|
**Merged pull requests:**
|
|
351
425
|
|
|
352
426
|
- add outformat for rake task [\#334](https://github.com/cfndsl/cfndsl/pull/334) ([gergnz](https://github.com/gergnz))
|
|
353
|
-
- merge ruby version fix into 1.0.0.pre branch [\#333](https://github.com/cfndsl/cfndsl/pull/333) ([gergnz](https://github.com/gergnz))
|
|
354
427
|
|
|
355
428
|
## [v0.15.1](https://github.com/cfndsl/cfndsl/tree/v0.15.1) (2017-06-19)
|
|
429
|
+
|
|
356
430
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.0...v0.15.1)
|
|
357
431
|
|
|
358
432
|
**Fixed bugs:**
|
|
@@ -361,6 +435,7 @@
|
|
|
361
435
|
- specify ruby v 2.1 as minimum [\#332](https://github.com/cfndsl/cfndsl/pull/332) ([gergnz](https://github.com/gergnz))
|
|
362
436
|
|
|
363
437
|
## [v0.15.0](https://github.com/cfndsl/cfndsl/tree/v0.15.0) (2017-06-18)
|
|
438
|
+
|
|
364
439
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.14.0...v0.15.0)
|
|
365
440
|
|
|
366
441
|
**Closed issues:**
|
|
@@ -370,10 +445,10 @@
|
|
|
370
445
|
**Merged pull requests:**
|
|
371
446
|
|
|
372
447
|
- Clean up of README [\#330](https://github.com/cfndsl/cfndsl/pull/330) ([elmobp](https://github.com/elmobp))
|
|
373
|
-
- remove 'disable\_binding', merge 0.x changes [\#329](https://github.com/cfndsl/cfndsl/pull/329) ([gergnz](https://github.com/gergnz))
|
|
374
448
|
- enable deep merge as the default for yaml [\#328](https://github.com/cfndsl/cfndsl/pull/328) ([gergnz](https://github.com/gergnz))
|
|
375
449
|
|
|
376
450
|
## [v0.14.0](https://github.com/cfndsl/cfndsl/tree/v0.14.0) (2017-06-15)
|
|
451
|
+
|
|
377
452
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.13.1...v0.14.0)
|
|
378
453
|
|
|
379
454
|
**Implemented enhancements:**
|
|
@@ -384,11 +459,8 @@
|
|
|
384
459
|
|
|
385
460
|
- Error reading specification file on 0.13.0 [\#322](https://github.com/cfndsl/cfndsl/issues/322)
|
|
386
461
|
|
|
387
|
-
**Merged pull requests:**
|
|
388
|
-
|
|
389
|
-
- Modernize cfndsl executable [\#319](https://github.com/cfndsl/cfndsl/pull/319) ([kornypoet](https://github.com/kornypoet))
|
|
390
|
-
|
|
391
462
|
## [v0.13.1](https://github.com/cfndsl/cfndsl/tree/v0.13.1) (2017-05-17)
|
|
463
|
+
|
|
392
464
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.13.0...v0.13.1)
|
|
393
465
|
|
|
394
466
|
**Implemented enhancements:**
|
|
@@ -405,6 +477,7 @@
|
|
|
405
477
|
- Fallback to included resource spec if not overridden [\#323](https://github.com/cfndsl/cfndsl/pull/323) ([kornypoet](https://github.com/kornypoet))
|
|
406
478
|
|
|
407
479
|
## [v0.13.0](https://github.com/cfndsl/cfndsl/tree/v0.13.0) (2017-05-17)
|
|
480
|
+
|
|
408
481
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.11...v0.13.0)
|
|
409
482
|
|
|
410
483
|
**Closed issues:**
|
|
@@ -413,11 +486,11 @@
|
|
|
413
486
|
|
|
414
487
|
**Merged pull requests:**
|
|
415
488
|
|
|
416
|
-
- Remove support for OpenStack Heat [\#318](https://github.com/cfndsl/cfndsl/pull/318) ([kornypoet](https://github.com/kornypoet))
|
|
417
489
|
- Remove release\_url config from github changelog generator [\#316](https://github.com/cfndsl/cfndsl/pull/316) ([mikechau](https://github.com/mikechau))
|
|
418
490
|
- WIP: Aws schema [\#278](https://github.com/cfndsl/cfndsl/pull/278) ([kornypoet](https://github.com/kornypoet))
|
|
419
491
|
|
|
420
492
|
## [v0.12.11](https://github.com/cfndsl/cfndsl/tree/v0.12.11) (2017-05-10)
|
|
493
|
+
|
|
421
494
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.10...v0.12.11)
|
|
422
495
|
|
|
423
496
|
**Merged pull requests:**
|
|
@@ -425,6 +498,7 @@
|
|
|
425
498
|
- Add generated changelog [\#314](https://github.com/cfndsl/cfndsl/pull/314) ([mikechau](https://github.com/mikechau))
|
|
426
499
|
|
|
427
500
|
## [v0.12.10](https://github.com/cfndsl/cfndsl/tree/v0.12.10) (2017-05-10)
|
|
501
|
+
|
|
428
502
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.9...v0.12.10)
|
|
429
503
|
|
|
430
504
|
**Merged pull requests:**
|
|
@@ -432,6 +506,7 @@
|
|
|
432
506
|
- EC2::SecurityGroup: Add GroupName property [\#313](https://github.com/cfndsl/cfndsl/pull/313) ([mikechau](https://github.com/mikechau))
|
|
433
507
|
|
|
434
508
|
## [v0.12.9](https://github.com/cfndsl/cfndsl/tree/v0.12.9) (2017-05-08)
|
|
509
|
+
|
|
435
510
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.8...v0.12.9)
|
|
436
511
|
|
|
437
512
|
**Merged pull requests:**
|
|
@@ -439,6 +514,7 @@
|
|
|
439
514
|
- Update AWS::CloudWatch::Alarm with 2 new properties [\#312](https://github.com/cfndsl/cfndsl/pull/312) ([AnominousSign](https://github.com/AnominousSign))
|
|
440
515
|
|
|
441
516
|
## [v0.12.8](https://github.com/cfndsl/cfndsl/tree/v0.12.8) (2017-05-03)
|
|
517
|
+
|
|
442
518
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.7...v0.12.8)
|
|
443
519
|
|
|
444
520
|
**Merged pull requests:**
|
|
@@ -447,6 +523,7 @@
|
|
|
447
523
|
- IAM Managed Policy: Add support for ManagedPolicyName property [\#310](https://github.com/cfndsl/cfndsl/pull/310) ([mikechau](https://github.com/mikechau))
|
|
448
524
|
|
|
449
525
|
## [v0.12.7](https://github.com/cfndsl/cfndsl/tree/v0.12.7) (2017-04-23)
|
|
526
|
+
|
|
450
527
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.6...v0.12.7)
|
|
451
528
|
|
|
452
529
|
**Merged pull requests:**
|
|
@@ -454,6 +531,7 @@
|
|
|
454
531
|
- Add ssm param [\#307](https://github.com/cfndsl/cfndsl/pull/307) ([elmobp](https://github.com/elmobp))
|
|
455
532
|
|
|
456
533
|
## [v0.12.6](https://github.com/cfndsl/cfndsl/tree/v0.12.6) (2017-04-21)
|
|
534
|
+
|
|
457
535
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.5...v0.12.6)
|
|
458
536
|
|
|
459
537
|
**Fixed bugs:**
|
|
@@ -465,6 +543,7 @@
|
|
|
465
543
|
- add a globals class, and exclude reserverd words [\#309](https://github.com/cfndsl/cfndsl/pull/309) ([gergnz](https://github.com/gergnz))
|
|
466
544
|
|
|
467
545
|
## [v0.12.5](https://github.com/cfndsl/cfndsl/tree/v0.12.5) (2017-04-10)
|
|
546
|
+
|
|
468
547
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.4...v0.12.5)
|
|
469
548
|
|
|
470
549
|
**Merged pull requests:**
|
|
@@ -473,6 +552,7 @@
|
|
|
473
552
|
- Add Amazon EFS type \(Elastic File System\) [\#305](https://github.com/cfndsl/cfndsl/pull/305) ([AnominousSign](https://github.com/AnominousSign))
|
|
474
553
|
|
|
475
554
|
## [v0.12.4](https://github.com/cfndsl/cfndsl/tree/v0.12.4) (2017-03-29)
|
|
555
|
+
|
|
476
556
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.3...v0.12.4)
|
|
477
557
|
|
|
478
558
|
**Fixed bugs:**
|
|
@@ -489,6 +569,7 @@
|
|
|
489
569
|
- Add SSM Support [\#301](https://github.com/cfndsl/cfndsl/pull/301) ([elmobp](https://github.com/elmobp))
|
|
490
570
|
|
|
491
571
|
## [v0.12.3](https://github.com/cfndsl/cfndsl/tree/v0.12.3) (2017-03-12)
|
|
572
|
+
|
|
492
573
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.2...v0.12.3)
|
|
493
574
|
|
|
494
575
|
**Closed issues:**
|
|
@@ -500,6 +581,7 @@
|
|
|
500
581
|
- Fix RedrivePolicy attributes [\#297](https://github.com/cfndsl/cfndsl/pull/297) ([devops-dude](https://github.com/devops-dude))
|
|
501
582
|
|
|
502
583
|
## [v0.12.2](https://github.com/cfndsl/cfndsl/tree/v0.12.2) (2017-03-04)
|
|
584
|
+
|
|
503
585
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.1...v0.12.2)
|
|
504
586
|
|
|
505
587
|
**Closed issues:**
|
|
@@ -511,6 +593,7 @@
|
|
|
511
593
|
- add UserName property to IAM::User [\#293](https://github.com/cfndsl/cfndsl/pull/293) ([gergnz](https://github.com/gergnz))
|
|
512
594
|
|
|
513
595
|
## [v0.12.1](https://github.com/cfndsl/cfndsl/tree/v0.12.1) (2017-02-21)
|
|
596
|
+
|
|
514
597
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.0...v0.12.1)
|
|
515
598
|
|
|
516
599
|
**Closed issues:**
|
|
@@ -522,6 +605,7 @@
|
|
|
522
605
|
- updating IAM::Role and S3::Bucket types [\#292](https://github.com/cfndsl/cfndsl/pull/292) ([kornypoet](https://github.com/kornypoet))
|
|
523
606
|
|
|
524
607
|
## [v0.12.0](https://github.com/cfndsl/cfndsl/tree/v0.12.0) (2017-01-29)
|
|
608
|
+
|
|
525
609
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.12...v0.12.0)
|
|
526
610
|
|
|
527
611
|
**Merged pull requests:**
|
|
@@ -529,6 +613,7 @@
|
|
|
529
613
|
- Added Serverless::Function & API Transforms [\#290](https://github.com/cfndsl/cfndsl/pull/290) ([jonjitsu](https://github.com/jonjitsu))
|
|
530
614
|
|
|
531
615
|
## [v0.11.12](https://github.com/cfndsl/cfndsl/tree/v0.11.12) (2017-01-20)
|
|
616
|
+
|
|
532
617
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.11...v0.11.12)
|
|
533
618
|
|
|
534
619
|
**Implemented enhancements:**
|
|
@@ -550,6 +635,7 @@
|
|
|
550
635
|
- Added support for Fn::Split intrinsic function. [\#289](https://github.com/cfndsl/cfndsl/pull/289) ([pablovarela](https://github.com/pablovarela))
|
|
551
636
|
|
|
552
637
|
## [v0.11.11](https://github.com/cfndsl/cfndsl/tree/v0.11.11) (2016-12-04)
|
|
638
|
+
|
|
553
639
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.10...v0.11.11)
|
|
554
640
|
|
|
555
641
|
**Closed issues:**
|
|
@@ -561,6 +647,7 @@
|
|
|
561
647
|
- Add Environment as a property of Lambda::Function [\#280](https://github.com/cfndsl/cfndsl/pull/280) ([holmesjr](https://github.com/holmesjr))
|
|
562
648
|
|
|
563
649
|
## [v0.11.10](https://github.com/cfndsl/cfndsl/tree/v0.11.10) (2016-11-23)
|
|
650
|
+
|
|
564
651
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.9...v0.11.10)
|
|
565
652
|
|
|
566
653
|
**Closed issues:**
|
|
@@ -572,6 +659,7 @@
|
|
|
572
659
|
- Add Autoscaling NotificationConfiguration [\#275](https://github.com/cfndsl/cfndsl/pull/275) ([dbergamin](https://github.com/dbergamin))
|
|
573
660
|
|
|
574
661
|
## [v0.11.9](https://github.com/cfndsl/cfndsl/tree/v0.11.9) (2016-11-18)
|
|
662
|
+
|
|
575
663
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.8...v0.11.9)
|
|
576
664
|
|
|
577
665
|
**Closed issues:**
|
|
@@ -583,6 +671,7 @@
|
|
|
583
671
|
- Application Autoscaling Types [\#271](https://github.com/cfndsl/cfndsl/pull/271) ([kornypoet](https://github.com/kornypoet))
|
|
584
672
|
|
|
585
673
|
## [v0.11.8](https://github.com/cfndsl/cfndsl/tree/v0.11.8) (2016-11-13)
|
|
674
|
+
|
|
586
675
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.6...v0.11.8)
|
|
587
676
|
|
|
588
677
|
**Closed issues:**
|
|
@@ -596,6 +685,7 @@
|
|
|
596
685
|
- Add support for AWS::KMS::Alias [\#265](https://github.com/cfndsl/cfndsl/pull/265) ([mikechau](https://github.com/mikechau))
|
|
597
686
|
|
|
598
687
|
## [v0.11.6](https://github.com/cfndsl/cfndsl/tree/v0.11.6) (2016-10-23)
|
|
688
|
+
|
|
599
689
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.5...v0.11.6)
|
|
600
690
|
|
|
601
691
|
**Implemented enhancements:**
|
|
@@ -613,6 +703,7 @@
|
|
|
613
703
|
- Feature/add ecs task definition properties [\#261](https://github.com/cfndsl/cfndsl/pull/261) ([mikechau](https://github.com/mikechau))
|
|
614
704
|
|
|
615
705
|
## [v0.11.5](https://github.com/cfndsl/cfndsl/tree/v0.11.5) (2016-10-05)
|
|
706
|
+
|
|
616
707
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.4...v0.11.5)
|
|
617
708
|
|
|
618
709
|
**Implemented enhancements:**
|
|
@@ -624,6 +715,7 @@
|
|
|
624
715
|
- create fnsub branch, resolves \#244 and \#241 [\#258](https://github.com/cfndsl/cfndsl/pull/258) ([gergnz](https://github.com/gergnz))
|
|
625
716
|
|
|
626
717
|
## [v0.11.4](https://github.com/cfndsl/cfndsl/tree/v0.11.4) (2016-10-05)
|
|
718
|
+
|
|
627
719
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.3...v0.11.4)
|
|
628
720
|
|
|
629
721
|
**Implemented enhancements:**
|
|
@@ -645,6 +737,7 @@
|
|
|
645
737
|
- 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))
|
|
646
738
|
|
|
647
739
|
## [v0.11.3](https://github.com/cfndsl/cfndsl/tree/v0.11.3) (2016-09-20)
|
|
740
|
+
|
|
648
741
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.2...v0.11.3)
|
|
649
742
|
|
|
650
743
|
**Merged pull requests:**
|
|
@@ -655,6 +748,7 @@
|
|
|
655
748
|
- Update conditions.rb [\#238](https://github.com/cfndsl/cfndsl/pull/238) ([herebebogans](https://github.com/herebebogans))
|
|
656
749
|
|
|
657
750
|
## [v0.11.2](https://github.com/cfndsl/cfndsl/tree/v0.11.2) (2016-09-19)
|
|
751
|
+
|
|
658
752
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.1...v0.11.2)
|
|
659
753
|
|
|
660
754
|
**Implemented enhancements:**
|
|
@@ -674,6 +768,7 @@
|
|
|
674
768
|
- Add AccessLoggingPolicy to ELB [\#233](https://github.com/cfndsl/cfndsl/pull/233) ([gergnz](https://github.com/gergnz))
|
|
675
769
|
|
|
676
770
|
## [v0.11.1](https://github.com/cfndsl/cfndsl/tree/v0.11.1) (2016-09-05)
|
|
771
|
+
|
|
677
772
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.0...v0.11.1)
|
|
678
773
|
|
|
679
774
|
**Closed issues:**
|
|
@@ -687,6 +782,7 @@
|
|
|
687
782
|
- Simplecov [\#224](https://github.com/cfndsl/cfndsl/pull/224) ([kornypoet](https://github.com/kornypoet))
|
|
688
783
|
|
|
689
784
|
## [v0.11.0](https://github.com/cfndsl/cfndsl/tree/v0.11.0) (2016-08-25)
|
|
785
|
+
|
|
690
786
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.10.2...v0.11.0)
|
|
691
787
|
|
|
692
788
|
**Implemented enhancements:**
|
|
@@ -695,6 +791,7 @@
|
|
|
695
791
|
- Top Level Metadata [\#209](https://github.com/cfndsl/cfndsl/pull/209) ([kornypoet](https://github.com/kornypoet))
|
|
696
792
|
|
|
697
793
|
## [v0.10.2](https://github.com/cfndsl/cfndsl/tree/v0.10.2) (2016-08-25)
|
|
794
|
+
|
|
698
795
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.10.1...v0.10.2)
|
|
699
796
|
|
|
700
797
|
**Merged pull requests:**
|
|
@@ -702,6 +799,7 @@
|
|
|
702
799
|
- Add SsmAssociations to EC2 Instance resource. [\#223](https://github.com/cfndsl/cfndsl/pull/223) ([pvdvreede](https://github.com/pvdvreede))
|
|
703
800
|
|
|
704
801
|
## [v0.10.1](https://github.com/cfndsl/cfndsl/tree/v0.10.1) (2016-08-24)
|
|
802
|
+
|
|
705
803
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.10.0...v0.10.1)
|
|
706
804
|
|
|
707
805
|
**Merged pull requests:**
|
|
@@ -709,6 +807,7 @@
|
|
|
709
807
|
- adding elasticache tags [\#216](https://github.com/cfndsl/cfndsl/pull/216) ([jstenhouse](https://github.com/jstenhouse))
|
|
710
808
|
|
|
711
809
|
## [v0.10.0](https://github.com/cfndsl/cfndsl/tree/v0.10.0) (2016-08-22)
|
|
810
|
+
|
|
712
811
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.5...v0.10.0)
|
|
713
812
|
|
|
714
813
|
**Merged pull requests:**
|
|
@@ -720,6 +819,7 @@
|
|
|
720
819
|
- Add EC2::FlowLog [\#215](https://github.com/cfndsl/cfndsl/pull/215) ([webdevwilson](https://github.com/webdevwilson))
|
|
721
820
|
|
|
722
821
|
## [v0.9.5](https://github.com/cfndsl/cfndsl/tree/v0.9.5) (2016-07-26)
|
|
822
|
+
|
|
723
823
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.4...v0.9.5)
|
|
724
824
|
|
|
725
825
|
**Implemented enhancements:**
|
|
@@ -727,6 +827,7 @@
|
|
|
727
827
|
- Plurals spec [\#212](https://github.com/cfndsl/cfndsl/pull/212) ([kornypoet](https://github.com/kornypoet))
|
|
728
828
|
|
|
729
829
|
## [v0.9.4](https://github.com/cfndsl/cfndsl/tree/v0.9.4) (2016-07-26)
|
|
830
|
+
|
|
730
831
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.3...v0.9.4)
|
|
731
832
|
|
|
732
833
|
**Implemented enhancements:**
|
|
@@ -734,6 +835,7 @@
|
|
|
734
835
|
- Names spec [\#211](https://github.com/cfndsl/cfndsl/pull/211) ([kornypoet](https://github.com/kornypoet))
|
|
735
836
|
|
|
736
837
|
## [v0.9.3](https://github.com/cfndsl/cfndsl/tree/v0.9.3) (2016-07-26)
|
|
838
|
+
|
|
737
839
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.2...v0.9.3)
|
|
738
840
|
|
|
739
841
|
**Merged pull requests:**
|
|
@@ -741,6 +843,7 @@
|
|
|
741
843
|
- AWS::WAF Type [\#208](https://github.com/cfndsl/cfndsl/pull/208) ([kornypoet](https://github.com/kornypoet))
|
|
742
844
|
|
|
743
845
|
## [v0.9.2](https://github.com/cfndsl/cfndsl/tree/v0.9.2) (2016-07-06)
|
|
846
|
+
|
|
744
847
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.1...v0.9.2)
|
|
745
848
|
|
|
746
849
|
**Fixed bugs:**
|
|
@@ -748,6 +851,7 @@
|
|
|
748
851
|
- Cfndsl206 apigateway resource [\#207](https://github.com/cfndsl/cfndsl/pull/207) ([gergnz](https://github.com/gergnz))
|
|
749
852
|
|
|
750
853
|
## [v0.9.1](https://github.com/cfndsl/cfndsl/tree/v0.9.1) (2016-06-22)
|
|
854
|
+
|
|
751
855
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.0...v0.9.1)
|
|
752
856
|
|
|
753
857
|
**Implemented enhancements:**
|
|
@@ -761,6 +865,7 @@
|
|
|
761
865
|
- Api gateway [\#201](https://github.com/cfndsl/cfndsl/pull/201) ([webdevwilson](https://github.com/webdevwilson))
|
|
762
866
|
|
|
763
867
|
## [v0.9.0](https://github.com/cfndsl/cfndsl/tree/v0.9.0) (2016-06-22)
|
|
868
|
+
|
|
764
869
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.9...v0.9.0)
|
|
765
870
|
|
|
766
871
|
**Implemented enhancements:**
|
|
@@ -768,6 +873,7 @@
|
|
|
768
873
|
- Exparams class methods [\#187](https://github.com/cfndsl/cfndsl/pull/187) ([kornypoet](https://github.com/kornypoet))
|
|
769
874
|
|
|
770
875
|
## [v0.8.9](https://github.com/cfndsl/cfndsl/tree/v0.8.9) (2016-06-02)
|
|
876
|
+
|
|
771
877
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.8...v0.8.9)
|
|
772
878
|
|
|
773
879
|
**Merged pull requests:**
|
|
@@ -775,6 +881,7 @@
|
|
|
775
881
|
- Add Tags attribute to ELB [\#200](https://github.com/cfndsl/cfndsl/pull/200) ([webdevwilson](https://github.com/webdevwilson))
|
|
776
882
|
|
|
777
883
|
## [v0.8.8](https://github.com/cfndsl/cfndsl/tree/v0.8.8) (2016-06-02)
|
|
884
|
+
|
|
778
885
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.7...v0.8.8)
|
|
779
886
|
|
|
780
887
|
**Merged pull requests:**
|
|
@@ -782,6 +889,7 @@
|
|
|
782
889
|
- Add AWS RDS Option Group to types. [\#198](https://github.com/cfndsl/cfndsl/pull/198) ([pvdvreede](https://github.com/pvdvreede))
|
|
783
890
|
|
|
784
891
|
## [v0.8.7](https://github.com/cfndsl/cfndsl/tree/v0.8.7) (2016-06-02)
|
|
892
|
+
|
|
785
893
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.6...v0.8.7)
|
|
786
894
|
|
|
787
895
|
**Implemented enhancements:**
|
|
@@ -790,6 +898,7 @@
|
|
|
790
898
|
- Update types.yaml - fixed tenancey typo [\#194](https://github.com/cfndsl/cfndsl/pull/194) ([johnhyland](https://github.com/johnhyland))
|
|
791
899
|
|
|
792
900
|
## [v0.8.6](https://github.com/cfndsl/cfndsl/tree/v0.8.6) (2016-05-05)
|
|
901
|
+
|
|
793
902
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.5...v0.8.6)
|
|
794
903
|
|
|
795
904
|
**Implemented enhancements:**
|
|
@@ -801,6 +910,7 @@
|
|
|
801
910
|
- Adding MicrosoftAD to AWS types. [\#193](https://github.com/cfndsl/cfndsl/pull/193) ([pvdvreede](https://github.com/pvdvreede))
|
|
802
911
|
|
|
803
912
|
## [v0.8.5](https://github.com/cfndsl/cfndsl/tree/v0.8.5) (2016-05-04)
|
|
913
|
+
|
|
804
914
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.4...v0.8.5)
|
|
805
915
|
|
|
806
916
|
**Implemented enhancements:**
|
|
@@ -813,6 +923,7 @@
|
|
|
813
923
|
- Add cloudwatch events type [\#189](https://github.com/cfndsl/cfndsl/pull/189) ([gergnz](https://github.com/gergnz))
|
|
814
924
|
|
|
815
925
|
## [v0.8.4](https://github.com/cfndsl/cfndsl/tree/v0.8.4) (2016-05-03)
|
|
926
|
+
|
|
816
927
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.3...v0.8.4)
|
|
817
928
|
|
|
818
929
|
**Merged pull requests:**
|
|
@@ -820,6 +931,7 @@
|
|
|
820
931
|
- remove duplicate nat g/w definition [\#190](https://github.com/cfndsl/cfndsl/pull/190) ([gergnz](https://github.com/gergnz))
|
|
821
932
|
|
|
822
933
|
## [v0.8.3](https://github.com/cfndsl/cfndsl/tree/v0.8.3) (2016-04-27)
|
|
934
|
+
|
|
823
935
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.2...v0.8.3)
|
|
824
936
|
|
|
825
937
|
**Fixed bugs:**
|
|
@@ -827,6 +939,7 @@
|
|
|
827
939
|
- Add tag arguments [\#188](https://github.com/cfndsl/cfndsl/pull/188) ([kornypoet](https://github.com/kornypoet))
|
|
828
940
|
|
|
829
941
|
## [v0.8.2](https://github.com/cfndsl/cfndsl/tree/v0.8.2) (2016-04-27)
|
|
942
|
+
|
|
830
943
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.1...v0.8.2)
|
|
831
944
|
|
|
832
945
|
**Merged pull requests:**
|
|
@@ -834,42 +947,43 @@
|
|
|
834
947
|
- Updated OpsWorks\_Stack to include ChefConfiguration [\#186](https://github.com/cfndsl/cfndsl/pull/186) ([webdevwilson](https://github.com/webdevwilson))
|
|
835
948
|
|
|
836
949
|
## [v0.8.1](https://github.com/cfndsl/cfndsl/tree/v0.8.1) (2016-04-27)
|
|
950
|
+
|
|
837
951
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.0...v0.8.1)
|
|
838
952
|
|
|
953
|
+
**Implemented enhancements:**
|
|
954
|
+
|
|
955
|
+
- Use as\_json instead of to\_json [\#157](https://github.com/cfndsl/cfndsl/pull/157) ([johnf](https://github.com/johnf))
|
|
956
|
+
|
|
839
957
|
**Merged pull requests:**
|
|
840
958
|
|
|
841
959
|
- Add in Route53 Health Check Tags as a type [\#185](https://github.com/cfndsl/cfndsl/pull/185) ([gergnz](https://github.com/gergnz))
|
|
842
960
|
|
|
843
961
|
## [v0.8.0](https://github.com/cfndsl/cfndsl/tree/v0.8.0) (2016-04-27)
|
|
962
|
+
|
|
844
963
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.7.0...v0.8.0)
|
|
845
964
|
|
|
846
965
|
## [v0.7.0](https://github.com/cfndsl/cfndsl/tree/v0.7.0) (2016-04-27)
|
|
966
|
+
|
|
847
967
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.6.2...v0.7.0)
|
|
848
968
|
|
|
849
969
|
**Implemented enhancements:**
|
|
850
970
|
|
|
851
971
|
- Fix the issue with plural types [\#153](https://github.com/cfndsl/cfndsl/pull/153) ([johnf](https://github.com/johnf))
|
|
852
972
|
|
|
853
|
-
**Fixed bugs:**
|
|
854
|
-
|
|
855
|
-
- Fix the issue with plural types [\#153](https://github.com/cfndsl/cfndsl/pull/153) ([johnf](https://github.com/johnf))
|
|
856
|
-
|
|
857
973
|
## [v0.6.2](https://github.com/cfndsl/cfndsl/tree/v0.6.2) (2016-04-19)
|
|
974
|
+
|
|
858
975
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.6.1...v0.6.2)
|
|
859
976
|
|
|
860
977
|
**Implemented enhancements:**
|
|
861
978
|
|
|
862
979
|
- Fix for \#181 - deprecation warning [\#182](https://github.com/cfndsl/cfndsl/pull/182) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
863
980
|
|
|
864
|
-
**Fixed bugs:**
|
|
865
|
-
|
|
866
|
-
- Fix for \\#181 - deprecation warning [\#182](https://github.com/cfndsl/cfndsl/pull/182) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
867
|
-
|
|
868
981
|
**Closed issues:**
|
|
869
982
|
|
|
870
983
|
- Deprecation warning with rake 11.1.2 [\#181](https://github.com/cfndsl/cfndsl/issues/181)
|
|
871
984
|
|
|
872
985
|
## [v0.6.1](https://github.com/cfndsl/cfndsl/tree/v0.6.1) (2016-04-18)
|
|
986
|
+
|
|
873
987
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.6.0...v0.6.1)
|
|
874
988
|
|
|
875
989
|
**Implemented enhancements:**
|
|
@@ -881,6 +995,7 @@
|
|
|
881
995
|
- Update types.yaml [\#180](https://github.com/cfndsl/cfndsl/pull/180) ([herebebogans](https://github.com/herebebogans))
|
|
882
996
|
|
|
883
997
|
## [v0.6.0](https://github.com/cfndsl/cfndsl/tree/v0.6.0) (2016-04-18)
|
|
998
|
+
|
|
884
999
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.5.2...v0.6.0)
|
|
885
1000
|
|
|
886
1001
|
**Implemented enhancements:**
|
|
@@ -888,14 +1003,15 @@
|
|
|
888
1003
|
- External params [\#179](https://github.com/cfndsl/cfndsl/pull/179) ([kornypoet](https://github.com/kornypoet))
|
|
889
1004
|
|
|
890
1005
|
## [v0.5.2](https://github.com/cfndsl/cfndsl/tree/v0.5.2) (2016-04-15)
|
|
1006
|
+
|
|
891
1007
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.5.1...v0.5.2)
|
|
892
1008
|
|
|
893
1009
|
**Fixed bugs:**
|
|
894
1010
|
|
|
895
1011
|
- 5.0 release breaks addTag [\#175](https://github.com/cfndsl/cfndsl/issues/175)
|
|
896
|
-
- Remove erroneous logstream output [\#178](https://github.com/cfndsl/cfndsl/pull/178) ([stevenjack](https://github.com/stevenjack))
|
|
897
1012
|
|
|
898
1013
|
## [v0.5.1](https://github.com/cfndsl/cfndsl/tree/v0.5.1) (2016-04-15)
|
|
1014
|
+
|
|
899
1015
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.5.0...v0.5.1)
|
|
900
1016
|
|
|
901
1017
|
**Implemented enhancements:**
|
|
@@ -911,6 +1027,7 @@
|
|
|
911
1027
|
- Pretty printing no longer working with Rake builds [\#176](https://github.com/cfndsl/cfndsl/issues/176)
|
|
912
1028
|
|
|
913
1029
|
## [v0.5.0](https://github.com/cfndsl/cfndsl/tree/v0.5.0) (2016-04-13)
|
|
1030
|
+
|
|
914
1031
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.4...v0.5.0)
|
|
915
1032
|
|
|
916
1033
|
**Implemented enhancements:**
|
|
@@ -919,14 +1036,9 @@
|
|
|
919
1036
|
- cfndsl\_examples [\#83](https://github.com/cfndsl/cfndsl/issues/83)
|
|
920
1037
|
- The Juno release of Openstack Heat has a whole new floatilla of resources [\#67](https://github.com/cfndsl/cfndsl/issues/67)
|
|
921
1038
|
- CLI Tests [\#169](https://github.com/cfndsl/cfndsl/pull/169) ([kornypoet](https://github.com/kornypoet))
|
|
922
|
-
- Rubocop fixes [\#161](https://github.com/cfndsl/cfndsl/pull/161) ([stevenjack](https://github.com/stevenjack))
|
|
923
|
-
- Use as\_json instead of to\_json [\#157](https://github.com/cfndsl/cfndsl/pull/157) ([johnf](https://github.com/johnf))
|
|
924
|
-
|
|
925
|
-
**Fixed bugs:**
|
|
926
|
-
|
|
927
|
-
- Use as\\_json instead of to\\_json [\#157](https://github.com/cfndsl/cfndsl/pull/157) ([johnf](https://github.com/johnf))
|
|
928
1039
|
|
|
929
1040
|
## [v0.4.4](https://github.com/cfndsl/cfndsl/tree/v0.4.4) (2016-04-01)
|
|
1041
|
+
|
|
930
1042
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.2...v0.4.4)
|
|
931
1043
|
|
|
932
1044
|
**Closed issues:**
|
|
@@ -934,9 +1046,11 @@
|
|
|
934
1046
|
- Updating aws\_types.yaml? [\#165](https://github.com/cfndsl/cfndsl/issues/165)
|
|
935
1047
|
|
|
936
1048
|
## [v0.4.2](https://github.com/cfndsl/cfndsl/tree/v0.4.2) (2016-03-03)
|
|
1049
|
+
|
|
937
1050
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.3...v0.4.2)
|
|
938
1051
|
|
|
939
1052
|
## [v0.4.3](https://github.com/cfndsl/cfndsl/tree/v0.4.3) (2016-03-01)
|
|
1053
|
+
|
|
940
1054
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.1...v0.4.3)
|
|
941
1055
|
|
|
942
1056
|
**Closed issues:**
|
|
@@ -944,12 +1058,15 @@
|
|
|
944
1058
|
- Support the Elasticsearch Service [\#155](https://github.com/cfndsl/cfndsl/issues/155)
|
|
945
1059
|
|
|
946
1060
|
## [v0.4.1](https://github.com/cfndsl/cfndsl/tree/v0.4.1) (2016-02-18)
|
|
1061
|
+
|
|
947
1062
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.0...v0.4.1)
|
|
948
1063
|
|
|
949
1064
|
## [v0.4.0](https://github.com/cfndsl/cfndsl/tree/v0.4.0) (2016-02-11)
|
|
1065
|
+
|
|
950
1066
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.6...v0.4.0)
|
|
951
1067
|
|
|
952
1068
|
## [v0.3.6](https://github.com/cfndsl/cfndsl/tree/v0.3.6) (2016-02-09)
|
|
1069
|
+
|
|
953
1070
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.5...v0.3.6)
|
|
954
1071
|
|
|
955
1072
|
**Implemented enhancements:**
|
|
@@ -957,9 +1074,11 @@
|
|
|
957
1074
|
- Pretty-formatted multi-line output JSON [\#149](https://github.com/cfndsl/cfndsl/issues/149)
|
|
958
1075
|
|
|
959
1076
|
## [v0.3.5](https://github.com/cfndsl/cfndsl/tree/v0.3.5) (2016-02-03)
|
|
1077
|
+
|
|
960
1078
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.4...v0.3.5)
|
|
961
1079
|
|
|
962
1080
|
## [v0.3.4](https://github.com/cfndsl/cfndsl/tree/v0.3.4) (2016-01-28)
|
|
1081
|
+
|
|
963
1082
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.3...v0.3.4)
|
|
964
1083
|
|
|
965
1084
|
**Merged pull requests:**
|
|
@@ -967,6 +1086,7 @@
|
|
|
967
1086
|
- add AutoScalingConfiguration missing property [\#144](https://github.com/cfndsl/cfndsl/pull/144) ([kornypoet](https://github.com/kornypoet))
|
|
968
1087
|
|
|
969
1088
|
## [v0.3.3](https://github.com/cfndsl/cfndsl/tree/v0.3.3) (2015-12-26)
|
|
1089
|
+
|
|
970
1090
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.2...v0.3.3)
|
|
971
1091
|
|
|
972
1092
|
**Closed issues:**
|
|
@@ -975,6 +1095,7 @@
|
|
|
975
1095
|
- Add support for KMS::Key [\#140](https://github.com/cfndsl/cfndsl/issues/140)
|
|
976
1096
|
|
|
977
1097
|
## [v0.3.2](https://github.com/cfndsl/cfndsl/tree/v0.3.2) (2015-11-20)
|
|
1098
|
+
|
|
978
1099
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.1...v0.3.2)
|
|
979
1100
|
|
|
980
1101
|
**Merged pull requests:**
|
|
@@ -986,24 +1107,31 @@
|
|
|
986
1107
|
- Enable NotificationConfigurations on S3 Bucket object [\#131](https://github.com/cfndsl/cfndsl/pull/131) ([webdevwilson](https://github.com/webdevwilson))
|
|
987
1108
|
|
|
988
1109
|
## [v0.3.1](https://github.com/cfndsl/cfndsl/tree/v0.3.1) (2015-10-29)
|
|
1110
|
+
|
|
989
1111
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.9...v0.3.1)
|
|
990
1112
|
|
|
991
1113
|
## [v0.2.9](https://github.com/cfndsl/cfndsl/tree/v0.2.9) (2015-10-29)
|
|
1114
|
+
|
|
992
1115
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.8...v0.2.9)
|
|
993
1116
|
|
|
994
1117
|
## [v0.2.8](https://github.com/cfndsl/cfndsl/tree/v0.2.8) (2015-10-29)
|
|
1118
|
+
|
|
995
1119
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.7...v0.2.8)
|
|
996
1120
|
|
|
997
1121
|
## [v0.2.7](https://github.com/cfndsl/cfndsl/tree/v0.2.7) (2015-10-14)
|
|
1122
|
+
|
|
998
1123
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.4...v0.2.7)
|
|
999
1124
|
|
|
1000
1125
|
## [v0.2.4](https://github.com/cfndsl/cfndsl/tree/v0.2.4) (2015-09-29)
|
|
1126
|
+
|
|
1001
1127
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.0...v0.2.4)
|
|
1002
1128
|
|
|
1003
1129
|
## [v0.3.0](https://github.com/cfndsl/cfndsl/tree/v0.3.0) (2015-09-29)
|
|
1130
|
+
|
|
1004
1131
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.3...v0.3.0)
|
|
1005
1132
|
|
|
1006
1133
|
## [v0.2.3](https://github.com/cfndsl/cfndsl/tree/v0.2.3) (2015-08-26)
|
|
1134
|
+
|
|
1007
1135
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.2...v0.2.3)
|
|
1008
1136
|
|
|
1009
1137
|
**Closed issues:**
|
|
@@ -1011,12 +1139,15 @@
|
|
|
1011
1139
|
- Undefined symbol: EC2MountPoint - possible issue? [\#124](https://github.com/cfndsl/cfndsl/issues/124)
|
|
1012
1140
|
|
|
1013
1141
|
## [v0.2.2](https://github.com/cfndsl/cfndsl/tree/v0.2.2) (2015-08-10)
|
|
1142
|
+
|
|
1014
1143
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.1...v0.2.2)
|
|
1015
1144
|
|
|
1016
1145
|
## [v0.2.1](https://github.com/cfndsl/cfndsl/tree/v0.2.1) (2015-08-10)
|
|
1146
|
+
|
|
1017
1147
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.0...v0.2.1)
|
|
1018
1148
|
|
|
1019
1149
|
## [v0.2.0](https://github.com/cfndsl/cfndsl/tree/v0.2.0) (2015-08-10)
|
|
1150
|
+
|
|
1020
1151
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.20...v0.2.0)
|
|
1021
1152
|
|
|
1022
1153
|
**Closed issues:**
|
|
@@ -1024,6 +1155,7 @@
|
|
|
1024
1155
|
- Add support for IAM::Group ManagedPolicyArns [\#119](https://github.com/cfndsl/cfndsl/issues/119)
|
|
1025
1156
|
|
|
1026
1157
|
## [v0.1.20](https://github.com/cfndsl/cfndsl/tree/v0.1.20) (2015-07-22)
|
|
1158
|
+
|
|
1027
1159
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.19...v0.1.20)
|
|
1028
1160
|
|
|
1029
1161
|
**Closed issues:**
|
|
@@ -1032,6 +1164,7 @@
|
|
|
1032
1164
|
- aws\_types.aws AWS::SQS::Queue missing property QueueName: String [\#108](https://github.com/cfndsl/cfndsl/issues/108)
|
|
1033
1165
|
|
|
1034
1166
|
## [v0.1.19](https://github.com/cfndsl/cfndsl/tree/v0.1.19) (2015-07-16)
|
|
1167
|
+
|
|
1035
1168
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.18...v0.1.19)
|
|
1036
1169
|
|
|
1037
1170
|
**Closed issues:**
|
|
@@ -1039,12 +1172,15 @@
|
|
|
1039
1172
|
- SecurityGroupIngress/Egress formatting with additional \[\] [\#109](https://github.com/cfndsl/cfndsl/issues/109)
|
|
1040
1173
|
|
|
1041
1174
|
## [v0.1.18](https://github.com/cfndsl/cfndsl/tree/v0.1.18) (2015-06-22)
|
|
1175
|
+
|
|
1042
1176
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.17...v0.1.18)
|
|
1043
1177
|
|
|
1044
1178
|
## [v0.1.17](https://github.com/cfndsl/cfndsl/tree/v0.1.17) (2015-06-22)
|
|
1179
|
+
|
|
1045
1180
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.16...v0.1.17)
|
|
1046
1181
|
|
|
1047
1182
|
## [v0.1.16](https://github.com/cfndsl/cfndsl/tree/v0.1.16) (2015-06-15)
|
|
1183
|
+
|
|
1048
1184
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.15...v0.1.16)
|
|
1049
1185
|
|
|
1050
1186
|
**Fixed bugs:**
|
|
@@ -1052,6 +1188,7 @@
|
|
|
1052
1188
|
- PreferredAvailabilityZone Property on ElastiCache\_CacheCluster is incorrect [\#92](https://github.com/cfndsl/cfndsl/issues/92)
|
|
1053
1189
|
|
|
1054
1190
|
## [v0.1.15](https://github.com/cfndsl/cfndsl/tree/v0.1.15) (2015-05-10)
|
|
1191
|
+
|
|
1055
1192
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.14...v0.1.15)
|
|
1056
1193
|
|
|
1057
1194
|
**Closed issues:**
|
|
@@ -1059,6 +1196,7 @@
|
|
|
1059
1196
|
- Oddity where do/end block breaks expectations, but {} works fine? [\#86](https://github.com/cfndsl/cfndsl/issues/86)
|
|
1060
1197
|
|
|
1061
1198
|
## [v0.1.14](https://github.com/cfndsl/cfndsl/tree/v0.1.14) (2015-04-24)
|
|
1199
|
+
|
|
1062
1200
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.11...v0.1.14)
|
|
1063
1201
|
|
|
1064
1202
|
**Implemented enhancements:**
|
|
@@ -1071,6 +1209,7 @@
|
|
|
1071
1209
|
- Add Route53::HostedZone and Route53::HealthCheck [\#85](https://github.com/cfndsl/cfndsl/pull/85) ([benley](https://github.com/benley))
|
|
1072
1210
|
|
|
1073
1211
|
## [v0.1.11](https://github.com/cfndsl/cfndsl/tree/v0.1.11) (2015-02-05)
|
|
1212
|
+
|
|
1074
1213
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.10...v0.1.11)
|
|
1075
1214
|
|
|
1076
1215
|
**Implemented enhancements:**
|
|
@@ -1078,9 +1217,11 @@
|
|
|
1078
1217
|
- "AWS::SNS::Topic" does not appear to be fully defined [\#81](https://github.com/cfndsl/cfndsl/issues/81)
|
|
1079
1218
|
|
|
1080
1219
|
## [v0.1.10](https://github.com/cfndsl/cfndsl/tree/v0.1.10) (2015-01-19)
|
|
1220
|
+
|
|
1081
1221
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.9...v0.1.10)
|
|
1082
1222
|
|
|
1083
1223
|
## [v0.1.9](https://github.com/cfndsl/cfndsl/tree/v0.1.9) (2015-01-13)
|
|
1224
|
+
|
|
1084
1225
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.8...v0.1.9)
|
|
1085
1226
|
|
|
1086
1227
|
**Closed issues:**
|
|
@@ -1092,9 +1233,11 @@
|
|
|
1092
1233
|
- 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))
|
|
1093
1234
|
|
|
1094
1235
|
## [v0.1.8](https://github.com/cfndsl/cfndsl/tree/v0.1.8) (2015-01-02)
|
|
1236
|
+
|
|
1095
1237
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.7...v0.1.8)
|
|
1096
1238
|
|
|
1097
1239
|
## [v0.1.7](https://github.com/cfndsl/cfndsl/tree/v0.1.7) (2014-12-26)
|
|
1240
|
+
|
|
1098
1241
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.3...v0.1.7)
|
|
1099
1242
|
|
|
1100
1243
|
**Closed issues:**
|
|
@@ -1119,6 +1262,7 @@
|
|
|
1119
1262
|
- Add NetworkInterface resource Closes \#54 [\#55](https://github.com/cfndsl/cfndsl/pull/55) ([erikmack](https://github.com/erikmack))
|
|
1120
1263
|
|
|
1121
1264
|
## [v0.1.3](https://github.com/cfndsl/cfndsl/tree/v0.1.3) (2014-07-02)
|
|
1265
|
+
|
|
1122
1266
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.2...v0.1.3)
|
|
1123
1267
|
|
|
1124
1268
|
**Fixed bugs:**
|
|
@@ -1130,6 +1274,7 @@
|
|
|
1130
1274
|
- Output to a string instead of STDOUT? [\#23](https://github.com/cfndsl/cfndsl/issues/23)
|
|
1131
1275
|
|
|
1132
1276
|
## [v0.1.2](https://github.com/cfndsl/cfndsl/tree/v0.1.2) (2014-05-28)
|
|
1277
|
+
|
|
1133
1278
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.1...v0.1.2)
|
|
1134
1279
|
|
|
1135
1280
|
**Closed issues:**
|
|
@@ -1137,6 +1282,7 @@
|
|
|
1137
1282
|
- Publish Updated Gem? [\#50](https://github.com/cfndsl/cfndsl/issues/50)
|
|
1138
1283
|
|
|
1139
1284
|
## [v0.1.1](https://github.com/cfndsl/cfndsl/tree/v0.1.1) (2014-05-14)
|
|
1285
|
+
|
|
1140
1286
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.0...v0.1.1)
|
|
1141
1287
|
|
|
1142
1288
|
**Closed issues:**
|
|
@@ -1148,6 +1294,9 @@
|
|
|
1148
1294
|
- Change license to MIT and update gemfile [\#48](https://github.com/cfndsl/cfndsl/pull/48) ([stevenjack](https://github.com/stevenjack))
|
|
1149
1295
|
|
|
1150
1296
|
## [v0.1.0](https://github.com/cfndsl/cfndsl/tree/v0.1.0) (2014-05-13)
|
|
1297
|
+
|
|
1298
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/28b75a5024ee1768113950cfcf317f97c691f608...v0.1.0)
|
|
1299
|
+
|
|
1151
1300
|
**Implemented enhancements:**
|
|
1152
1301
|
|
|
1153
1302
|
- Adds missing Pseudo Parameters [\#40](https://github.com/cfndsl/cfndsl/pull/40) ([stevenjack](https://github.com/stevenjack))
|
|
@@ -1193,4 +1342,4 @@
|
|
|
1193
1342
|
|
|
1194
1343
|
|
|
1195
1344
|
|
|
1196
|
-
\* *This
|
|
1345
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|