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