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