cfndsl 0.15.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +3 -0
- data/.rubocop.yml +6 -6
- data/.travis.yml +10 -5
- data/CHANGELOG.md +721 -400
- data/Gemfile +2 -0
- data/README.md +85 -23
- data/Rakefile +28 -6
- data/TODO.md +18 -0
- data/UPGRADING.md +22 -0
- data/cfndsl.gemspec +17 -16
- data/exe/cfndsl +5 -0
- data/lib/cfndsl.rb +3 -113
- data/lib/cfndsl/aws/cloud_formation_template.rb +10 -1
- data/lib/cfndsl/aws/patches/000_CloudFormationResourceSpecification.json +51726 -0
- data/lib/cfndsl/aws/patches/000_sam.spec.json +1242 -0
- data/lib/cfndsl/aws/patches/100_sam.spec_DeploymentPreference_patch.json +64 -0
- data/lib/cfndsl/aws/patches/200_Scrutinies_patch.json +86 -0
- data/lib/cfndsl/aws/patches/500_Cognito_IdentityPoolRoleAttachment_patches.json +25 -0
- data/lib/cfndsl/aws/patches/500_IoT1Click_patch_PlacementTemplate_DeviceTemplates.json +20 -0
- data/lib/cfndsl/aws/patches/500_NetworkAclEntry_patch.json +16 -0
- data/lib/cfndsl/aws/patches/500_SAM_Serverless_Function_S3Event_Events_patch.json +16 -0
- data/lib/cfndsl/aws/patches/500_SAM_Serverless_Function_S3Location_Version_patch.json +16 -0
- data/lib/cfndsl/aws/patches/500_SSM_AssociationName_patch.json +16 -0
- data/lib/cfndsl/aws/patches/500_VPCEndpoint_patch.json +17 -0
- data/lib/cfndsl/aws/patches/510_ElasticSearch_Domain_patches.json +15 -0
- data/lib/cfndsl/aws/patches/520_ServiceDiscovery_InstanceAttributes_patch.json +16 -0
- data/lib/cfndsl/aws/patches/600_RefKinds_patch.json +3654 -0
- data/lib/cfndsl/aws/patches/700_SAM_Serverless_Function_InlineCode_patch.json +20 -0
- data/lib/cfndsl/aws/patches/800_List_types_patch.json +115 -0
- data/lib/cfndsl/aws/resource_specification.json +39955 -9293
- data/lib/cfndsl/aws/types.rb +5 -3
- data/lib/cfndsl/cfnlego.rb +34 -0
- data/lib/{cfnlego → cfndsl/cfnlego}/cloudformation.erb +0 -0
- data/lib/{cfnlego → cfndsl/cfnlego}/cloudformation.rb +3 -1
- data/lib/{cfnlego → cfndsl/cfnlego}/resource.rb +5 -8
- data/lib/cfndsl/cloudformation.rb +114 -0
- data/lib/cfndsl/conditions.rb +13 -1
- data/lib/cfndsl/creation_policy.rb +3 -1
- data/lib/cfndsl/deep_merge.rb +4 -0
- data/lib/cfndsl/external_parameters.rb +12 -13
- data/lib/cfndsl/globals.rb +51 -10
- data/lib/cfndsl/json_serialisable_object.rb +4 -2
- data/lib/cfndsl/jsonable.rb +51 -68
- data/lib/cfndsl/mappings.rb +3 -1
- data/lib/cfndsl/module.rb +18 -5
- data/lib/cfndsl/names.rb +2 -0
- data/lib/cfndsl/orchestration_template.rb +193 -73
- data/lib/cfndsl/outputs.rb +7 -1
- data/lib/cfndsl/parameters.rb +3 -1
- data/lib/cfndsl/plurals.rb +23 -10
- data/lib/cfndsl/properties.rb +3 -1
- data/lib/cfndsl/rake_task.rb +217 -15
- data/lib/cfndsl/ref_check.rb +21 -11
- data/lib/cfndsl/resources.rb +8 -19
- data/lib/cfndsl/rules.rb +46 -0
- data/lib/cfndsl/runner.rb +143 -0
- data/lib/cfndsl/specification.rb +82 -84
- data/lib/cfndsl/types.rb +212 -95
- data/lib/cfndsl/update_policy.rb +3 -1
- data/lib/cfndsl/version.rb +3 -1
- data/lib/deep_merge/core.rb +10 -6
- data/lib/deep_merge/deep_merge.rb +3 -1
- data/sample/autoscale.rb +1 -1
- data/sample/autoscale2.rb +4 -3
- data/sample/circular.rb +2 -0
- data/sample/codedeploy.rb +3 -1
- data/sample/config_service.rb +5 -3
- data/sample/ecs.rb +3 -1
- data/sample/export.rb +5 -3
- data/sample/iam_policies.rb +2 -0
- data/sample/import.rb +4 -2
- data/sample/lambda.rb +3 -1
- data/sample/s3.rb +2 -0
- data/sample/t1.rb +3 -1
- data/sample/vpc_example.rb +3 -1
- data/sample/vpc_with_vpn_example.rb +3 -1
- data/spec/aws/ec2_security_group_spec.rb +2 -0
- data/spec/aws/ecs_task_definition_spec.rb +2 -0
- data/spec/aws/iam_managed_policy_spec.rb +2 -0
- data/spec/aws/kms_alias_spec.rb +2 -0
- data/spec/aws/list_type_patches_spec.rb +35 -0
- data/spec/aws/logs_log_group_spec.rb +2 -0
- data/spec/aws/nested_arrays_spec.rb +194 -0
- data/spec/aws/rds_db_instance_spec.rb +2 -0
- data/spec/aws/serverless_spec.rb +2 -2
- data/spec/cfndsl_spec.rb +102 -63
- data/spec/cli_spec.rb +52 -49
- data/spec/cloud_formation_template_spec.rb +235 -0
- data/spec/condition_spec.rb +24 -0
- data/spec/deep_merge_spec.rb +2 -0
- data/spec/direct_ruby_spec.rb +19 -0
- data/spec/external_parameters_spec.rb +25 -20
- data/spec/fixtures/condition-assertion.json +1 -0
- data/spec/fixtures/params.json +1 -0
- data/spec/fixtures/params.yaml +2 -0
- data/spec/fixtures/params_struct1.yaml +4 -0
- data/spec/fixtures/params_struct2.yaml +4 -0
- data/spec/fixtures/rule-assertion.json +1 -0
- data/spec/fixtures/test.rb +12 -4
- data/spec/generate_spec.rb +4 -0
- data/spec/jsonable_spec.rb +2 -0
- data/spec/metadata_spec.rb +2 -0
- data/spec/names_spec.rb +2 -0
- data/spec/output_spec.rb +2 -0
- data/spec/plurals_spec.rb +2 -0
- data/spec/resource_name_spec.rb +21 -0
- data/spec/resources_spec.rb +2 -7
- data/spec/rule_spec.rb +17 -0
- data/spec/spec_helper.rb +4 -7
- data/spec/support/shared_examples/orchestration_template.rb +17 -2
- data/spec/transform_spec.rb +2 -0
- data/spec/types_definition_spec.rb +6 -7
- metadata +79 -25
- data/bin/cfndsl +0 -143
- data/lib/cfndsl/errors.rb +0 -29
- data/lib/cfndsl/os/heat_template.rb +0 -16
- data/lib/cfndsl/os/types.rb +0 -12
- data/lib/cfndsl/os/types.yaml +0 -2423
- data/lib/cfndsl/patches.rb +0 -98
- data/lib/cfnlego.rb +0 -42
- data/spec/fixtures/heattest.rb +0 -22
- data/spec/heat_template_spec.rb +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 5bc63626be57248e01056f4a811eaf05231a3e35c1e4f287e350da22f3dd9a7a
|
|
4
|
+
data.tar.gz: 4aded3824284effb77fad16e621fed8b471aba622c7d29778babf62fc6ecac9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9da2f7925d461fda084fd21cca89628c36c260cebf2a11e05eace614bc0cfaf7ab4a4064c8e40f6952ebc03bbbc6a6547366910c6c05224233a1be568a39f9df
|
|
7
|
+
data.tar.gz: a0dc7053d65dc576e461996eed9848d14687cfd4bc45a902e9a6270120e1dd65a9912566338e1c29ffe77adc93671eca28a2340b933f23430031ed178d556237
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
|
@@ -14,21 +14,21 @@ Metrics/MethodLength:
|
|
|
14
14
|
Max: 25
|
|
15
15
|
|
|
16
16
|
# Due to our @Properties style instance names
|
|
17
|
-
|
|
17
|
+
Naming/VariableName:
|
|
18
18
|
Enabled: false
|
|
19
19
|
|
|
20
20
|
# We are a DSL
|
|
21
|
-
|
|
22
|
-
Enabled: false
|
|
23
|
-
|
|
24
|
-
# Because of the way FnFormat was developed
|
|
25
|
-
Style/FormatStringToken:
|
|
21
|
+
Naming/MethodName:
|
|
26
22
|
Enabled: false
|
|
27
23
|
|
|
28
24
|
# Lone String
|
|
29
25
|
Lint/Void:
|
|
30
26
|
Enabled: false
|
|
31
27
|
|
|
28
|
+
Style/SafeNavigation:
|
|
29
|
+
Enabled: false
|
|
30
|
+
|
|
32
31
|
AllCops:
|
|
32
|
+
TargetRubyVersion: 2.3
|
|
33
33
|
Exclude:
|
|
34
34
|
- 'tmp/**/*'
|
data/.travis.yml
CHANGED
|
@@ -1,19 +1,24 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
-
- 2.
|
|
3
|
+
- 2.4
|
|
4
|
+
- 2.5
|
|
5
|
+
- 2.6
|
|
4
6
|
sudo: false
|
|
5
|
-
|
|
7
|
+
before_install:
|
|
8
|
+
- gem update --system
|
|
9
|
+
- gem install bundler
|
|
6
10
|
deploy:
|
|
7
11
|
provider: rubygems
|
|
8
12
|
api_key:
|
|
9
|
-
secure:
|
|
13
|
+
secure: cIDF27JCirxxg7SXw6R+xxABMwCrrirJiJzljVxb/MdlRyUVaSW8XdZjOVyNgJkCx+vQOX4U+hp+p0xVI/Loh4EXkgbDvu2oGIAn/g1lfWabwKtdkFEviQn4tWvqDcEkxm5Hm6Gs0pFCaurqynMPNbsLVAEIiSw+la8LxEeeQ6I=
|
|
10
14
|
gem: cfndsl
|
|
11
15
|
on:
|
|
12
16
|
tags: true
|
|
13
|
-
repo:
|
|
17
|
+
repo: cfndsl/cfndsl
|
|
14
18
|
notifications:
|
|
15
19
|
email:
|
|
16
20
|
recipients:
|
|
17
|
-
|
|
21
|
+
- dempsey.travis@gmail.com
|
|
22
|
+
- gergnz@gmail.com
|
|
18
23
|
on_failure: change
|
|
19
24
|
on_success: never
|
data/CHANGELOG.md
CHANGED
|
@@ -1,838 +1,1159 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [0.
|
|
4
|
-
[Full Changelog](https://github.com/
|
|
3
|
+
## [1.0.0](https://github.com/cfndsl/cfndsl/tree/1.0.0) (2020-01-16)
|
|
4
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.5...1.0.0)
|
|
5
|
+
|
|
6
|
+
**Implemented enhancements:**
|
|
7
|
+
|
|
8
|
+
- gitter.im link is broken \(gives 404 not found\) [\#432](https://github.com/cfndsl/cfndsl/issues/432)
|
|
9
|
+
- Boolean value with -D [\#429](https://github.com/cfndsl/cfndsl/issues/429)
|
|
10
|
+
- Validate Resource Names [\#343](https://github.com/cfndsl/cfndsl/issues/343)
|
|
11
|
+
- Direct Ruby Interface? [\#255](https://github.com/cfndsl/cfndsl/issues/255)
|
|
12
|
+
|
|
13
|
+
**Fixed bugs:**
|
|
14
|
+
|
|
15
|
+
- gitter.im link is broken \\(gives 404 not found\\) [\#432](https://github.com/cfndsl/cfndsl/issues/432)
|
|
16
|
+
- ArtifactStore and ArtifactStores are not the same thing [\#389](https://github.com/cfndsl/cfndsl/issues/389)
|
|
17
|
+
|
|
18
|
+
**Closed issues:**
|
|
19
|
+
|
|
20
|
+
- Warning when External Yaml/JSON files share top level namespace [\#418](https://github.com/cfndsl/cfndsl/issues/418)
|
|
21
|
+
- 1.0.0-pre bugs in OrchestrationTemplate\#validate [\#403](https://github.com/cfndsl/cfndsl/issues/403)
|
|
22
|
+
- Use the AWS-CDK as a source for patches [\#385](https://github.com/cfndsl/cfndsl/issues/385)
|
|
23
|
+
- Plural version of a subType Property behaves differently to Resource Property [\#380](https://github.com/cfndsl/cfndsl/issues/380)
|
|
24
|
+
- Auto discover plurals while processing the specification [\#354](https://github.com/cfndsl/cfndsl/issues/354)
|
|
25
|
+
- Specifying multiple UpdatePolicy values is not intutitive [\#304](https://github.com/cfndsl/cfndsl/issues/304)
|
|
26
|
+
|
|
27
|
+
**Merged pull requests:**
|
|
28
|
+
|
|
29
|
+
- 1.0.0 [\#441](https://github.com/cfndsl/cfndsl/pull/441) ([gergnz](https://github.com/gergnz))
|
|
30
|
+
- update patches from CDK [\#440](https://github.com/cfndsl/cfndsl/pull/440) ([gergnz](https://github.com/gergnz))
|
|
31
|
+
- Add a resource name check to make sure it's alphanumeric. Fixes \#343 [\#439](https://github.com/cfndsl/cfndsl/pull/439) ([gergnz](https://github.com/gergnz))
|
|
32
|
+
- Bring changes from master in [\#438](https://github.com/cfndsl/cfndsl/pull/438) ([gergnz](https://github.com/gergnz))
|
|
33
|
+
- make true and false be boolean when passed from the command line [\#437](https://github.com/cfndsl/cfndsl/pull/437) ([gergnz](https://github.com/gergnz))
|
|
34
|
+
- Add a Gitter chat badge to README.md [\#436](https://github.com/cfndsl/cfndsl/pull/436) ([gitter-badger](https://github.com/gitter-badger))
|
|
35
|
+
|
|
36
|
+
## [v0.17.5](https://github.com/cfndsl/cfndsl/tree/v0.17.5) (2019-12-27)
|
|
37
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.0.pre.1...v0.17.5)
|
|
38
|
+
|
|
39
|
+
**Fixed bugs:**
|
|
40
|
+
|
|
41
|
+
- VPCZoneIdentifier is always an array - 1.0.0.pre [\#428](https://github.com/cfndsl/cfndsl/issues/428)
|
|
42
|
+
|
|
43
|
+
**Closed issues:**
|
|
44
|
+
|
|
45
|
+
- Where should we define custom helper methods? [\#433](https://github.com/cfndsl/cfndsl/issues/433)
|
|
46
|
+
- undefined method `EC2\_LaunchTemplate' for \#\<CfnDsl::CloudFormationTemplate:...\> \(NoMethodError\) [\#431](https://github.com/cfndsl/cfndsl/issues/431)
|
|
47
|
+
- cfndsl fails with "uninitialized constant CfnDsl::AWS::Types::AWSWAFv2IPSetTag \(NameError\)" [\#430](https://github.com/cfndsl/cfndsl/issues/430)
|
|
48
|
+
|
|
49
|
+
**Merged pull requests:**
|
|
50
|
+
|
|
51
|
+
- 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))
|
|
52
|
+
|
|
53
|
+
## [v1.0.0.pre.1](https://github.com/cfndsl/cfndsl/tree/v1.0.0.pre.1) (2019-10-27)
|
|
54
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.0.0.pre.2...v1.0.0.pre.1)
|
|
55
|
+
|
|
56
|
+
## [v1.0.0.pre.2](https://github.com/cfndsl/cfndsl/tree/v1.0.0.pre.2) (2019-10-27)
|
|
57
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.4...v1.0.0.pre.2)
|
|
58
|
+
|
|
59
|
+
**Merged pull requests:**
|
|
60
|
+
|
|
61
|
+
- 1.0.0 pre rake and spec [\#427](https://github.com/cfndsl/cfndsl/pull/427) ([lwoggardner](https://github.com/lwoggardner))
|
|
62
|
+
- 1.0.0.pre merge fix403 [\#426](https://github.com/cfndsl/cfndsl/pull/426) ([lwoggardner](https://github.com/lwoggardner))
|
|
63
|
+
- 1.0.0.pre merge with master [\#425](https://github.com/cfndsl/cfndsl/pull/425) ([lwoggardner](https://github.com/lwoggardner))
|
|
64
|
+
|
|
65
|
+
## [v0.17.4](https://github.com/cfndsl/cfndsl/tree/v0.17.4) (2019-10-06)
|
|
66
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.3...v0.17.4)
|
|
67
|
+
|
|
68
|
+
**Closed issues:**
|
|
69
|
+
|
|
70
|
+
- fails to generate with multiple input YAML files from 0.17.3 [\#422](https://github.com/cfndsl/cfndsl/issues/422)
|
|
71
|
+
|
|
72
|
+
**Merged pull requests:**
|
|
73
|
+
|
|
74
|
+
- improve test scenario for a basic merge in binding of multiple yaml files. Fixes \#422 [\#423](https://github.com/cfndsl/cfndsl/pull/423) ([gergnz](https://github.com/gergnz))
|
|
75
|
+
- Suggest to not use system wide Ruby [\#421](https://github.com/cfndsl/cfndsl/pull/421) ([elmobp](https://github.com/elmobp))
|
|
76
|
+
|
|
77
|
+
## [v0.17.3](https://github.com/cfndsl/cfndsl/tree/v0.17.3) (2019-09-13)
|
|
78
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.2...v0.17.3)
|
|
79
|
+
|
|
80
|
+
**Merged pull requests:**
|
|
81
|
+
|
|
82
|
+
- Fix for \#418. This time with less pre 1.0.... [\#420](https://github.com/cfndsl/cfndsl/pull/420) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
83
|
+
|
|
84
|
+
## [v0.17.2](https://github.com/cfndsl/cfndsl/tree/v0.17.2) (2019-09-05)
|
|
85
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.1...v0.17.2)
|
|
86
|
+
|
|
87
|
+
**Fixed bugs:**
|
|
88
|
+
|
|
89
|
+
- update rubygems api key [\#416](https://github.com/cfndsl/cfndsl/pull/416) ([gergnz](https://github.com/gergnz))
|
|
90
|
+
|
|
91
|
+
**Closed issues:**
|
|
92
|
+
|
|
93
|
+
- Support for cross-parameter validation rules [\#414](https://github.com/cfndsl/cfndsl/issues/414)
|
|
94
|
+
- Missing patch for Tag support in AWS::IAM::Role and AWS::Serverless::Function [\#412](https://github.com/cfndsl/cfndsl/issues/412)
|
|
95
|
+
- Access to rubygems [\#391](https://github.com/cfndsl/cfndsl/issues/391)
|
|
96
|
+
|
|
97
|
+
**Merged pull requests:**
|
|
98
|
+
|
|
99
|
+
- Added Rules support for cross-parameter validation [\#417](https://github.com/cfndsl/cfndsl/pull/417) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
100
|
+
|
|
101
|
+
## [v0.17.1](https://github.com/cfndsl/cfndsl/tree/v0.17.1) (2019-09-01)
|
|
102
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.0...v0.17.1)
|
|
103
|
+
|
|
104
|
+
**Fixed bugs:**
|
|
105
|
+
|
|
106
|
+
- fix for rubocop 0.74 [\#415](https://github.com/cfndsl/cfndsl/pull/415) ([gergnz](https://github.com/gergnz))
|
|
107
|
+
|
|
108
|
+
**Closed issues:**
|
|
109
|
+
|
|
110
|
+
- Condition Statement removing duplicates & causing issues [\#231](https://github.com/cfndsl/cfndsl/issues/231)
|
|
111
|
+
|
|
112
|
+
**Merged pull requests:**
|
|
113
|
+
|
|
114
|
+
- 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))
|
|
115
|
+
|
|
116
|
+
## [v0.17.0](https://github.com/cfndsl/cfndsl/tree/v0.17.0) (2019-06-16)
|
|
117
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.13...v0.17.0)
|
|
118
|
+
|
|
119
|
+
**Closed issues:**
|
|
120
|
+
|
|
121
|
+
- Handle Transform keywork [\#406](https://github.com/cfndsl/cfndsl/issues/406)
|
|
122
|
+
|
|
123
|
+
**Merged pull requests:**
|
|
124
|
+
|
|
125
|
+
- add the latest patches [\#411](https://github.com/cfndsl/cfndsl/pull/411) ([gergnz](https://github.com/gergnz))
|
|
126
|
+
- fix all the latest rubocop issues [\#410](https://github.com/cfndsl/cfndsl/pull/410) ([gergnz](https://github.com/gergnz))
|
|
127
|
+
- Added cfndsl patch for AWSEC2CapacityReservationTag Name Error [\#409](https://github.com/cfndsl/cfndsl/pull/409) ([sktan](https://github.com/sktan))
|
|
128
|
+
|
|
129
|
+
## [v0.16.13](https://github.com/cfndsl/cfndsl/tree/v0.16.13) (2019-03-22)
|
|
130
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.12...v0.16.13)
|
|
131
|
+
|
|
132
|
+
**Closed issues:**
|
|
133
|
+
|
|
134
|
+
- latest specification issues with 0.16.2 [\#404](https://github.com/cfndsl/cfndsl/issues/404)
|
|
135
|
+
- Integrate CF Resource Specification [\#276](https://github.com/cfndsl/cfndsl/issues/276)
|
|
136
|
+
|
|
137
|
+
**Merged pull requests:**
|
|
138
|
+
|
|
139
|
+
- add InlineCode to serverless function [\#405](https://github.com/cfndsl/cfndsl/pull/405) ([gergnz](https://github.com/gergnz))
|
|
140
|
+
|
|
141
|
+
## [v0.16.12](https://github.com/cfndsl/cfndsl/tree/v0.16.12) (2019-02-24)
|
|
142
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.11...v0.16.12)
|
|
143
|
+
|
|
144
|
+
**Closed issues:**
|
|
145
|
+
|
|
146
|
+
- Metrics is missing from AWS::CloudWatch::Alarm [\#401](https://github.com/cfndsl/cfndsl/issues/401)
|
|
147
|
+
- "Update specification" instructions could be more clear [\#374](https://github.com/cfndsl/cfndsl/issues/374)
|
|
148
|
+
- 2.0.0 of the AWS Cloudformation Specification breaks cfndsl [\#370](https://github.com/cfndsl/cfndsl/issues/370)
|
|
149
|
+
|
|
150
|
+
**Merged pull requests:**
|
|
151
|
+
|
|
152
|
+
- add Cloudwatch Alarm, as it's missing Metrics, Fixes \#401 [\#402](https://github.com/cfndsl/cfndsl/pull/402) ([gergnz](https://github.com/gergnz))
|
|
153
|
+
- 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))
|
|
154
|
+
|
|
155
|
+
## [v0.16.11](https://github.com/cfndsl/cfndsl/tree/v0.16.11) (2019-02-22)
|
|
156
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.10...v0.16.11)
|
|
157
|
+
|
|
158
|
+
**Closed issues:**
|
|
159
|
+
|
|
160
|
+
- cfndsl 0.16 EC2\_VPCEndpoint VpcEndpointType is VPCEndpointType in CloudFormation Specification [\#398](https://github.com/cfndsl/cfndsl/issues/398)
|
|
161
|
+
|
|
162
|
+
**Merged pull requests:**
|
|
163
|
+
|
|
164
|
+
- Add VPCEndpoint resource to address \#398 [\#399](https://github.com/cfndsl/cfndsl/pull/399) ([cfarrend](https://github.com/cfarrend))
|
|
165
|
+
- handle simple resource types [\#397](https://github.com/cfndsl/cfndsl/pull/397) ([gergnz](https://github.com/gergnz))
|
|
166
|
+
|
|
167
|
+
## [v0.16.10](https://github.com/cfndsl/cfndsl/tree/v0.16.10) (2019-02-13)
|
|
168
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.9...v0.16.10)
|
|
169
|
+
|
|
170
|
+
**Implemented enhancements:**
|
|
171
|
+
|
|
172
|
+
- offer option to 'lock' resource\_specification.json version - Fix for \#393 [\#395](https://github.com/cfndsl/cfndsl/pull/395) ([blofeldthefish](https://github.com/blofeldthefish))
|
|
173
|
+
|
|
174
|
+
**Closed issues:**
|
|
175
|
+
|
|
176
|
+
- confirm we are using gzip download of cloudfomration specification. [\#394](https://github.com/cfndsl/cfndsl/issues/394)
|
|
177
|
+
- support a version for cfndsl -u [\#393](https://github.com/cfndsl/cfndsl/issues/393)
|
|
178
|
+
- 'require': cannot load such file -- hana \(0.17.pre.5\) [\#387](https://github.com/cfndsl/cfndsl/issues/387)
|
|
179
|
+
|
|
180
|
+
**Merged pull requests:**
|
|
181
|
+
|
|
182
|
+
- implement json patch for patches and pull in patches from CDK [\#386](https://github.com/cfndsl/cfndsl/pull/386) ([gergnz](https://github.com/gergnz))
|
|
183
|
+
|
|
184
|
+
## [v0.16.9](https://github.com/cfndsl/cfndsl/tree/v0.16.9) (2018-12-07)
|
|
185
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.8...v0.16.9)
|
|
186
|
+
|
|
187
|
+
**Closed issues:**
|
|
188
|
+
|
|
189
|
+
- uninitialized constant CfnDsl::AWS::Types::Map [\#382](https://github.com/cfndsl/cfndsl/issues/382)
|
|
190
|
+
- Can't get -D option to work [\#360](https://github.com/cfndsl/cfndsl/issues/360)
|
|
191
|
+
- rubocop 0.50.0 errors [\#347](https://github.com/cfndsl/cfndsl/issues/347)
|
|
192
|
+
- CFN schema [\#264](https://github.com/cfndsl/cfndsl/issues/264)
|
|
193
|
+
|
|
194
|
+
**Merged pull requests:**
|
|
195
|
+
|
|
196
|
+
- fix \#382, add Map primitive type [\#383](https://github.com/cfndsl/cfndsl/pull/383) ([gergnz](https://github.com/gergnz))
|
|
197
|
+
|
|
198
|
+
## [v0.16.8](https://github.com/cfndsl/cfndsl/tree/v0.16.8) (2018-11-21)
|
|
199
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.7...v0.16.8)
|
|
200
|
+
|
|
201
|
+
**Merged pull requests:**
|
|
202
|
+
|
|
203
|
+
- add fix for 2.15.0, There is a pattern here... [\#379](https://github.com/cfndsl/cfndsl/pull/379) ([gergnz](https://github.com/gergnz))
|
|
204
|
+
|
|
205
|
+
## [v0.16.7](https://github.com/cfndsl/cfndsl/tree/v0.16.7) (2018-11-11)
|
|
206
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.6...v0.16.7)
|
|
207
|
+
|
|
208
|
+
**Closed issues:**
|
|
209
|
+
|
|
210
|
+
- Cloudformation Specification version 2.12.0 has missing types [\#377](https://github.com/cfndsl/cfndsl/issues/377)
|
|
211
|
+
- Value of property CreditSpecification must be an object [\#376](https://github.com/cfndsl/cfndsl/issues/376)
|
|
212
|
+
|
|
213
|
+
**Merged pull requests:**
|
|
214
|
+
|
|
215
|
+
- add missing types fixes \#377 [\#378](https://github.com/cfndsl/cfndsl/pull/378) ([gergnz](https://github.com/gergnz))
|
|
216
|
+
|
|
217
|
+
## [v0.16.6](https://github.com/cfndsl/cfndsl/tree/v0.16.6) (2018-05-30)
|
|
218
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.5...v0.16.6)
|
|
219
|
+
|
|
220
|
+
**Fixed bugs:**
|
|
221
|
+
|
|
222
|
+
- Array Issue for Nested Types [\#349](https://github.com/cfndsl/cfndsl/issues/349)
|
|
223
|
+
|
|
224
|
+
**Merged pull requests:**
|
|
225
|
+
|
|
226
|
+
- Array dupe [\#372](https://github.com/cfndsl/cfndsl/pull/372) ([johnf](https://github.com/johnf))
|
|
227
|
+
|
|
228
|
+
## [v0.16.5](https://github.com/cfndsl/cfndsl/tree/v0.16.5) (2018-04-16)
|
|
229
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.4...v0.16.5)
|
|
230
|
+
|
|
231
|
+
## [v0.16.4](https://github.com/cfndsl/cfndsl/tree/v0.16.4) (2018-04-16)
|
|
232
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.3...v0.16.4)
|
|
233
|
+
|
|
234
|
+
**Merged pull requests:**
|
|
235
|
+
|
|
236
|
+
- add a temporary fix for \#370 [\#371](https://github.com/cfndsl/cfndsl/pull/371) ([gergnz](https://github.com/gergnz))
|
|
237
|
+
- update SAM for latest details [\#366](https://github.com/cfndsl/cfndsl/pull/366) ([gergnz](https://github.com/gergnz))
|
|
238
|
+
|
|
239
|
+
## [v0.16.3](https://github.com/cfndsl/cfndsl/tree/v0.16.3) (2018-03-19)
|
|
240
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.2...v0.16.3)
|
|
5
241
|
|
|
6
242
|
**Closed issues:**
|
|
7
243
|
|
|
8
|
-
-
|
|
244
|
+
- Schedule Event Rule creates an invalid JSON on FnGetAtt Arn. [\#344](https://github.com/cfndsl/cfndsl/issues/344)
|
|
9
245
|
|
|
10
246
|
**Merged pull requests:**
|
|
11
247
|
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
248
|
+
- add Fn::Cidr [\#364](https://github.com/cfndsl/cfndsl/pull/364) ([gergnz](https://github.com/gergnz))
|
|
249
|
+
- fixes for rubocop [\#363](https://github.com/cfndsl/cfndsl/pull/363) ([gergnz](https://github.com/gergnz))
|
|
250
|
+
- 0.x changes to 1.0.0.pre [\#361](https://github.com/cfndsl/cfndsl/pull/361) ([gergnz](https://github.com/gergnz))
|
|
251
|
+
|
|
252
|
+
## [v0.16.2](https://github.com/cfndsl/cfndsl/tree/v0.16.2) (2017-12-07)
|
|
253
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.1...v0.16.2)
|
|
254
|
+
|
|
255
|
+
**Closed issues:**
|
|
256
|
+
|
|
257
|
+
- Code Deploy - missing settings [\#358](https://github.com/cfndsl/cfndsl/issues/358)
|
|
258
|
+
|
|
259
|
+
**Merged pull requests:**
|
|
260
|
+
|
|
261
|
+
- add option to print version. Fixes \#358 [\#359](https://github.com/cfndsl/cfndsl/pull/359) ([gergnz](https://github.com/gergnz))
|
|
262
|
+
|
|
263
|
+
## [v0.16.1](https://github.com/cfndsl/cfndsl/tree/v0.16.1) (2017-12-02)
|
|
264
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.16.0...v0.16.1)
|
|
265
|
+
|
|
266
|
+
**Merged pull requests:**
|
|
15
267
|
|
|
16
|
-
|
|
17
|
-
|
|
268
|
+
- 352 update contacts repos [\#355](https://github.com/cfndsl/cfndsl/pull/355) ([gergnz](https://github.com/gergnz))
|
|
269
|
+
|
|
270
|
+
## [v0.16.0](https://github.com/cfndsl/cfndsl/tree/v0.16.0) (2017-11-15)
|
|
271
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.3...v0.16.0)
|
|
272
|
+
|
|
273
|
+
**Fixed bugs:**
|
|
274
|
+
|
|
275
|
+
- Rubocop fixes [\#351](https://github.com/cfndsl/cfndsl/pull/351) ([kornypoet](https://github.com/kornypoet))
|
|
276
|
+
|
|
277
|
+
**Closed issues:**
|
|
278
|
+
|
|
279
|
+
- How to embed parameter into string? [\#341](https://github.com/cfndsl/cfndsl/issues/341)
|
|
280
|
+
|
|
281
|
+
**Merged pull requests:**
|
|
282
|
+
|
|
283
|
+
- cfndsl fix list type subproperties for LaunchSpecifications [\#353](https://github.com/cfndsl/cfndsl/pull/353) ([lwoggardner](https://github.com/lwoggardner))
|
|
284
|
+
- Update the embedded resource specification file to version 1.9.1 [\#346](https://github.com/cfndsl/cfndsl/pull/346) ([bobziuchkovski](https://github.com/bobziuchkovski))
|
|
285
|
+
|
|
286
|
+
## [v0.15.3](https://github.com/cfndsl/cfndsl/tree/v0.15.3) (2017-09-05)
|
|
287
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.2...v0.15.3)
|
|
18
288
|
|
|
19
289
|
**Implemented enhancements:**
|
|
20
290
|
|
|
21
|
-
-
|
|
291
|
+
- list cfndsl equivalents [\#336](https://github.com/cfndsl/cfndsl/issues/336)
|
|
22
292
|
|
|
23
293
|
**Closed issues:**
|
|
24
294
|
|
|
25
|
-
-
|
|
295
|
+
- backtrace shown when incorrect resource name is passed to -g [\#338](https://github.com/cfndsl/cfndsl/issues/338)
|
|
296
|
+
- Request to include support for AWS::Logs::SubscriptionFilter [\#335](https://github.com/cfndsl/cfndsl/issues/335)
|
|
297
|
+
- Support for Lambda backed custom resources with shorthand [\#315](https://github.com/cfndsl/cfndsl/issues/315)
|
|
298
|
+
- Merging cfnlego, cfn2dsl into cfndsl [\#272](https://github.com/cfndsl/cfndsl/issues/272)
|
|
26
299
|
|
|
27
300
|
**Merged pull requests:**
|
|
28
301
|
|
|
29
|
-
-
|
|
302
|
+
- Fix parameter parsing when its value contains equal symbol [\#340](https://github.com/cfndsl/cfndsl/pull/340) ([ans0600](https://github.com/ans0600))
|
|
30
303
|
|
|
31
|
-
## [v0.
|
|
32
|
-
[Full Changelog](https://github.com/
|
|
304
|
+
## [v0.15.2](https://github.com/cfndsl/cfndsl/tree/v0.15.2) (2017-06-20)
|
|
305
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.1...v0.15.2)
|
|
33
306
|
|
|
34
307
|
**Implemented enhancements:**
|
|
35
308
|
|
|
36
|
-
-
|
|
309
|
+
- YAML output format in RakeTask [\#300](https://github.com/cfndsl/cfndsl/issues/300)
|
|
310
|
+
|
|
311
|
+
**Merged pull requests:**
|
|
312
|
+
|
|
313
|
+
- add outformat for rake task [\#334](https://github.com/cfndsl/cfndsl/pull/334) ([gergnz](https://github.com/gergnz))
|
|
314
|
+
- merge ruby version fix into 1.0.0.pre branch [\#333](https://github.com/cfndsl/cfndsl/pull/333) ([gergnz](https://github.com/gergnz))
|
|
315
|
+
|
|
316
|
+
## [v0.15.1](https://github.com/cfndsl/cfndsl/tree/v0.15.1) (2017-06-19)
|
|
317
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.15.0...v0.15.1)
|
|
318
|
+
|
|
319
|
+
**Fixed bugs:**
|
|
320
|
+
|
|
321
|
+
- Ruby 2.1.0 is minimum required version, but we don't discuss this anywhere [\#331](https://github.com/cfndsl/cfndsl/issues/331)
|
|
322
|
+
- specify ruby v 2.1 as minimum [\#332](https://github.com/cfndsl/cfndsl/pull/332) ([gergnz](https://github.com/gergnz))
|
|
323
|
+
|
|
324
|
+
## [v0.15.0](https://github.com/cfndsl/cfndsl/tree/v0.15.0) (2017-06-18)
|
|
325
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.14.0...v0.15.0)
|
|
37
326
|
|
|
38
327
|
**Closed issues:**
|
|
39
328
|
|
|
40
|
-
-
|
|
41
|
-
- Please add InstanceProfileName property to InstanceProfile resource [\#317](https://github.com/stevenjack/cfndsl/issues/317)
|
|
329
|
+
- Please add support for multiple input files with deep merge [\#327](https://github.com/cfndsl/cfndsl/issues/327)
|
|
42
330
|
|
|
43
331
|
**Merged pull requests:**
|
|
44
332
|
|
|
45
|
-
-
|
|
333
|
+
- Clean up of README [\#330](https://github.com/cfndsl/cfndsl/pull/330) ([elmobp](https://github.com/elmobp))
|
|
334
|
+
- remove 'disable\_binding', merge 0.x changes [\#329](https://github.com/cfndsl/cfndsl/pull/329) ([gergnz](https://github.com/gergnz))
|
|
335
|
+
- enable deep merge as the default for yaml [\#328](https://github.com/cfndsl/cfndsl/pull/328) ([gergnz](https://github.com/gergnz))
|
|
336
|
+
|
|
337
|
+
## [v0.14.0](https://github.com/cfndsl/cfndsl/tree/v0.14.0) (2017-06-15)
|
|
338
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.13.1...v0.14.0)
|
|
46
339
|
|
|
47
|
-
|
|
48
|
-
|
|
340
|
+
**Implemented enhancements:**
|
|
341
|
+
|
|
342
|
+
- Adding support for auto generating cloudformation resources [\#326](https://github.com/cfndsl/cfndsl/pull/326) ([elmobp](https://github.com/elmobp))
|
|
49
343
|
|
|
50
344
|
**Closed issues:**
|
|
51
345
|
|
|
52
|
-
-
|
|
346
|
+
- Error reading specification file on 0.13.0 [\#322](https://github.com/cfndsl/cfndsl/issues/322)
|
|
53
347
|
|
|
54
348
|
**Merged pull requests:**
|
|
55
349
|
|
|
56
|
-
-
|
|
57
|
-
- Remove release\_url config from github changelog generator [\#316](https://github.com/stevenjack/cfndsl/pull/316) ([mikechau](https://github.com/mikechau))
|
|
58
|
-
- WIP: Aws schema [\#278](https://github.com/stevenjack/cfndsl/pull/278) ([kornypoet](https://github.com/kornypoet))
|
|
350
|
+
- Modernize cfndsl executable [\#319](https://github.com/cfndsl/cfndsl/pull/319) ([kornypoet](https://github.com/kornypoet))
|
|
59
351
|
|
|
60
|
-
## [v0.
|
|
61
|
-
[Full Changelog](https://github.com/
|
|
352
|
+
## [v0.13.1](https://github.com/cfndsl/cfndsl/tree/v0.13.1) (2017-05-17)
|
|
353
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.13.0...v0.13.1)
|
|
354
|
+
|
|
355
|
+
**Implemented enhancements:**
|
|
356
|
+
|
|
357
|
+
- Validate against schema used by eclipse plugin [\#49](https://github.com/cfndsl/cfndsl/issues/49)
|
|
358
|
+
|
|
359
|
+
**Closed issues:**
|
|
360
|
+
|
|
361
|
+
- Add support for AWS Kinesis Firehose [\#321](https://github.com/cfndsl/cfndsl/issues/321)
|
|
362
|
+
- Please add InstanceProfileName property to InstanceProfile resource [\#317](https://github.com/cfndsl/cfndsl/issues/317)
|
|
363
|
+
|
|
364
|
+
**Merged pull requests:**
|
|
365
|
+
|
|
366
|
+
- Fallback to included resource spec if not overridden [\#323](https://github.com/cfndsl/cfndsl/pull/323) ([kornypoet](https://github.com/kornypoet))
|
|
367
|
+
|
|
368
|
+
## [v0.13.0](https://github.com/cfndsl/cfndsl/tree/v0.13.0) (2017-05-17)
|
|
369
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.11...v0.13.0)
|
|
370
|
+
|
|
371
|
+
**Closed issues:**
|
|
372
|
+
|
|
373
|
+
- are there release notes somewhere? [\#299](https://github.com/cfndsl/cfndsl/issues/299)
|
|
374
|
+
|
|
375
|
+
**Merged pull requests:**
|
|
376
|
+
|
|
377
|
+
- Remove support for OpenStack Heat [\#318](https://github.com/cfndsl/cfndsl/pull/318) ([kornypoet](https://github.com/kornypoet))
|
|
378
|
+
- Remove release\_url config from github changelog generator [\#316](https://github.com/cfndsl/cfndsl/pull/316) ([mikechau](https://github.com/mikechau))
|
|
379
|
+
- WIP: Aws schema [\#278](https://github.com/cfndsl/cfndsl/pull/278) ([kornypoet](https://github.com/kornypoet))
|
|
380
|
+
|
|
381
|
+
## [v0.12.11](https://github.com/cfndsl/cfndsl/tree/v0.12.11) (2017-05-10)
|
|
382
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.10...v0.12.11)
|
|
62
383
|
|
|
63
384
|
**Merged pull requests:**
|
|
64
385
|
|
|
65
|
-
- Add generated changelog [\#314](https://github.com/
|
|
386
|
+
- Add generated changelog [\#314](https://github.com/cfndsl/cfndsl/pull/314) ([mikechau](https://github.com/mikechau))
|
|
66
387
|
|
|
67
|
-
## [v0.12.10](https://github.com/
|
|
68
|
-
[Full Changelog](https://github.com/
|
|
388
|
+
## [v0.12.10](https://github.com/cfndsl/cfndsl/tree/v0.12.10) (2017-05-10)
|
|
389
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.9...v0.12.10)
|
|
69
390
|
|
|
70
391
|
**Merged pull requests:**
|
|
71
392
|
|
|
72
|
-
- EC2::SecurityGroup: Add GroupName property [\#313](https://github.com/
|
|
393
|
+
- EC2::SecurityGroup: Add GroupName property [\#313](https://github.com/cfndsl/cfndsl/pull/313) ([mikechau](https://github.com/mikechau))
|
|
73
394
|
|
|
74
|
-
## [v0.12.9](https://github.com/
|
|
75
|
-
[Full Changelog](https://github.com/
|
|
395
|
+
## [v0.12.9](https://github.com/cfndsl/cfndsl/tree/v0.12.9) (2017-05-08)
|
|
396
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.8...v0.12.9)
|
|
76
397
|
|
|
77
398
|
**Merged pull requests:**
|
|
78
399
|
|
|
79
|
-
- Update AWS::CloudWatch::Alarm with 2 new properties [\#312](https://github.com/
|
|
400
|
+
- Update AWS::CloudWatch::Alarm with 2 new properties [\#312](https://github.com/cfndsl/cfndsl/pull/312) ([AnominousSign](https://github.com/AnominousSign))
|
|
80
401
|
|
|
81
|
-
## [v0.12.8](https://github.com/
|
|
82
|
-
[Full Changelog](https://github.com/
|
|
402
|
+
## [v0.12.8](https://github.com/cfndsl/cfndsl/tree/v0.12.8) (2017-05-03)
|
|
403
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.7...v0.12.8)
|
|
83
404
|
|
|
84
405
|
**Merged pull requests:**
|
|
85
406
|
|
|
86
|
-
- CloudFormation::Stack: Add Tags property [\#311](https://github.com/
|
|
87
|
-
- IAM Managed Policy: Add support for ManagedPolicyName property [\#310](https://github.com/
|
|
407
|
+
- CloudFormation::Stack: Add Tags property [\#311](https://github.com/cfndsl/cfndsl/pull/311) ([mikechau](https://github.com/mikechau))
|
|
408
|
+
- IAM Managed Policy: Add support for ManagedPolicyName property [\#310](https://github.com/cfndsl/cfndsl/pull/310) ([mikechau](https://github.com/mikechau))
|
|
88
409
|
|
|
89
|
-
## [v0.12.7](https://github.com/
|
|
90
|
-
[Full Changelog](https://github.com/
|
|
410
|
+
## [v0.12.7](https://github.com/cfndsl/cfndsl/tree/v0.12.7) (2017-04-23)
|
|
411
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.6...v0.12.7)
|
|
91
412
|
|
|
92
413
|
**Merged pull requests:**
|
|
93
414
|
|
|
94
|
-
- Add ssm param [\#307](https://github.com/
|
|
415
|
+
- Add ssm param [\#307](https://github.com/cfndsl/cfndsl/pull/307) ([elmobp](https://github.com/elmobp))
|
|
95
416
|
|
|
96
|
-
## [v0.12.6](https://github.com/
|
|
97
|
-
[Full Changelog](https://github.com/
|
|
417
|
+
## [v0.12.6](https://github.com/cfndsl/cfndsl/tree/v0.12.6) (2017-04-21)
|
|
418
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.5...v0.12.6)
|
|
98
419
|
|
|
99
420
|
**Fixed bugs:**
|
|
100
421
|
|
|
101
|
-
- AWS::SSM::Parameter support breaks cfndsl [\#308](https://github.com/
|
|
422
|
+
- AWS::SSM::Parameter support breaks cfndsl [\#308](https://github.com/cfndsl/cfndsl/issues/308)
|
|
102
423
|
|
|
103
424
|
**Merged pull requests:**
|
|
104
425
|
|
|
105
|
-
- add a globals class, and exclude reserverd words [\#309](https://github.com/
|
|
426
|
+
- add a globals class, and exclude reserverd words [\#309](https://github.com/cfndsl/cfndsl/pull/309) ([gergnz](https://github.com/gergnz))
|
|
106
427
|
|
|
107
|
-
## [v0.12.5](https://github.com/
|
|
108
|
-
[Full Changelog](https://github.com/
|
|
428
|
+
## [v0.12.5](https://github.com/cfndsl/cfndsl/tree/v0.12.5) (2017-04-10)
|
|
429
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.4...v0.12.5)
|
|
109
430
|
|
|
110
431
|
**Merged pull requests:**
|
|
111
432
|
|
|
112
|
-
- Rubocop best practice change for %w literal delimitation [\#306](https://github.com/
|
|
113
|
-
- Add Amazon EFS type \(Elastic File System\) [\#305](https://github.com/
|
|
433
|
+
- Rubocop best practice change for %w literal delimitation [\#306](https://github.com/cfndsl/cfndsl/pull/306) ([AnominousSign](https://github.com/AnominousSign))
|
|
434
|
+
- Add Amazon EFS type \(Elastic File System\) [\#305](https://github.com/cfndsl/cfndsl/pull/305) ([AnominousSign](https://github.com/AnominousSign))
|
|
114
435
|
|
|
115
|
-
## [v0.12.4](https://github.com/
|
|
116
|
-
[Full Changelog](https://github.com/
|
|
436
|
+
## [v0.12.4](https://github.com/cfndsl/cfndsl/tree/v0.12.4) (2017-03-29)
|
|
437
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.3...v0.12.4)
|
|
117
438
|
|
|
118
439
|
**Fixed bugs:**
|
|
119
440
|
|
|
120
|
-
- fixes for rubocop 0.48 [\#302](https://github.com/
|
|
441
|
+
- fixes for rubocop 0.48 [\#302](https://github.com/cfndsl/cfndsl/pull/302) ([gergnz](https://github.com/gergnz))
|
|
121
442
|
|
|
122
443
|
**Closed issues:**
|
|
123
444
|
|
|
124
|
-
- Weird output in content section if string given to content doesn't end in new line [\#298](https://github.com/
|
|
125
|
-
- rake aborted! Seahorse::Client::NetworkingError:execution expired [\#294](https://github.com/
|
|
445
|
+
- Weird output in content section if string given to content doesn't end in new line [\#298](https://github.com/cfndsl/cfndsl/issues/298)
|
|
446
|
+
- rake aborted! Seahorse::Client::NetworkingError:execution expired [\#294](https://github.com/cfndsl/cfndsl/issues/294)
|
|
126
447
|
|
|
127
448
|
**Merged pull requests:**
|
|
128
449
|
|
|
129
|
-
- Add SSM Support [\#301](https://github.com/
|
|
450
|
+
- Add SSM Support [\#301](https://github.com/cfndsl/cfndsl/pull/301) ([elmobp](https://github.com/elmobp))
|
|
130
451
|
|
|
131
|
-
## [v0.12.3](https://github.com/
|
|
132
|
-
[Full Changelog](https://github.com/
|
|
452
|
+
## [v0.12.3](https://github.com/cfndsl/cfndsl/tree/v0.12.3) (2017-03-12)
|
|
453
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.2...v0.12.3)
|
|
133
454
|
|
|
134
455
|
**Closed issues:**
|
|
135
456
|
|
|
136
|
-
- SQS Redrive policy - fix included. [\#295](https://github.com/
|
|
457
|
+
- SQS Redrive policy - fix included. [\#295](https://github.com/cfndsl/cfndsl/issues/295)
|
|
137
458
|
|
|
138
459
|
**Merged pull requests:**
|
|
139
460
|
|
|
140
|
-
- Fix RedrivePolicy attributes [\#297](https://github.com/
|
|
461
|
+
- Fix RedrivePolicy attributes [\#297](https://github.com/cfndsl/cfndsl/pull/297) ([devops-dude](https://github.com/devops-dude))
|
|
141
462
|
|
|
142
|
-
## [v0.12.2](https://github.com/
|
|
143
|
-
[Full Changelog](https://github.com/
|
|
463
|
+
## [v0.12.2](https://github.com/cfndsl/cfndsl/tree/v0.12.2) (2017-03-04)
|
|
464
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.1...v0.12.2)
|
|
144
465
|
|
|
145
466
|
**Closed issues:**
|
|
146
467
|
|
|
147
|
-
- Rolename is missing from Role [\#291](https://github.com/
|
|
468
|
+
- Rolename is missing from Role [\#291](https://github.com/cfndsl/cfndsl/issues/291)
|
|
148
469
|
|
|
149
470
|
**Merged pull requests:**
|
|
150
471
|
|
|
151
|
-
- add UserName property to IAM::User [\#293](https://github.com/
|
|
472
|
+
- add UserName property to IAM::User [\#293](https://github.com/cfndsl/cfndsl/pull/293) ([gergnz](https://github.com/gergnz))
|
|
152
473
|
|
|
153
|
-
## [v0.12.1](https://github.com/
|
|
154
|
-
[Full Changelog](https://github.com/
|
|
474
|
+
## [v0.12.1](https://github.com/cfndsl/cfndsl/tree/v0.12.1) (2017-02-21)
|
|
475
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.12.0...v0.12.1)
|
|
155
476
|
|
|
156
477
|
**Closed issues:**
|
|
157
478
|
|
|
158
|
-
- Support for Serverless Application Model [\#273](https://github.com/
|
|
479
|
+
- Support for Serverless Application Model [\#273](https://github.com/cfndsl/cfndsl/issues/273)
|
|
159
480
|
|
|
160
481
|
**Merged pull requests:**
|
|
161
482
|
|
|
162
|
-
- updating IAM::Role and S3::Bucket types [\#292](https://github.com/
|
|
483
|
+
- updating IAM::Role and S3::Bucket types [\#292](https://github.com/cfndsl/cfndsl/pull/292) ([kornypoet](https://github.com/kornypoet))
|
|
163
484
|
|
|
164
|
-
## [v0.12.0](https://github.com/
|
|
165
|
-
[Full Changelog](https://github.com/
|
|
485
|
+
## [v0.12.0](https://github.com/cfndsl/cfndsl/tree/v0.12.0) (2017-01-29)
|
|
486
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.12...v0.12.0)
|
|
166
487
|
|
|
167
488
|
**Merged pull requests:**
|
|
168
489
|
|
|
169
|
-
- Added Serverless::Function & API Transforms [\#290](https://github.com/
|
|
490
|
+
- Added Serverless::Function & API Transforms [\#290](https://github.com/cfndsl/cfndsl/pull/290) ([jonjitsu](https://github.com/jonjitsu))
|
|
170
491
|
|
|
171
|
-
## [v0.11.12](https://github.com/
|
|
172
|
-
[Full Changelog](https://github.com/
|
|
492
|
+
## [v0.11.12](https://github.com/cfndsl/cfndsl/tree/v0.11.12) (2017-01-20)
|
|
493
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.11...v0.11.12)
|
|
173
494
|
|
|
174
495
|
**Implemented enhancements:**
|
|
175
496
|
|
|
176
|
-
- Spot fleet support [\#282](https://github.com/
|
|
177
|
-
- add ipv6 to interfaces [\#284](https://github.com/
|
|
178
|
-
- Add support for spotfleet. Resolves \#282 [\#283](https://github.com/
|
|
497
|
+
- Spot fleet support [\#282](https://github.com/cfndsl/cfndsl/issues/282)
|
|
498
|
+
- add ipv6 to interfaces [\#284](https://github.com/cfndsl/cfndsl/pull/284) ([gergnz](https://github.com/gergnz))
|
|
499
|
+
- Add support for spotfleet. Resolves \#282 [\#283](https://github.com/cfndsl/cfndsl/pull/283) ([gergnz](https://github.com/gergnz))
|
|
179
500
|
|
|
180
501
|
**Closed issues:**
|
|
181
502
|
|
|
182
|
-
- Error setting variable with '.' [\#288](https://github.com/
|
|
183
|
-
- Error specifying an SSL certificate when using an ALB [\#287](https://github.com/
|
|
184
|
-
- Hyphen in external parameter key throws obscure error [\#286](https://github.com/
|
|
185
|
-
- Variable Number of Instances to a LoadBalancer [\#285](https://github.com/
|
|
186
|
-
- eval\_file\_with\_extras with ":raw" seems like it's trying to do two incompatible things [\#279](https://github.com/
|
|
503
|
+
- Error setting variable with '.' [\#288](https://github.com/cfndsl/cfndsl/issues/288)
|
|
504
|
+
- Error specifying an SSL certificate when using an ALB [\#287](https://github.com/cfndsl/cfndsl/issues/287)
|
|
505
|
+
- Hyphen in external parameter key throws obscure error [\#286](https://github.com/cfndsl/cfndsl/issues/286)
|
|
506
|
+
- Variable Number of Instances to a LoadBalancer [\#285](https://github.com/cfndsl/cfndsl/issues/285)
|
|
507
|
+
- eval\_file\_with\_extras with ":raw" seems like it's trying to do two incompatible things [\#279](https://github.com/cfndsl/cfndsl/issues/279)
|
|
187
508
|
|
|
188
509
|
**Merged pull requests:**
|
|
189
510
|
|
|
190
|
-
- Added support for Fn::Split intrinsic function. [\#289](https://github.com/
|
|
511
|
+
- Added support for Fn::Split intrinsic function. [\#289](https://github.com/cfndsl/cfndsl/pull/289) ([pablovarela](https://github.com/pablovarela))
|
|
191
512
|
|
|
192
|
-
## [v0.11.11](https://github.com/
|
|
193
|
-
[Full Changelog](https://github.com/
|
|
513
|
+
## [v0.11.11](https://github.com/cfndsl/cfndsl/tree/v0.11.11) (2016-12-04)
|
|
514
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.10...v0.11.11)
|
|
194
515
|
|
|
195
516
|
**Closed issues:**
|
|
196
517
|
|
|
197
|
-
- Support for environment variables in lambda functions [\#281](https://github.com/
|
|
518
|
+
- Support for environment variables in lambda functions [\#281](https://github.com/cfndsl/cfndsl/issues/281)
|
|
198
519
|
|
|
199
520
|
**Merged pull requests:**
|
|
200
521
|
|
|
201
|
-
- Add Environment as a property of Lambda::Function [\#280](https://github.com/
|
|
522
|
+
- Add Environment as a property of Lambda::Function [\#280](https://github.com/cfndsl/cfndsl/pull/280) ([holmesjr](https://github.com/holmesjr))
|
|
202
523
|
|
|
203
|
-
## [v0.11.10](https://github.com/
|
|
204
|
-
[Full Changelog](https://github.com/
|
|
524
|
+
## [v0.11.10](https://github.com/cfndsl/cfndsl/tree/v0.11.10) (2016-11-23)
|
|
525
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.9...v0.11.10)
|
|
205
526
|
|
|
206
527
|
**Closed issues:**
|
|
207
528
|
|
|
208
|
-
- ApplicationAutoScaling::ScalableTarget not supported. [\#270](https://github.com/
|
|
529
|
+
- ApplicationAutoScaling::ScalableTarget not supported. [\#270](https://github.com/cfndsl/cfndsl/issues/270)
|
|
209
530
|
|
|
210
531
|
**Merged pull requests:**
|
|
211
532
|
|
|
212
|
-
- Add Autoscaling NotificationConfiguration [\#275](https://github.com/
|
|
533
|
+
- Add Autoscaling NotificationConfiguration [\#275](https://github.com/cfndsl/cfndsl/pull/275) ([dbergamin](https://github.com/dbergamin))
|
|
213
534
|
|
|
214
|
-
## [v0.11.9](https://github.com/
|
|
215
|
-
[Full Changelog](https://github.com/
|
|
535
|
+
## [v0.11.9](https://github.com/cfndsl/cfndsl/tree/v0.11.9) (2016-11-18)
|
|
536
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.8...v0.11.9)
|
|
216
537
|
|
|
217
538
|
**Closed issues:**
|
|
218
539
|
|
|
219
|
-
- Metadata in CFN Launch Config [\#268](https://github.com/
|
|
540
|
+
- Metadata in CFN Launch Config [\#268](https://github.com/cfndsl/cfndsl/issues/268)
|
|
220
541
|
|
|
221
542
|
**Merged pull requests:**
|
|
222
543
|
|
|
223
|
-
- Application Autoscaling Types [\#271](https://github.com/
|
|
544
|
+
- Application Autoscaling Types [\#271](https://github.com/cfndsl/cfndsl/pull/271) ([kornypoet](https://github.com/kornypoet))
|
|
224
545
|
|
|
225
|
-
## [v0.11.8](https://github.com/
|
|
226
|
-
[Full Changelog](https://github.com/
|
|
546
|
+
## [v0.11.8](https://github.com/cfndsl/cfndsl/tree/v0.11.8) (2016-11-13)
|
|
547
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.6...v0.11.8)
|
|
227
548
|
|
|
228
549
|
**Closed issues:**
|
|
229
550
|
|
|
230
|
-
- Support for Export/Import values from stacks [\#260](https://github.com/
|
|
551
|
+
- Support for Export/Import values from stacks [\#260](https://github.com/cfndsl/cfndsl/issues/260)
|
|
231
552
|
|
|
232
553
|
**Merged pull requests:**
|
|
233
554
|
|
|
234
|
-
- Certificate manager type [\#267](https://github.com/
|
|
235
|
-
- Add monitoring properties to AWS::RDS::DBInstance [\#266](https://github.com/
|
|
236
|
-
- Add support for AWS::KMS::Alias [\#265](https://github.com/
|
|
555
|
+
- Certificate manager type [\#267](https://github.com/cfndsl/cfndsl/pull/267) ([kornypoet](https://github.com/kornypoet))
|
|
556
|
+
- Add monitoring properties to AWS::RDS::DBInstance [\#266](https://github.com/cfndsl/cfndsl/pull/266) ([mikechau](https://github.com/mikechau))
|
|
557
|
+
- Add support for AWS::KMS::Alias [\#265](https://github.com/cfndsl/cfndsl/pull/265) ([mikechau](https://github.com/mikechau))
|
|
237
558
|
|
|
238
|
-
## [v0.11.6](https://github.com/
|
|
239
|
-
[Full Changelog](https://github.com/
|
|
559
|
+
## [v0.11.6](https://github.com/cfndsl/cfndsl/tree/v0.11.6) (2016-10-23)
|
|
560
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.5...v0.11.6)
|
|
240
561
|
|
|
241
562
|
**Implemented enhancements:**
|
|
242
563
|
|
|
243
|
-
- Better test cases [\#16](https://github.com/
|
|
244
|
-
- Better documentation [\#15](https://github.com/
|
|
564
|
+
- Better test cases [\#16](https://github.com/cfndsl/cfndsl/issues/16)
|
|
565
|
+
- Better documentation [\#15](https://github.com/cfndsl/cfndsl/issues/15)
|
|
245
566
|
|
|
246
567
|
**Fixed bugs:**
|
|
247
568
|
|
|
248
|
-
- No need to enforce this cop: this is a DSL [\#263](https://github.com/
|
|
569
|
+
- No need to enforce this cop: this is a DSL [\#263](https://github.com/cfndsl/cfndsl/pull/263) ([kornypoet](https://github.com/kornypoet))
|
|
249
570
|
|
|
250
571
|
**Merged pull requests:**
|
|
251
572
|
|
|
252
|
-
- Add support for LogGroupName Property [\#262](https://github.com/
|
|
253
|
-
- Feature/add ecs task definition properties [\#261](https://github.com/
|
|
573
|
+
- Add support for LogGroupName Property [\#262](https://github.com/cfndsl/cfndsl/pull/262) ([mikechau](https://github.com/mikechau))
|
|
574
|
+
- Feature/add ecs task definition properties [\#261](https://github.com/cfndsl/cfndsl/pull/261) ([mikechau](https://github.com/mikechau))
|
|
254
575
|
|
|
255
|
-
## [v0.11.5](https://github.com/
|
|
256
|
-
[Full Changelog](https://github.com/
|
|
576
|
+
## [v0.11.5](https://github.com/cfndsl/cfndsl/tree/v0.11.5) (2016-10-05)
|
|
577
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.4...v0.11.5)
|
|
257
578
|
|
|
258
579
|
**Implemented enhancements:**
|
|
259
580
|
|
|
260
|
-
- Support new function "Sub" [\#241](https://github.com/
|
|
581
|
+
- Support new function "Sub" [\#241](https://github.com/cfndsl/cfndsl/issues/241)
|
|
261
582
|
|
|
262
583
|
**Merged pull requests:**
|
|
263
584
|
|
|
264
|
-
- create fnsub branch, resolves \#244 and \#241 [\#258](https://github.com/
|
|
585
|
+
- create fnsub branch, resolves \#244 and \#241 [\#258](https://github.com/cfndsl/cfndsl/pull/258) ([gergnz](https://github.com/gergnz))
|
|
265
586
|
|
|
266
|
-
## [v0.11.4](https://github.com/
|
|
267
|
-
[Full Changelog](https://github.com/
|
|
587
|
+
## [v0.11.4](https://github.com/cfndsl/cfndsl/tree/v0.11.4) (2016-10-05)
|
|
588
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.3...v0.11.4)
|
|
268
589
|
|
|
269
590
|
**Implemented enhancements:**
|
|
270
591
|
|
|
271
|
-
- Support Import and Export of values for cross stack referencing [\#242](https://github.com/
|
|
272
|
-
- Support yaml as an output type option [\#240](https://github.com/
|
|
592
|
+
- Support Import and Export of values for cross stack referencing [\#242](https://github.com/cfndsl/cfndsl/issues/242)
|
|
593
|
+
- Support yaml as an output type option [\#240](https://github.com/cfndsl/cfndsl/issues/240)
|
|
273
594
|
|
|
274
595
|
**Closed issues:**
|
|
275
596
|
|
|
276
|
-
- Support Cloudformation's new YAML format. [\#254](https://github.com/
|
|
277
|
-
- Uninitialized constant CfnDsl::VERSION \(NameError\) [\#246](https://github.com/
|
|
597
|
+
- Support Cloudformation's new YAML format. [\#254](https://github.com/cfndsl/cfndsl/issues/254)
|
|
598
|
+
- Uninitialized constant CfnDsl::VERSION \(NameError\) [\#246](https://github.com/cfndsl/cfndsl/issues/246)
|
|
278
599
|
|
|
279
600
|
**Merged pull requests:**
|
|
280
601
|
|
|
281
|
-
- Add ECS ClusterName property to ECS Cluster type. [\#256](https://github.com/
|
|
282
|
-
- Update README.md [\#253](https://github.com/
|
|
283
|
-
- Function spec examples [\#251](https://github.com/
|
|
284
|
-
- Initial support for Cross stack references [\#249](https://github.com/
|
|
285
|
-
- This supports yaml as an output type and leaves json as the default [\#243](https://github.com/
|
|
602
|
+
- Add ECS ClusterName property to ECS Cluster type. [\#256](https://github.com/cfndsl/cfndsl/pull/256) ([pvdvreede](https://github.com/pvdvreede))
|
|
603
|
+
- Update README.md [\#253](https://github.com/cfndsl/cfndsl/pull/253) ([herebebogans](https://github.com/herebebogans))
|
|
604
|
+
- Function spec examples [\#251](https://github.com/cfndsl/cfndsl/pull/251) ([kornypoet](https://github.com/kornypoet))
|
|
605
|
+
- Initial support for Cross stack references [\#249](https://github.com/cfndsl/cfndsl/pull/249) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
606
|
+
- 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))
|
|
286
607
|
|
|
287
|
-
## [v0.11.3](https://github.com/
|
|
288
|
-
[Full Changelog](https://github.com/
|
|
608
|
+
## [v0.11.3](https://github.com/cfndsl/cfndsl/tree/v0.11.3) (2016-09-20)
|
|
609
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.2...v0.11.3)
|
|
289
610
|
|
|
290
611
|
**Merged pull requests:**
|
|
291
612
|
|
|
292
|
-
- require cfndsl/version to prevent executable load errors [\#247](https://github.com/
|
|
293
|
-
- Add elastic search version [\#245](https://github.com/
|
|
294
|
-
- Fix for updated rubocop \(v 0.43.0\) [\#239](https://github.com/
|
|
295
|
-
- Update conditions.rb [\#238](https://github.com/
|
|
613
|
+
- require cfndsl/version to prevent executable load errors [\#247](https://github.com/cfndsl/cfndsl/pull/247) ([kornypoet](https://github.com/kornypoet))
|
|
614
|
+
- Add elastic search version [\#245](https://github.com/cfndsl/cfndsl/pull/245) ([ans0600](https://github.com/ans0600))
|
|
615
|
+
- Fix for updated rubocop \(v 0.43.0\) [\#239](https://github.com/cfndsl/cfndsl/pull/239) ([gergnz](https://github.com/gergnz))
|
|
616
|
+
- Update conditions.rb [\#238](https://github.com/cfndsl/cfndsl/pull/238) ([herebebogans](https://github.com/herebebogans))
|
|
296
617
|
|
|
297
|
-
## [v0.11.2](https://github.com/
|
|
298
|
-
[Full Changelog](https://github.com/
|
|
618
|
+
## [v0.11.2](https://github.com/cfndsl/cfndsl/tree/v0.11.2) (2016-09-19)
|
|
619
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.1...v0.11.2)
|
|
299
620
|
|
|
300
621
|
**Implemented enhancements:**
|
|
301
622
|
|
|
302
|
-
- `FnNot` could be improved to not require array as the argument... [\#235](https://github.com/
|
|
303
|
-
- Provide support for AWS::CloudFormation::CustomResource [\#18](https://github.com/
|
|
304
|
-
- A couple of little things that were annoying me. [\#237](https://github.com/
|
|
305
|
-
- Improve FnNot method to not require ruby array. Fixes \#235 [\#236](https://github.com/
|
|
623
|
+
- `FnNot` could be improved to not require array as the argument... [\#235](https://github.com/cfndsl/cfndsl/issues/235)
|
|
624
|
+
- Provide support for AWS::CloudFormation::CustomResource [\#18](https://github.com/cfndsl/cfndsl/issues/18)
|
|
625
|
+
- A couple of little things that were annoying me. [\#237](https://github.com/cfndsl/cfndsl/pull/237) ([gergnz](https://github.com/gergnz))
|
|
626
|
+
- Improve FnNot method to not require ruby array. Fixes \#235 [\#236](https://github.com/cfndsl/cfndsl/pull/236) ([gergnz](https://github.com/gergnz))
|
|
306
627
|
|
|
307
628
|
**Closed issues:**
|
|
308
629
|
|
|
309
|
-
- DSL to JSON mapping not working [\#230](https://github.com/
|
|
310
|
-
- undefined method `LoadBalancer' [\#229](https://github.com/
|
|
630
|
+
- DSL to JSON mapping not working [\#230](https://github.com/cfndsl/cfndsl/issues/230)
|
|
631
|
+
- undefined method `LoadBalancer' [\#229](https://github.com/cfndsl/cfndsl/issues/229)
|
|
311
632
|
|
|
312
633
|
**Merged pull requests:**
|
|
313
634
|
|
|
314
|
-
- Add AccessLoggingPolicy to ELB [\#233](https://github.com/
|
|
635
|
+
- Add AccessLoggingPolicy to ELB [\#233](https://github.com/cfndsl/cfndsl/pull/233) ([gergnz](https://github.com/gergnz))
|
|
315
636
|
|
|
316
|
-
## [v0.11.1](https://github.com/
|
|
317
|
-
[Full Changelog](https://github.com/
|
|
637
|
+
## [v0.11.1](https://github.com/cfndsl/cfndsl/tree/v0.11.1) (2016-09-05)
|
|
638
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.11.0...v0.11.1)
|
|
318
639
|
|
|
319
640
|
**Closed issues:**
|
|
320
641
|
|
|
321
|
-
- 0.11.0 removal of metadata has caused regression in existing templates [\#227](https://github.com/
|
|
642
|
+
- 0.11.0 removal of metadata has caused regression in existing templates [\#227](https://github.com/cfndsl/cfndsl/issues/227)
|
|
322
643
|
|
|
323
644
|
**Merged pull requests:**
|
|
324
645
|
|
|
325
|
-
- Add Kinesis Stream to AWS types [\#228](https://github.com/
|
|
326
|
-
- standardise EC2Tag with ResourceTag [\#225](https://github.com/
|
|
327
|
-
- Simplecov [\#224](https://github.com/
|
|
646
|
+
- Add Kinesis Stream to AWS types [\#228](https://github.com/cfndsl/cfndsl/pull/228) ([holmesjr](https://github.com/holmesjr))
|
|
647
|
+
- standardise EC2Tag with ResourceTag [\#225](https://github.com/cfndsl/cfndsl/pull/225) ([gergnz](https://github.com/gergnz))
|
|
648
|
+
- Simplecov [\#224](https://github.com/cfndsl/cfndsl/pull/224) ([kornypoet](https://github.com/kornypoet))
|
|
328
649
|
|
|
329
|
-
## [v0.11.0](https://github.com/
|
|
330
|
-
[Full Changelog](https://github.com/
|
|
650
|
+
## [v0.11.0](https://github.com/cfndsl/cfndsl/tree/v0.11.0) (2016-08-25)
|
|
651
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.10.2...v0.11.0)
|
|
331
652
|
|
|
332
653
|
**Implemented enhancements:**
|
|
333
654
|
|
|
334
|
-
- Orchestration template spec [\#213](https://github.com/
|
|
335
|
-
- Top Level Metadata [\#209](https://github.com/
|
|
655
|
+
- Orchestration template spec [\#213](https://github.com/cfndsl/cfndsl/pull/213) ([kornypoet](https://github.com/kornypoet))
|
|
656
|
+
- Top Level Metadata [\#209](https://github.com/cfndsl/cfndsl/pull/209) ([kornypoet](https://github.com/kornypoet))
|
|
336
657
|
|
|
337
|
-
## [v0.10.2](https://github.com/
|
|
338
|
-
[Full Changelog](https://github.com/
|
|
658
|
+
## [v0.10.2](https://github.com/cfndsl/cfndsl/tree/v0.10.2) (2016-08-25)
|
|
659
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.10.1...v0.10.2)
|
|
339
660
|
|
|
340
661
|
**Merged pull requests:**
|
|
341
662
|
|
|
342
|
-
- Add SsmAssociations to EC2 Instance resource. [\#223](https://github.com/
|
|
663
|
+
- Add SsmAssociations to EC2 Instance resource. [\#223](https://github.com/cfndsl/cfndsl/pull/223) ([pvdvreede](https://github.com/pvdvreede))
|
|
343
664
|
|
|
344
|
-
## [v0.10.1](https://github.com/
|
|
345
|
-
[Full Changelog](https://github.com/
|
|
665
|
+
## [v0.10.1](https://github.com/cfndsl/cfndsl/tree/v0.10.1) (2016-08-24)
|
|
666
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.10.0...v0.10.1)
|
|
346
667
|
|
|
347
668
|
**Merged pull requests:**
|
|
348
669
|
|
|
349
|
-
- adding elasticache tags [\#216](https://github.com/
|
|
670
|
+
- adding elasticache tags [\#216](https://github.com/cfndsl/cfndsl/pull/216) ([jstenhouse](https://github.com/jstenhouse))
|
|
350
671
|
|
|
351
|
-
## [v0.10.0](https://github.com/
|
|
352
|
-
[Full Changelog](https://github.com/
|
|
672
|
+
## [v0.10.0](https://github.com/cfndsl/cfndsl/tree/v0.10.0) (2016-08-22)
|
|
673
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.5...v0.10.0)
|
|
353
674
|
|
|
354
675
|
**Merged pull requests:**
|
|
355
676
|
|
|
356
|
-
- remove method missing handlers [\#221](https://github.com/
|
|
357
|
-
- adding support for new application load balancers - AWS::ElasticLoadB… [\#220](https://github.com/
|
|
358
|
-
- Add GroupName property to IAM Group resource [\#219](https://github.com/
|
|
359
|
-
- Add KmsKeyId to the Redshift function. [\#217](https://github.com/
|
|
360
|
-
- Add EC2::FlowLog [\#215](https://github.com/
|
|
677
|
+
- remove method missing handlers [\#221](https://github.com/cfndsl/cfndsl/pull/221) ([kornypoet](https://github.com/kornypoet))
|
|
678
|
+
- adding support for new application load balancers - AWS::ElasticLoadB… [\#220](https://github.com/cfndsl/cfndsl/pull/220) ([jstenhouse](https://github.com/jstenhouse))
|
|
679
|
+
- Add GroupName property to IAM Group resource [\#219](https://github.com/cfndsl/cfndsl/pull/219) ([ampedandwired](https://github.com/ampedandwired))
|
|
680
|
+
- Add KmsKeyId to the Redshift function. [\#217](https://github.com/cfndsl/cfndsl/pull/217) ([holmesjr](https://github.com/holmesjr))
|
|
681
|
+
- Add EC2::FlowLog [\#215](https://github.com/cfndsl/cfndsl/pull/215) ([webdevwilson](https://github.com/webdevwilson))
|
|
361
682
|
|
|
362
|
-
## [v0.9.5](https://github.com/
|
|
363
|
-
[Full Changelog](https://github.com/
|
|
683
|
+
## [v0.9.5](https://github.com/cfndsl/cfndsl/tree/v0.9.5) (2016-07-26)
|
|
684
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.4...v0.9.5)
|
|
364
685
|
|
|
365
686
|
**Implemented enhancements:**
|
|
366
687
|
|
|
367
|
-
- Plurals spec [\#212](https://github.com/
|
|
688
|
+
- Plurals spec [\#212](https://github.com/cfndsl/cfndsl/pull/212) ([kornypoet](https://github.com/kornypoet))
|
|
368
689
|
|
|
369
|
-
## [v0.9.4](https://github.com/
|
|
370
|
-
[Full Changelog](https://github.com/
|
|
690
|
+
## [v0.9.4](https://github.com/cfndsl/cfndsl/tree/v0.9.4) (2016-07-26)
|
|
691
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.3...v0.9.4)
|
|
371
692
|
|
|
372
693
|
**Implemented enhancements:**
|
|
373
694
|
|
|
374
|
-
- Names spec [\#211](https://github.com/
|
|
695
|
+
- Names spec [\#211](https://github.com/cfndsl/cfndsl/pull/211) ([kornypoet](https://github.com/kornypoet))
|
|
375
696
|
|
|
376
|
-
## [v0.9.3](https://github.com/
|
|
377
|
-
[Full Changelog](https://github.com/
|
|
697
|
+
## [v0.9.3](https://github.com/cfndsl/cfndsl/tree/v0.9.3) (2016-07-26)
|
|
698
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.2...v0.9.3)
|
|
378
699
|
|
|
379
700
|
**Merged pull requests:**
|
|
380
701
|
|
|
381
|
-
- AWS::WAF Type [\#208](https://github.com/
|
|
702
|
+
- AWS::WAF Type [\#208](https://github.com/cfndsl/cfndsl/pull/208) ([kornypoet](https://github.com/kornypoet))
|
|
382
703
|
|
|
383
|
-
## [v0.9.2](https://github.com/
|
|
384
|
-
[Full Changelog](https://github.com/
|
|
704
|
+
## [v0.9.2](https://github.com/cfndsl/cfndsl/tree/v0.9.2) (2016-07-06)
|
|
705
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.1...v0.9.2)
|
|
385
706
|
|
|
386
707
|
**Fixed bugs:**
|
|
387
708
|
|
|
388
|
-
- Cfndsl206 apigateway resource [\#207](https://github.com/
|
|
709
|
+
- Cfndsl206 apigateway resource [\#207](https://github.com/cfndsl/cfndsl/pull/207) ([gergnz](https://github.com/gergnz))
|
|
389
710
|
|
|
390
|
-
## [v0.9.1](https://github.com/
|
|
391
|
-
[Full Changelog](https://github.com/
|
|
711
|
+
## [v0.9.1](https://github.com/cfndsl/cfndsl/tree/v0.9.1) (2016-06-22)
|
|
712
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.9.0...v0.9.1)
|
|
392
713
|
|
|
393
714
|
**Implemented enhancements:**
|
|
394
715
|
|
|
395
|
-
- Remove List context for VpcSettings Datatype [\#204](https://github.com/
|
|
396
|
-
- Add Boolean for UseOpsworksSecurityGroups [\#203](https://github.com/
|
|
397
|
-
- Add RDS Event Subscription cloudformation resource. [\#202](https://github.com/
|
|
716
|
+
- Remove List context for VpcSettings Datatype [\#204](https://github.com/cfndsl/cfndsl/pull/204) ([herebebogans](https://github.com/herebebogans))
|
|
717
|
+
- Add Boolean for UseOpsworksSecurityGroups [\#203](https://github.com/cfndsl/cfndsl/pull/203) ([matthewrkrieger](https://github.com/matthewrkrieger))
|
|
718
|
+
- Add RDS Event Subscription cloudformation resource. [\#202](https://github.com/cfndsl/cfndsl/pull/202) ([pvdvreede](https://github.com/pvdvreede))
|
|
398
719
|
|
|
399
720
|
**Merged pull requests:**
|
|
400
721
|
|
|
401
|
-
- Api gateway [\#201](https://github.com/
|
|
722
|
+
- Api gateway [\#201](https://github.com/cfndsl/cfndsl/pull/201) ([webdevwilson](https://github.com/webdevwilson))
|
|
402
723
|
|
|
403
|
-
## [v0.9.0](https://github.com/
|
|
404
|
-
[Full Changelog](https://github.com/
|
|
724
|
+
## [v0.9.0](https://github.com/cfndsl/cfndsl/tree/v0.9.0) (2016-06-22)
|
|
725
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.9...v0.9.0)
|
|
405
726
|
|
|
406
727
|
**Implemented enhancements:**
|
|
407
728
|
|
|
408
|
-
- Exparams class methods [\#187](https://github.com/
|
|
729
|
+
- Exparams class methods [\#187](https://github.com/cfndsl/cfndsl/pull/187) ([kornypoet](https://github.com/kornypoet))
|
|
409
730
|
|
|
410
|
-
## [v0.8.9](https://github.com/
|
|
411
|
-
[Full Changelog](https://github.com/
|
|
731
|
+
## [v0.8.9](https://github.com/cfndsl/cfndsl/tree/v0.8.9) (2016-06-02)
|
|
732
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.8...v0.8.9)
|
|
412
733
|
|
|
413
734
|
**Merged pull requests:**
|
|
414
735
|
|
|
415
|
-
- Add Tags attribute to ELB [\#200](https://github.com/
|
|
736
|
+
- Add Tags attribute to ELB [\#200](https://github.com/cfndsl/cfndsl/pull/200) ([webdevwilson](https://github.com/webdevwilson))
|
|
416
737
|
|
|
417
|
-
## [v0.8.8](https://github.com/
|
|
418
|
-
[Full Changelog](https://github.com/
|
|
738
|
+
## [v0.8.8](https://github.com/cfndsl/cfndsl/tree/v0.8.8) (2016-06-02)
|
|
739
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.7...v0.8.8)
|
|
419
740
|
|
|
420
741
|
**Merged pull requests:**
|
|
421
742
|
|
|
422
|
-
- Add AWS RDS Option Group to types. [\#198](https://github.com/
|
|
743
|
+
- Add AWS RDS Option Group to types. [\#198](https://github.com/cfndsl/cfndsl/pull/198) ([pvdvreede](https://github.com/pvdvreede))
|
|
423
744
|
|
|
424
|
-
## [v0.8.7](https://github.com/
|
|
425
|
-
[Full Changelog](https://github.com/
|
|
745
|
+
## [v0.8.7](https://github.com/cfndsl/cfndsl/tree/v0.8.7) (2016-06-02)
|
|
746
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.6...v0.8.7)
|
|
426
747
|
|
|
427
748
|
**Implemented enhancements:**
|
|
428
749
|
|
|
429
|
-
- Rubocop 0.40 Fixes [\#195](https://github.com/
|
|
430
|
-
- Update types.yaml - fixed tenancey typo [\#194](https://github.com/
|
|
750
|
+
- Rubocop 0.40 Fixes [\#195](https://github.com/cfndsl/cfndsl/pull/195) ([gergnz](https://github.com/gergnz))
|
|
751
|
+
- Update types.yaml - fixed tenancey typo [\#194](https://github.com/cfndsl/cfndsl/pull/194) ([johnhyland](https://github.com/johnhyland))
|
|
431
752
|
|
|
432
|
-
## [v0.8.6](https://github.com/
|
|
433
|
-
[Full Changelog](https://github.com/
|
|
753
|
+
## [v0.8.6](https://github.com/cfndsl/cfndsl/tree/v0.8.6) (2016-05-05)
|
|
754
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.5...v0.8.6)
|
|
434
755
|
|
|
435
756
|
**Implemented enhancements:**
|
|
436
757
|
|
|
437
|
-
- Add yamlllint to Gemfile and add a rake task to lint all yaml files. [\#191](https://github.com/
|
|
758
|
+
- Add yamlllint to Gemfile and add a rake task to lint all yaml files. [\#191](https://github.com/cfndsl/cfndsl/pull/191) ([gergnz](https://github.com/gergnz))
|
|
438
759
|
|
|
439
760
|
**Merged pull requests:**
|
|
440
761
|
|
|
441
|
-
- Adding MicrosoftAD to AWS types. [\#193](https://github.com/
|
|
762
|
+
- Adding MicrosoftAD to AWS types. [\#193](https://github.com/cfndsl/cfndsl/pull/193) ([pvdvreede](https://github.com/pvdvreede))
|
|
442
763
|
|
|
443
|
-
## [v0.8.5](https://github.com/
|
|
444
|
-
[Full Changelog](https://github.com/
|
|
764
|
+
## [v0.8.5](https://github.com/cfndsl/cfndsl/tree/v0.8.5) (2016-05-04)
|
|
765
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.4...v0.8.5)
|
|
445
766
|
|
|
446
767
|
**Implemented enhancements:**
|
|
447
768
|
|
|
448
|
-
- Build stacks by including other ruby files [\#152](https://github.com/
|
|
449
|
-
- Osduplicatekey [\#192](https://github.com/
|
|
769
|
+
- Build stacks by including other ruby files [\#152](https://github.com/cfndsl/cfndsl/issues/152)
|
|
770
|
+
- Osduplicatekey [\#192](https://github.com/cfndsl/cfndsl/pull/192) ([gergnz](https://github.com/gergnz))
|
|
450
771
|
|
|
451
772
|
**Merged pull requests:**
|
|
452
773
|
|
|
453
|
-
- Add cloudwatch events type [\#189](https://github.com/
|
|
774
|
+
- Add cloudwatch events type [\#189](https://github.com/cfndsl/cfndsl/pull/189) ([gergnz](https://github.com/gergnz))
|
|
454
775
|
|
|
455
|
-
## [v0.8.4](https://github.com/
|
|
456
|
-
[Full Changelog](https://github.com/
|
|
776
|
+
## [v0.8.4](https://github.com/cfndsl/cfndsl/tree/v0.8.4) (2016-05-03)
|
|
777
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.3...v0.8.4)
|
|
457
778
|
|
|
458
779
|
**Merged pull requests:**
|
|
459
780
|
|
|
460
|
-
- remove duplicate nat g/w definition [\#190](https://github.com/
|
|
781
|
+
- remove duplicate nat g/w definition [\#190](https://github.com/cfndsl/cfndsl/pull/190) ([gergnz](https://github.com/gergnz))
|
|
461
782
|
|
|
462
|
-
## [v0.8.3](https://github.com/
|
|
463
|
-
[Full Changelog](https://github.com/
|
|
783
|
+
## [v0.8.3](https://github.com/cfndsl/cfndsl/tree/v0.8.3) (2016-04-27)
|
|
784
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.2...v0.8.3)
|
|
464
785
|
|
|
465
786
|
**Fixed bugs:**
|
|
466
787
|
|
|
467
|
-
- Add tag arguments [\#188](https://github.com/
|
|
788
|
+
- Add tag arguments [\#188](https://github.com/cfndsl/cfndsl/pull/188) ([kornypoet](https://github.com/kornypoet))
|
|
468
789
|
|
|
469
|
-
## [v0.8.2](https://github.com/
|
|
470
|
-
[Full Changelog](https://github.com/
|
|
790
|
+
## [v0.8.2](https://github.com/cfndsl/cfndsl/tree/v0.8.2) (2016-04-27)
|
|
791
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.1...v0.8.2)
|
|
471
792
|
|
|
472
793
|
**Merged pull requests:**
|
|
473
794
|
|
|
474
|
-
- Updated OpsWorks\_Stack to include ChefConfiguration [\#186](https://github.com/
|
|
795
|
+
- Updated OpsWorks\_Stack to include ChefConfiguration [\#186](https://github.com/cfndsl/cfndsl/pull/186) ([webdevwilson](https://github.com/webdevwilson))
|
|
475
796
|
|
|
476
|
-
## [v0.8.1](https://github.com/
|
|
477
|
-
[Full Changelog](https://github.com/
|
|
797
|
+
## [v0.8.1](https://github.com/cfndsl/cfndsl/tree/v0.8.1) (2016-04-27)
|
|
798
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.8.0...v0.8.1)
|
|
478
799
|
|
|
479
800
|
**Merged pull requests:**
|
|
480
801
|
|
|
481
|
-
- Add in Route53 Health Check Tags as a type [\#185](https://github.com/
|
|
802
|
+
- Add in Route53 Health Check Tags as a type [\#185](https://github.com/cfndsl/cfndsl/pull/185) ([gergnz](https://github.com/gergnz))
|
|
482
803
|
|
|
483
|
-
## [v0.8.0](https://github.com/
|
|
484
|
-
[Full Changelog](https://github.com/
|
|
804
|
+
## [v0.8.0](https://github.com/cfndsl/cfndsl/tree/v0.8.0) (2016-04-27)
|
|
805
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.7.0...v0.8.0)
|
|
485
806
|
|
|
486
807
|
**Implemented enhancements:**
|
|
487
808
|
|
|
488
|
-
- Use as\_json instead of to\_json [\#157](https://github.com/
|
|
809
|
+
- Use as\_json instead of to\_json [\#157](https://github.com/cfndsl/cfndsl/pull/157) ([johnf](https://github.com/johnf))
|
|
489
810
|
|
|
490
811
|
**Fixed bugs:**
|
|
491
812
|
|
|
492
|
-
- Use as\\_json instead of to\\_json [\#157](https://github.com/
|
|
813
|
+
- Use as\\_json instead of to\\_json [\#157](https://github.com/cfndsl/cfndsl/pull/157) ([johnf](https://github.com/johnf))
|
|
493
814
|
|
|
494
|
-
## [v0.7.0](https://github.com/
|
|
495
|
-
[Full Changelog](https://github.com/
|
|
815
|
+
## [v0.7.0](https://github.com/cfndsl/cfndsl/tree/v0.7.0) (2016-04-27)
|
|
816
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.6.2...v0.7.0)
|
|
496
817
|
|
|
497
818
|
**Implemented enhancements:**
|
|
498
819
|
|
|
499
|
-
- Fix the issue with plural types [\#153](https://github.com/
|
|
820
|
+
- Fix the issue with plural types [\#153](https://github.com/cfndsl/cfndsl/pull/153) ([johnf](https://github.com/johnf))
|
|
500
821
|
|
|
501
822
|
**Fixed bugs:**
|
|
502
823
|
|
|
503
|
-
- Fix the issue with plural types [\#153](https://github.com/
|
|
824
|
+
- Fix the issue with plural types [\#153](https://github.com/cfndsl/cfndsl/pull/153) ([johnf](https://github.com/johnf))
|
|
504
825
|
|
|
505
|
-
## [v0.6.2](https://github.com/
|
|
506
|
-
[Full Changelog](https://github.com/
|
|
826
|
+
## [v0.6.2](https://github.com/cfndsl/cfndsl/tree/v0.6.2) (2016-04-19)
|
|
827
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.6.1...v0.6.2)
|
|
507
828
|
|
|
508
829
|
**Implemented enhancements:**
|
|
509
830
|
|
|
510
|
-
- Fix for \#181 - deprecation warning [\#182](https://github.com/
|
|
831
|
+
- Fix for \#181 - deprecation warning [\#182](https://github.com/cfndsl/cfndsl/pull/182) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
511
832
|
|
|
512
833
|
**Fixed bugs:**
|
|
513
834
|
|
|
514
|
-
- Fix for \\#181 - deprecation warning [\#182](https://github.com/
|
|
835
|
+
- Fix for \\#181 - deprecation warning [\#182](https://github.com/cfndsl/cfndsl/pull/182) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
515
836
|
|
|
516
837
|
**Closed issues:**
|
|
517
838
|
|
|
518
|
-
- Deprecation warning with rake 11.1.2 [\#181](https://github.com/
|
|
839
|
+
- Deprecation warning with rake 11.1.2 [\#181](https://github.com/cfndsl/cfndsl/issues/181)
|
|
519
840
|
|
|
520
|
-
## [v0.6.1](https://github.com/
|
|
521
|
-
[Full Changelog](https://github.com/
|
|
841
|
+
## [v0.6.1](https://github.com/cfndsl/cfndsl/tree/v0.6.1) (2016-04-18)
|
|
842
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.6.0...v0.6.1)
|
|
522
843
|
|
|
523
844
|
**Implemented enhancements:**
|
|
524
845
|
|
|
525
|
-
- External Parameters [\#170](https://github.com/
|
|
846
|
+
- External Parameters [\#170](https://github.com/cfndsl/cfndsl/issues/170)
|
|
526
847
|
|
|
527
848
|
**Merged pull requests:**
|
|
528
849
|
|
|
529
|
-
- Update types.yaml [\#180](https://github.com/
|
|
850
|
+
- Update types.yaml [\#180](https://github.com/cfndsl/cfndsl/pull/180) ([herebebogans](https://github.com/herebebogans))
|
|
530
851
|
|
|
531
|
-
## [v0.6.0](https://github.com/
|
|
532
|
-
[Full Changelog](https://github.com/
|
|
852
|
+
## [v0.6.0](https://github.com/cfndsl/cfndsl/tree/v0.6.0) (2016-04-18)
|
|
853
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.5.2...v0.6.0)
|
|
533
854
|
|
|
534
855
|
**Implemented enhancements:**
|
|
535
856
|
|
|
536
|
-
- External params [\#179](https://github.com/
|
|
857
|
+
- External params [\#179](https://github.com/cfndsl/cfndsl/pull/179) ([kornypoet](https://github.com/kornypoet))
|
|
537
858
|
|
|
538
|
-
## [v0.5.2](https://github.com/
|
|
539
|
-
[Full Changelog](https://github.com/
|
|
859
|
+
## [v0.5.2](https://github.com/cfndsl/cfndsl/tree/v0.5.2) (2016-04-15)
|
|
860
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.5.1...v0.5.2)
|
|
540
861
|
|
|
541
862
|
**Fixed bugs:**
|
|
542
863
|
|
|
543
|
-
- 5.0 release breaks addTag [\#175](https://github.com/
|
|
544
|
-
- Remove erroneous logstream output [\#178](https://github.com/
|
|
864
|
+
- 5.0 release breaks addTag [\#175](https://github.com/cfndsl/cfndsl/issues/175)
|
|
865
|
+
- Remove erroneous logstream output [\#178](https://github.com/cfndsl/cfndsl/pull/178) ([stevenjack](https://github.com/stevenjack))
|
|
545
866
|
|
|
546
|
-
## [v0.5.1](https://github.com/
|
|
547
|
-
[Full Changelog](https://github.com/
|
|
867
|
+
## [v0.5.1](https://github.com/cfndsl/cfndsl/tree/v0.5.1) (2016-04-15)
|
|
868
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.5.0...v0.5.1)
|
|
548
869
|
|
|
549
870
|
**Implemented enhancements:**
|
|
550
871
|
|
|
551
|
-
- Fix Rake task for bumping version number [\#173](https://github.com/
|
|
872
|
+
- Fix Rake task for bumping version number [\#173](https://github.com/cfndsl/cfndsl/pull/173) ([stevenjack](https://github.com/stevenjack))
|
|
552
873
|
|
|
553
874
|
**Fixed bugs:**
|
|
554
875
|
|
|
555
|
-
- JSON pretty printing for rake generated cloudformation [\#177](https://github.com/
|
|
876
|
+
- JSON pretty printing for rake generated cloudformation [\#177](https://github.com/cfndsl/cfndsl/pull/177) ([cmaxwellau](https://github.com/cmaxwellau))
|
|
556
877
|
|
|
557
878
|
**Closed issues:**
|
|
558
879
|
|
|
559
|
-
- Pretty printing no longer working with Rake builds [\#176](https://github.com/
|
|
880
|
+
- Pretty printing no longer working with Rake builds [\#176](https://github.com/cfndsl/cfndsl/issues/176)
|
|
560
881
|
|
|
561
|
-
## [v0.5.0](https://github.com/
|
|
562
|
-
[Full Changelog](https://github.com/
|
|
882
|
+
## [v0.5.0](https://github.com/cfndsl/cfndsl/tree/v0.5.0) (2016-04-13)
|
|
883
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.4...v0.5.0)
|
|
563
884
|
|
|
564
885
|
**Implemented enhancements:**
|
|
565
886
|
|
|
566
|
-
- Code cleanup and improvments - Help needed [\#171](https://github.com/
|
|
567
|
-
- cfndsl\_examples [\#83](https://github.com/
|
|
568
|
-
- The Juno release of Openstack Heat has a whole new floatilla of resources [\#67](https://github.com/
|
|
569
|
-
- CLI Tests [\#169](https://github.com/
|
|
570
|
-
- Rubocop fixes [\#161](https://github.com/
|
|
887
|
+
- Code cleanup and improvments - Help needed [\#171](https://github.com/cfndsl/cfndsl/issues/171)
|
|
888
|
+
- cfndsl\_examples [\#83](https://github.com/cfndsl/cfndsl/issues/83)
|
|
889
|
+
- The Juno release of Openstack Heat has a whole new floatilla of resources [\#67](https://github.com/cfndsl/cfndsl/issues/67)
|
|
890
|
+
- CLI Tests [\#169](https://github.com/cfndsl/cfndsl/pull/169) ([kornypoet](https://github.com/kornypoet))
|
|
891
|
+
- Rubocop fixes [\#161](https://github.com/cfndsl/cfndsl/pull/161) ([stevenjack](https://github.com/stevenjack))
|
|
571
892
|
|
|
572
|
-
## [v0.4.4](https://github.com/
|
|
573
|
-
[Full Changelog](https://github.com/
|
|
893
|
+
## [v0.4.4](https://github.com/cfndsl/cfndsl/tree/v0.4.4) (2016-04-01)
|
|
894
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.2...v0.4.4)
|
|
574
895
|
|
|
575
896
|
**Closed issues:**
|
|
576
897
|
|
|
577
|
-
- Updating aws\_types.yaml? [\#165](https://github.com/
|
|
898
|
+
- Updating aws\_types.yaml? [\#165](https://github.com/cfndsl/cfndsl/issues/165)
|
|
578
899
|
|
|
579
|
-
## [v0.4.2](https://github.com/
|
|
580
|
-
[Full Changelog](https://github.com/
|
|
900
|
+
## [v0.4.2](https://github.com/cfndsl/cfndsl/tree/v0.4.2) (2016-03-03)
|
|
901
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.3...v0.4.2)
|
|
581
902
|
|
|
582
|
-
## [v0.4.3](https://github.com/
|
|
583
|
-
[Full Changelog](https://github.com/
|
|
903
|
+
## [v0.4.3](https://github.com/cfndsl/cfndsl/tree/v0.4.3) (2016-03-01)
|
|
904
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.1...v0.4.3)
|
|
584
905
|
|
|
585
906
|
**Closed issues:**
|
|
586
907
|
|
|
587
|
-
- Support the Elasticsearch Service [\#155](https://github.com/
|
|
908
|
+
- Support the Elasticsearch Service [\#155](https://github.com/cfndsl/cfndsl/issues/155)
|
|
588
909
|
|
|
589
|
-
## [v0.4.1](https://github.com/
|
|
590
|
-
[Full Changelog](https://github.com/
|
|
910
|
+
## [v0.4.1](https://github.com/cfndsl/cfndsl/tree/v0.4.1) (2016-02-18)
|
|
911
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.4.0...v0.4.1)
|
|
591
912
|
|
|
592
|
-
## [v0.4.0](https://github.com/
|
|
593
|
-
[Full Changelog](https://github.com/
|
|
913
|
+
## [v0.4.0](https://github.com/cfndsl/cfndsl/tree/v0.4.0) (2016-02-11)
|
|
914
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.6...v0.4.0)
|
|
594
915
|
|
|
595
|
-
## [v0.3.6](https://github.com/
|
|
596
|
-
[Full Changelog](https://github.com/
|
|
916
|
+
## [v0.3.6](https://github.com/cfndsl/cfndsl/tree/v0.3.6) (2016-02-09)
|
|
917
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.5...v0.3.6)
|
|
597
918
|
|
|
598
919
|
**Implemented enhancements:**
|
|
599
920
|
|
|
600
|
-
- Pretty-formatted multi-line output JSON [\#149](https://github.com/
|
|
921
|
+
- Pretty-formatted multi-line output JSON [\#149](https://github.com/cfndsl/cfndsl/issues/149)
|
|
601
922
|
|
|
602
|
-
## [v0.3.5](https://github.com/
|
|
603
|
-
[Full Changelog](https://github.com/
|
|
923
|
+
## [v0.3.5](https://github.com/cfndsl/cfndsl/tree/v0.3.5) (2016-02-03)
|
|
924
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.4...v0.3.5)
|
|
604
925
|
|
|
605
|
-
## [v0.3.4](https://github.com/
|
|
606
|
-
[Full Changelog](https://github.com/
|
|
926
|
+
## [v0.3.4](https://github.com/cfndsl/cfndsl/tree/v0.3.4) (2016-01-28)
|
|
927
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.3...v0.3.4)
|
|
607
928
|
|
|
608
929
|
**Merged pull requests:**
|
|
609
930
|
|
|
610
|
-
- add AutoScalingConfiguration missing property [\#144](https://github.com/
|
|
931
|
+
- add AutoScalingConfiguration missing property [\#144](https://github.com/cfndsl/cfndsl/pull/144) ([kornypoet](https://github.com/kornypoet))
|
|
611
932
|
|
|
612
|
-
## [v0.3.3](https://github.com/
|
|
613
|
-
[Full Changelog](https://github.com/
|
|
933
|
+
## [v0.3.3](https://github.com/cfndsl/cfndsl/tree/v0.3.3) (2015-12-26)
|
|
934
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.2...v0.3.3)
|
|
614
935
|
|
|
615
936
|
**Closed issues:**
|
|
616
937
|
|
|
617
|
-
- Add support for additional RDS properties [\#142](https://github.com/
|
|
618
|
-
- Add support for KMS::Key [\#140](https://github.com/
|
|
938
|
+
- Add support for additional RDS properties [\#142](https://github.com/cfndsl/cfndsl/issues/142)
|
|
939
|
+
- Add support for KMS::Key [\#140](https://github.com/cfndsl/cfndsl/issues/140)
|
|
619
940
|
|
|
620
|
-
## [v0.3.2](https://github.com/
|
|
621
|
-
[Full Changelog](https://github.com/
|
|
941
|
+
## [v0.3.2](https://github.com/cfndsl/cfndsl/tree/v0.3.2) (2015-11-20)
|
|
942
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.1...v0.3.2)
|
|
622
943
|
|
|
623
944
|
**Merged pull requests:**
|
|
624
945
|
|
|
625
|
-
- json gem required [\#136](https://github.com/
|
|
626
|
-
- Ensure last value wins when a Property is set multiple times [\#135](https://github.com/
|
|
627
|
-
- Fix typo in return type [\#134](https://github.com/
|
|
628
|
-
- Update t1.rb template to match README text [\#132](https://github.com/
|
|
629
|
-
- Enable NotificationConfigurations on S3 Bucket object [\#131](https://github.com/
|
|
946
|
+
- json gem required [\#136](https://github.com/cfndsl/cfndsl/pull/136) ([erikmack](https://github.com/erikmack))
|
|
947
|
+
- Ensure last value wins when a Property is set multiple times [\#135](https://github.com/cfndsl/cfndsl/pull/135) ([erikmack](https://github.com/erikmack))
|
|
948
|
+
- Fix typo in return type [\#134](https://github.com/cfndsl/cfndsl/pull/134) ([erikmack](https://github.com/erikmack))
|
|
949
|
+
- Update t1.rb template to match README text [\#132](https://github.com/cfndsl/cfndsl/pull/132) ([nickjwebb](https://github.com/nickjwebb))
|
|
950
|
+
- Enable NotificationConfigurations on S3 Bucket object [\#131](https://github.com/cfndsl/cfndsl/pull/131) ([webdevwilson](https://github.com/webdevwilson))
|
|
630
951
|
|
|
631
|
-
## [v0.3.1](https://github.com/
|
|
632
|
-
[Full Changelog](https://github.com/
|
|
952
|
+
## [v0.3.1](https://github.com/cfndsl/cfndsl/tree/v0.3.1) (2015-10-29)
|
|
953
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.9...v0.3.1)
|
|
633
954
|
|
|
634
|
-
## [v0.2.9](https://github.com/
|
|
635
|
-
[Full Changelog](https://github.com/
|
|
955
|
+
## [v0.2.9](https://github.com/cfndsl/cfndsl/tree/v0.2.9) (2015-10-29)
|
|
956
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.8...v0.2.9)
|
|
636
957
|
|
|
637
|
-
## [v0.2.8](https://github.com/
|
|
638
|
-
[Full Changelog](https://github.com/
|
|
958
|
+
## [v0.2.8](https://github.com/cfndsl/cfndsl/tree/v0.2.8) (2015-10-29)
|
|
959
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.7...v0.2.8)
|
|
639
960
|
|
|
640
|
-
## [v0.2.7](https://github.com/
|
|
641
|
-
[Full Changelog](https://github.com/
|
|
961
|
+
## [v0.2.7](https://github.com/cfndsl/cfndsl/tree/v0.2.7) (2015-10-14)
|
|
962
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.4...v0.2.7)
|
|
642
963
|
|
|
643
|
-
## [v0.2.4](https://github.com/
|
|
644
|
-
[Full Changelog](https://github.com/
|
|
964
|
+
## [v0.2.4](https://github.com/cfndsl/cfndsl/tree/v0.2.4) (2015-09-29)
|
|
965
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.3.0...v0.2.4)
|
|
645
966
|
|
|
646
|
-
## [v0.3.0](https://github.com/
|
|
647
|
-
[Full Changelog](https://github.com/
|
|
967
|
+
## [v0.3.0](https://github.com/cfndsl/cfndsl/tree/v0.3.0) (2015-09-29)
|
|
968
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.3...v0.3.0)
|
|
648
969
|
|
|
649
|
-
## [v0.2.3](https://github.com/
|
|
650
|
-
[Full Changelog](https://github.com/
|
|
970
|
+
## [v0.2.3](https://github.com/cfndsl/cfndsl/tree/v0.2.3) (2015-08-26)
|
|
971
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.2...v0.2.3)
|
|
651
972
|
|
|
652
973
|
**Closed issues:**
|
|
653
974
|
|
|
654
|
-
- Undefined symbol: EC2MountPoint - possible issue? [\#124](https://github.com/
|
|
975
|
+
- Undefined symbol: EC2MountPoint - possible issue? [\#124](https://github.com/cfndsl/cfndsl/issues/124)
|
|
655
976
|
|
|
656
|
-
## [v0.2.2](https://github.com/
|
|
657
|
-
[Full Changelog](https://github.com/
|
|
977
|
+
## [v0.2.2](https://github.com/cfndsl/cfndsl/tree/v0.2.2) (2015-08-10)
|
|
978
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.1...v0.2.2)
|
|
658
979
|
|
|
659
|
-
## [v0.2.1](https://github.com/
|
|
660
|
-
[Full Changelog](https://github.com/
|
|
980
|
+
## [v0.2.1](https://github.com/cfndsl/cfndsl/tree/v0.2.1) (2015-08-10)
|
|
981
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.2.0...v0.2.1)
|
|
661
982
|
|
|
662
|
-
## [v0.2.0](https://github.com/
|
|
663
|
-
[Full Changelog](https://github.com/
|
|
983
|
+
## [v0.2.0](https://github.com/cfndsl/cfndsl/tree/v0.2.0) (2015-08-10)
|
|
984
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.20...v0.2.0)
|
|
664
985
|
|
|
665
986
|
**Closed issues:**
|
|
666
987
|
|
|
667
|
-
- Add support for IAM::Group ManagedPolicyArns [\#119](https://github.com/
|
|
988
|
+
- Add support for IAM::Group ManagedPolicyArns [\#119](https://github.com/cfndsl/cfndsl/issues/119)
|
|
668
989
|
|
|
669
|
-
## [v0.1.20](https://github.com/
|
|
670
|
-
[Full Changelog](https://github.com/
|
|
990
|
+
## [v0.1.20](https://github.com/cfndsl/cfndsl/tree/v0.1.20) (2015-07-22)
|
|
991
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.19...v0.1.20)
|
|
671
992
|
|
|
672
993
|
**Closed issues:**
|
|
673
994
|
|
|
674
|
-
- Add support for IAM::Role ManagedPolicyArns [\#114](https://github.com/
|
|
675
|
-
- aws\_types.aws AWS::SQS::Queue missing property QueueName: String [\#108](https://github.com/
|
|
995
|
+
- Add support for IAM::Role ManagedPolicyArns [\#114](https://github.com/cfndsl/cfndsl/issues/114)
|
|
996
|
+
- aws\_types.aws AWS::SQS::Queue missing property QueueName: String [\#108](https://github.com/cfndsl/cfndsl/issues/108)
|
|
676
997
|
|
|
677
|
-
## [v0.1.19](https://github.com/
|
|
678
|
-
[Full Changelog](https://github.com/
|
|
998
|
+
## [v0.1.19](https://github.com/cfndsl/cfndsl/tree/v0.1.19) (2015-07-16)
|
|
999
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.18...v0.1.19)
|
|
679
1000
|
|
|
680
1001
|
**Closed issues:**
|
|
681
1002
|
|
|
682
|
-
- SecurityGroupIngress/Egress formatting with additional \[\] [\#109](https://github.com/
|
|
1003
|
+
- SecurityGroupIngress/Egress formatting with additional \[\] [\#109](https://github.com/cfndsl/cfndsl/issues/109)
|
|
683
1004
|
|
|
684
|
-
## [v0.1.18](https://github.com/
|
|
685
|
-
[Full Changelog](https://github.com/
|
|
1005
|
+
## [v0.1.18](https://github.com/cfndsl/cfndsl/tree/v0.1.18) (2015-06-22)
|
|
1006
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.17...v0.1.18)
|
|
686
1007
|
|
|
687
|
-
## [v0.1.17](https://github.com/
|
|
688
|
-
[Full Changelog](https://github.com/
|
|
1008
|
+
## [v0.1.17](https://github.com/cfndsl/cfndsl/tree/v0.1.17) (2015-06-22)
|
|
1009
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.16...v0.1.17)
|
|
689
1010
|
|
|
690
|
-
## [v0.1.16](https://github.com/
|
|
691
|
-
[Full Changelog](https://github.com/
|
|
1011
|
+
## [v0.1.16](https://github.com/cfndsl/cfndsl/tree/v0.1.16) (2015-06-15)
|
|
1012
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.15...v0.1.16)
|
|
692
1013
|
|
|
693
1014
|
**Fixed bugs:**
|
|
694
1015
|
|
|
695
|
-
- PreferredAvailabilityZone Property on ElastiCache\_CacheCluster is incorrect [\#92](https://github.com/
|
|
1016
|
+
- PreferredAvailabilityZone Property on ElastiCache\_CacheCluster is incorrect [\#92](https://github.com/cfndsl/cfndsl/issues/92)
|
|
696
1017
|
|
|
697
|
-
## [v0.1.15](https://github.com/
|
|
698
|
-
[Full Changelog](https://github.com/
|
|
1018
|
+
## [v0.1.15](https://github.com/cfndsl/cfndsl/tree/v0.1.15) (2015-05-10)
|
|
1019
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.14...v0.1.15)
|
|
699
1020
|
|
|
700
1021
|
**Closed issues:**
|
|
701
1022
|
|
|
702
|
-
- Oddity where do/end block breaks expectations, but {} works fine? [\#86](https://github.com/
|
|
1023
|
+
- Oddity where do/end block breaks expectations, but {} works fine? [\#86](https://github.com/cfndsl/cfndsl/issues/86)
|
|
703
1024
|
|
|
704
|
-
## [v0.1.14](https://github.com/
|
|
705
|
-
[Full Changelog](https://github.com/
|
|
1025
|
+
## [v0.1.14](https://github.com/cfndsl/cfndsl/tree/v0.1.14) (2015-04-24)
|
|
1026
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.11...v0.1.14)
|
|
706
1027
|
|
|
707
1028
|
**Implemented enhancements:**
|
|
708
1029
|
|
|
709
|
-
- Alert user if they've incorrectly capitialized the function name [\#84](https://github.com/
|
|
1030
|
+
- Alert user if they've incorrectly capitialized the function name [\#84](https://github.com/cfndsl/cfndsl/pull/84) ([stevenjack](https://github.com/stevenjack))
|
|
710
1031
|
|
|
711
1032
|
**Merged pull requests:**
|
|
712
1033
|
|
|
713
|
-
- Redshift [\#87](https://github.com/
|
|
714
|
-
- Add Route53::HostedZone and Route53::HealthCheck [\#85](https://github.com/
|
|
1034
|
+
- Redshift [\#87](https://github.com/cfndsl/cfndsl/pull/87) ([kornypoet](https://github.com/kornypoet))
|
|
1035
|
+
- Add Route53::HostedZone and Route53::HealthCheck [\#85](https://github.com/cfndsl/cfndsl/pull/85) ([benley](https://github.com/benley))
|
|
715
1036
|
|
|
716
|
-
## [v0.1.11](https://github.com/
|
|
717
|
-
[Full Changelog](https://github.com/
|
|
1037
|
+
## [v0.1.11](https://github.com/cfndsl/cfndsl/tree/v0.1.11) (2015-02-05)
|
|
1038
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.10...v0.1.11)
|
|
718
1039
|
|
|
719
1040
|
**Implemented enhancements:**
|
|
720
1041
|
|
|
721
|
-
- "AWS::SNS::Topic" does not appear to be fully defined [\#81](https://github.com/
|
|
1042
|
+
- "AWS::SNS::Topic" does not appear to be fully defined [\#81](https://github.com/cfndsl/cfndsl/issues/81)
|
|
722
1043
|
|
|
723
|
-
## [v0.1.10](https://github.com/
|
|
724
|
-
[Full Changelog](https://github.com/
|
|
1044
|
+
## [v0.1.10](https://github.com/cfndsl/cfndsl/tree/v0.1.10) (2015-01-19)
|
|
1045
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.9...v0.1.10)
|
|
725
1046
|
|
|
726
|
-
## [v0.1.9](https://github.com/
|
|
727
|
-
[Full Changelog](https://github.com/
|
|
1047
|
+
## [v0.1.9](https://github.com/cfndsl/cfndsl/tree/v0.1.9) (2015-01-13)
|
|
1048
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.8...v0.1.9)
|
|
728
1049
|
|
|
729
1050
|
**Closed issues:**
|
|
730
1051
|
|
|
731
|
-
- Add some better support for base64 in FnFormat [\#66](https://github.com/
|
|
1052
|
+
- Add some better support for base64 in FnFormat [\#66](https://github.com/cfndsl/cfndsl/issues/66)
|
|
732
1053
|
|
|
733
1054
|
**Merged pull requests:**
|
|
734
1055
|
|
|
735
|
-
- Fixes a typo in cfndsl.rb that was causing an error when in verbose mode... [\#76](https://github.com/
|
|
1056
|
+
- 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))
|
|
736
1057
|
|
|
737
|
-
## [v0.1.8](https://github.com/
|
|
738
|
-
[Full Changelog](https://github.com/
|
|
1058
|
+
## [v0.1.8](https://github.com/cfndsl/cfndsl/tree/v0.1.8) (2015-01-02)
|
|
1059
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.7...v0.1.8)
|
|
739
1060
|
|
|
740
|
-
## [v0.1.7](https://github.com/
|
|
741
|
-
[Full Changelog](https://github.com/
|
|
1061
|
+
## [v0.1.7](https://github.com/cfndsl/cfndsl/tree/v0.1.7) (2014-12-26)
|
|
1062
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.3...v0.1.7)
|
|
742
1063
|
|
|
743
1064
|
**Closed issues:**
|
|
744
1065
|
|
|
745
|
-
- Support for userData Script [\#57](https://github.com/
|
|
746
|
-
- The AWS Resource AWS::EC2::NetworkInterface is missing [\#54](https://github.com/
|
|
747
|
-
- Add support for Openstack Heat [\#33](https://github.com/
|
|
748
|
-
- Self-referencing SecurityGroups [\#32](https://github.com/
|
|
749
|
-
- CloudFormation output ordering doesn't match order of cfndsl template [\#26](https://github.com/
|
|
750
|
-
- Limited Validatation of Resource Property Data Types [\#4](https://github.com/
|
|
1066
|
+
- Support for userData Script [\#57](https://github.com/cfndsl/cfndsl/issues/57)
|
|
1067
|
+
- The AWS Resource AWS::EC2::NetworkInterface is missing [\#54](https://github.com/cfndsl/cfndsl/issues/54)
|
|
1068
|
+
- Add support for Openstack Heat [\#33](https://github.com/cfndsl/cfndsl/issues/33)
|
|
1069
|
+
- Self-referencing SecurityGroups [\#32](https://github.com/cfndsl/cfndsl/issues/32)
|
|
1070
|
+
- CloudFormation output ordering doesn't match order of cfndsl template [\#26](https://github.com/cfndsl/cfndsl/issues/26)
|
|
1071
|
+
- Limited Validatation of Resource Property Data Types [\#4](https://github.com/cfndsl/cfndsl/issues/4)
|
|
751
1072
|
|
|
752
1073
|
**Merged pull requests:**
|
|
753
1074
|
|
|
754
|
-
- typo [\#69](https://github.com/
|
|
755
|
-
- Add support for OpsWorks types [\#64](https://github.com/
|
|
756
|
-
- Made some changes to aws\_types.yaml to try to keep up with changes made ... [\#62](https://github.com/
|
|
757
|
-
- Add support for ConnectionDrainingPolicy [\#61](https://github.com/
|
|
758
|
-
- Add some missing properties of numerous resources [\#60](https://github.com/
|
|
759
|
-
- Added some command line options to affect the behavior of cfndsl. [\#59](https://github.com/
|
|
760
|
-
- Add some nominal support for Openstack Heat [\#58](https://github.com/
|
|
761
|
-
- Eval context [\#56](https://github.com/
|
|
762
|
-
- Add NetworkInterface resource Closes \#54 [\#55](https://github.com/
|
|
1075
|
+
- typo [\#69](https://github.com/cfndsl/cfndsl/pull/69) ([tbenade](https://github.com/tbenade))
|
|
1076
|
+
- Add support for OpsWorks types [\#64](https://github.com/cfndsl/cfndsl/pull/64) ([benley](https://github.com/benley))
|
|
1077
|
+
- Made some changes to aws\_types.yaml to try to keep up with changes made ... [\#62](https://github.com/cfndsl/cfndsl/pull/62) ([howech](https://github.com/howech))
|
|
1078
|
+
- Add support for ConnectionDrainingPolicy [\#61](https://github.com/cfndsl/cfndsl/pull/61) ([josephglanville](https://github.com/josephglanville))
|
|
1079
|
+
- Add some missing properties of numerous resources [\#60](https://github.com/cfndsl/cfndsl/pull/60) ([josephglanville](https://github.com/josephglanville))
|
|
1080
|
+
- Added some command line options to affect the behavior of cfndsl. [\#59](https://github.com/cfndsl/cfndsl/pull/59) ([howech](https://github.com/howech))
|
|
1081
|
+
- Add some nominal support for Openstack Heat [\#58](https://github.com/cfndsl/cfndsl/pull/58) ([howech](https://github.com/howech))
|
|
1082
|
+
- Eval context [\#56](https://github.com/cfndsl/cfndsl/pull/56) ([howech](https://github.com/howech))
|
|
1083
|
+
- Add NetworkInterface resource Closes \#54 [\#55](https://github.com/cfndsl/cfndsl/pull/55) ([erikmack](https://github.com/erikmack))
|
|
763
1084
|
|
|
764
|
-
## [v0.1.3](https://github.com/
|
|
765
|
-
[Full Changelog](https://github.com/
|
|
1085
|
+
## [v0.1.3](https://github.com/cfndsl/cfndsl/tree/v0.1.3) (2014-07-02)
|
|
1086
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.2...v0.1.3)
|
|
766
1087
|
|
|
767
1088
|
**Fixed bugs:**
|
|
768
1089
|
|
|
769
|
-
- fixed a typo in SourceSecurityGroupName and SourceSecurityGroupId [\#51](https://github.com/
|
|
1090
|
+
- fixed a typo in SourceSecurityGroupName and SourceSecurityGroupId [\#51](https://github.com/cfndsl/cfndsl/pull/51) ([howech](https://github.com/howech))
|
|
770
1091
|
|
|
771
1092
|
**Closed issues:**
|
|
772
1093
|
|
|
773
|
-
- Output to a string instead of STDOUT? [\#23](https://github.com/
|
|
1094
|
+
- Output to a string instead of STDOUT? [\#23](https://github.com/cfndsl/cfndsl/issues/23)
|
|
774
1095
|
|
|
775
|
-
## [v0.1.2](https://github.com/
|
|
776
|
-
[Full Changelog](https://github.com/
|
|
1096
|
+
## [v0.1.2](https://github.com/cfndsl/cfndsl/tree/v0.1.2) (2014-05-28)
|
|
1097
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.1...v0.1.2)
|
|
777
1098
|
|
|
778
1099
|
**Closed issues:**
|
|
779
1100
|
|
|
780
|
-
- Publish Updated Gem? [\#50](https://github.com/
|
|
1101
|
+
- Publish Updated Gem? [\#50](https://github.com/cfndsl/cfndsl/issues/50)
|
|
781
1102
|
|
|
782
|
-
## [v0.1.1](https://github.com/
|
|
783
|
-
[Full Changelog](https://github.com/
|
|
1103
|
+
## [v0.1.1](https://github.com/cfndsl/cfndsl/tree/v0.1.1) (2014-05-14)
|
|
1104
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.1.0...v0.1.1)
|
|
784
1105
|
|
|
785
1106
|
**Closed issues:**
|
|
786
1107
|
|
|
787
|
-
- License missing from gemspec [\#21](https://github.com/
|
|
1108
|
+
- License missing from gemspec [\#21](https://github.com/cfndsl/cfndsl/issues/21)
|
|
788
1109
|
|
|
789
1110
|
**Merged pull requests:**
|
|
790
1111
|
|
|
791
|
-
- Change license to MIT and update gemfile [\#48](https://github.com/
|
|
1112
|
+
- Change license to MIT and update gemfile [\#48](https://github.com/cfndsl/cfndsl/pull/48) ([stevenjack](https://github.com/stevenjack))
|
|
792
1113
|
|
|
793
|
-
## [v0.1.0](https://github.com/
|
|
1114
|
+
## [v0.1.0](https://github.com/cfndsl/cfndsl/tree/v0.1.0) (2014-05-13)
|
|
794
1115
|
**Implemented enhancements:**
|
|
795
1116
|
|
|
796
|
-
- Adds missing Pseudo Parameters [\#40](https://github.com/
|
|
797
|
-
- ASG update policy [\#38](https://github.com/
|
|
798
|
-
- Added FnSelect function to JSONable.rb [\#36](https://github.com/
|
|
799
|
-
- Adding new properties to various resources [\#35](https://github.com/
|
|
800
|
-
|
|
801
|
-
**Closed issues:**
|
|
802
|
-
|
|
803
|
-
- Add support for UpdatePolicy on AutoScalingGroups [\#34](https://github.com/
|
|
804
|
-
- One cfndsl file =\> multiple Cloudformation templates [\#29](https://github.com/
|
|
805
|
-
- Errors on Mac 10.8.4, using version installed with 'gem install cfndsl' [\#25](https://github.com/
|
|
806
|
-
- Requesting cfndsl example based on this AWS example template [\#24](https://github.com/
|
|
807
|
-
- Feature Request: Support for "AWS::CloudFormation::Init" and "AWS::CloudFormation::Authentication" Types [\#17](https://github.com/
|
|
808
|
-
- Unify implementations of singular/plural methods for array properties [\#13](https://github.com/
|
|
809
|
-
- Better way to tag Instances [\#11](https://github.com/
|
|
810
|
-
- Format identifiers [\#9](https://github.com/
|
|
811
|
-
- Add Properties syntax for Resources [\#8](https://github.com/
|
|
812
|
-
- Set up the cfn-init metadata to work like resources [\#7](https://github.com/
|
|
813
|
-
- Better Error Handling via method\_missing [\#6](https://github.com/
|
|
814
|
-
- Data driven type specifier [\#5](https://github.com/
|
|
815
|
-
- Validate Resource Property Names [\#3](https://github.com/
|
|
816
|
-
- Validate Resource Types [\#2](https://github.com/
|
|
817
|
-
|
|
818
|
-
**Merged pull requests:**
|
|
819
|
-
|
|
820
|
-
- Updates test script to use correct load balancer names property [\#47](https://github.com/
|
|
821
|
-
- Adds bundler tasks to ease testing gem and releasing [\#46](https://github.com/
|
|
822
|
-
- Asg update policy [\#45](https://github.com/
|
|
823
|
-
- Add conditions [\#44](https://github.com/
|
|
824
|
-
- Don't exit - write error to STDERR [\#43](https://github.com/
|
|
825
|
-
- Travis integration [\#42](https://github.com/
|
|
826
|
-
- Corrected GetAtt typo. Edit doesn't appear to alter output. [\#31](https://github.com/
|
|
827
|
-
- Fixed incomplete 'GroupName' property for AWS::IAM::UserToGroupAddition [\#30](https://github.com/
|
|
828
|
-
- IAM Additions and Small Corrections and/or Improvements [\#28](https://github.com/
|
|
829
|
-
- Added IamInstanceProfile to EC2::Instance type. [\#27](https://github.com/
|
|
830
|
-
- Changing AliasTarget property to be a single AliasTarget, and not an array of them. [\#22](https://github.com/
|
|
831
|
-
- Clean up the Listener property type [\#20](https://github.com/
|
|
832
|
-
- Reimplmenented property methods as outlined in issue \#13 [\#14](https://github.com/
|
|
833
|
-
- Added resources definitions related to VPC [\#12](https://github.com/
|
|
834
|
-
- Added a Tag function [\#10](https://github.com/
|
|
835
|
-
- Update supported pseudo parameters [\#1](https://github.com/
|
|
1117
|
+
- Adds missing Pseudo Parameters [\#40](https://github.com/cfndsl/cfndsl/pull/40) ([stevenjack](https://github.com/stevenjack))
|
|
1118
|
+
- ASG update policy [\#38](https://github.com/cfndsl/cfndsl/pull/38) ([k-ong](https://github.com/k-ong))
|
|
1119
|
+
- Added FnSelect function to JSONable.rb [\#36](https://github.com/cfndsl/cfndsl/pull/36) ([louism517](https://github.com/louism517))
|
|
1120
|
+
- Adding new properties to various resources [\#35](https://github.com/cfndsl/cfndsl/pull/35) ([ianneub](https://github.com/ianneub))
|
|
1121
|
+
|
|
1122
|
+
**Closed issues:**
|
|
1123
|
+
|
|
1124
|
+
- Add support for UpdatePolicy on AutoScalingGroups [\#34](https://github.com/cfndsl/cfndsl/issues/34)
|
|
1125
|
+
- One cfndsl file =\> multiple Cloudformation templates [\#29](https://github.com/cfndsl/cfndsl/issues/29)
|
|
1126
|
+
- Errors on Mac 10.8.4, using version installed with 'gem install cfndsl' [\#25](https://github.com/cfndsl/cfndsl/issues/25)
|
|
1127
|
+
- Requesting cfndsl example based on this AWS example template [\#24](https://github.com/cfndsl/cfndsl/issues/24)
|
|
1128
|
+
- Feature Request: Support for "AWS::CloudFormation::Init" and "AWS::CloudFormation::Authentication" Types [\#17](https://github.com/cfndsl/cfndsl/issues/17)
|
|
1129
|
+
- Unify implementations of singular/plural methods for array properties [\#13](https://github.com/cfndsl/cfndsl/issues/13)
|
|
1130
|
+
- Better way to tag Instances [\#11](https://github.com/cfndsl/cfndsl/issues/11)
|
|
1131
|
+
- Format identifiers [\#9](https://github.com/cfndsl/cfndsl/issues/9)
|
|
1132
|
+
- Add Properties syntax for Resources [\#8](https://github.com/cfndsl/cfndsl/issues/8)
|
|
1133
|
+
- Set up the cfn-init metadata to work like resources [\#7](https://github.com/cfndsl/cfndsl/issues/7)
|
|
1134
|
+
- Better Error Handling via method\_missing [\#6](https://github.com/cfndsl/cfndsl/issues/6)
|
|
1135
|
+
- Data driven type specifier [\#5](https://github.com/cfndsl/cfndsl/issues/5)
|
|
1136
|
+
- Validate Resource Property Names [\#3](https://github.com/cfndsl/cfndsl/issues/3)
|
|
1137
|
+
- Validate Resource Types [\#2](https://github.com/cfndsl/cfndsl/issues/2)
|
|
1138
|
+
|
|
1139
|
+
**Merged pull requests:**
|
|
1140
|
+
|
|
1141
|
+
- Updates test script to use correct load balancer names property [\#47](https://github.com/cfndsl/cfndsl/pull/47) ([stevenjack](https://github.com/stevenjack))
|
|
1142
|
+
- Adds bundler tasks to ease testing gem and releasing [\#46](https://github.com/cfndsl/cfndsl/pull/46) ([stevenjack](https://github.com/stevenjack))
|
|
1143
|
+
- Asg update policy [\#45](https://github.com/cfndsl/cfndsl/pull/45) ([stevenjack](https://github.com/stevenjack))
|
|
1144
|
+
- Add conditions [\#44](https://github.com/cfndsl/cfndsl/pull/44) ([stevenjack](https://github.com/stevenjack))
|
|
1145
|
+
- Don't exit - write error to STDERR [\#43](https://github.com/cfndsl/cfndsl/pull/43) ([stevenjack](https://github.com/stevenjack))
|
|
1146
|
+
- Travis integration [\#42](https://github.com/cfndsl/cfndsl/pull/42) ([stevenjack](https://github.com/stevenjack))
|
|
1147
|
+
- Corrected GetAtt typo. Edit doesn't appear to alter output. [\#31](https://github.com/cfndsl/cfndsl/pull/31) ([josh-wrale](https://github.com/josh-wrale))
|
|
1148
|
+
- Fixed incomplete 'GroupName' property for AWS::IAM::UserToGroupAddition [\#30](https://github.com/cfndsl/cfndsl/pull/30) ([josh-wrale](https://github.com/josh-wrale))
|
|
1149
|
+
- IAM Additions and Small Corrections and/or Improvements [\#28](https://github.com/cfndsl/cfndsl/pull/28) ([josh-wrale](https://github.com/josh-wrale))
|
|
1150
|
+
- Added IamInstanceProfile to EC2::Instance type. [\#27](https://github.com/cfndsl/cfndsl/pull/27) ([ianneub](https://github.com/ianneub))
|
|
1151
|
+
- Changing AliasTarget property to be a single AliasTarget, and not an array of them. [\#22](https://github.com/cfndsl/cfndsl/pull/22) ([ianneub](https://github.com/ianneub))
|
|
1152
|
+
- Clean up the Listener property type [\#20](https://github.com/cfndsl/cfndsl/pull/20) ([ianneub](https://github.com/ianneub))
|
|
1153
|
+
- Reimplmenented property methods as outlined in issue \#13 [\#14](https://github.com/cfndsl/cfndsl/pull/14) ([howech](https://github.com/howech))
|
|
1154
|
+
- Added resources definitions related to VPC [\#12](https://github.com/cfndsl/cfndsl/pull/12) ([liguorien](https://github.com/liguorien))
|
|
1155
|
+
- Added a Tag function [\#10](https://github.com/cfndsl/cfndsl/pull/10) ([liguorien](https://github.com/liguorien))
|
|
1156
|
+
- Update supported pseudo parameters [\#1](https://github.com/cfndsl/cfndsl/pull/1) ([radim](https://github.com/radim))
|
|
836
1157
|
|
|
837
1158
|
|
|
838
1159
|
|