diff --git a/CHANGELOG.md b/CHANGELOG.md index 376a81d..cd6388d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Version 2.1.11 (2019-5-31) + +Issues: +- Disable custom packed resources to keep template compatiable with awscfncli + and samcli. + ## Version 2.1.10 (2019-5-1) Issues: diff --git a/README.md b/README.md index eee34de..1c2e8ec 100644 --- a/README.md +++ b/README.md @@ -117,13 +117,7 @@ The following resource property are supported by `awscfncli` and official - `Location` parameter for the `AWS::Include` transform - `SourceBundle` property for the `AWS::ElasticBeanstalk::ApplicationVersion` resource - `TemplateURL` property for the `AWS::CloudFormation::Stack` resource - -The following resource property are supported by `awscfncli`: - -- `ApplicationCode` property for the `AWS::KinesisAnalytics::Application` - resource -- `DefinitionString` property for the `AWS::StepFunctions::StateMachine` - resource +- `Command.ScriptLocation` property for the `AWS::Glue::Job` resource ## Config File diff --git a/awscfncli2/runner/runbook/package.py b/awscfncli2/runner/runbook/package.py index 5f822c1..0ceb637 100644 --- a/awscfncli2/runner/runbook/package.py +++ b/awscfncli2/runner/runbook/package.py @@ -188,8 +188,8 @@ class StepFunctionsDefinitionString(ResourceWithInlineCode): ADDITIONAL_EXPORT = { - KinesisAnalysisApplicationCode.RESOURCE_TYPE: KinesisAnalysisApplicationCode, - StepFunctionsDefinitionString.RESOURCE_TYPE: StepFunctionsDefinitionString + # KinesisAnalysisApplicationCode.RESOURCE_TYPE: KinesisAnalysisApplicationCode, + # StepFunctionsDefinitionString.RESOURCE_TYPE: StepFunctionsDefinitionString } if isinstance(EXPORTS, dict): diff --git a/setup.py b/setup.py index bd8c5f6..92ed9a2 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ name='awscfncli2', # Version and description - version='2.1.10', + version='2.1.11', description='AWS CloudFormation CLI', long_description=long_description,