From 36d79c6ff2c14b5a4e43926d403792efafe6521e Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Wed, 26 Jun 2024 04:54:28 -0700 Subject: [PATCH] Release v1.3.6 (#3411) --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- src/cfnlint/version.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9ae2f28a0..fb4ad265a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v1.3.6 +## What's Changed +* Remove falsy issues with FindInMap resolution by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3410 +* Remove resolution errors when default value Ref AWS::NoValue and bad mappings in FindInMap by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3410 +* Patch AWS::ImageBuilder::ContainerRecipe.InstanceConfiguration by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3413 + +**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.3.5...v1.3.6 + ### v1.3.5 ## What's Changed * Allow Ref AWS::NoValue in FindInMap parameters by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3399 diff --git a/README.md b/README.md index 701d47df3c..6fc5c5a36b 100644 --- a/README.md +++ b/README.md @@ -340,7 +340,7 @@ If you'd like cfn-lint to be run automatically when making changes to files in y ```yaml repos: - repo: https://github.com/aws-cloudformation/cfn-lint - rev: v1.3.5 # The version of cfn-lint to use + rev: v1.3.6 # The version of cfn-lint to use hooks: - id: cfn-lint files: path/to/cfn/dir/.*\.(json|yml|yaml)$ @@ -351,7 +351,7 @@ If you are using a `.cfnlintrc` and specifying the `templates` or `ignore_templa ```yaml repos: - repo: https://github.com/aws-cloudformation/cfn-lint - rev: v1.3.5 # The version of cfn-lint to use + rev: v1.3.6 # The version of cfn-lint to use hooks: - id: cfn-lint-rc ``` diff --git a/src/cfnlint/version.py b/src/cfnlint/version.py index 885f90ff71..e84b6bc39f 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "1.3.5" +__version__ = "1.3.6"