From df3f505f90faf20d2d1023c18627808166666cac Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Wed, 4 Sep 2024 15:40:43 -0700 Subject: [PATCH] Release v1.12.3 (#3660) --- 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 e5a19843f2..0073079be6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v1.12.3 +## What's Changed +* Allow for patch in place by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3649 +* Add integration tests for AZ schema changes by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3655 +* Better support for rule Equals when static by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3659 + +**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.12.2...v1.12.3 + ### v1.12.2 ## What's Changed * Don't resolve pseudoparams in findinmap by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3653 diff --git a/README.md b/README.md index 0f88751cfd..50f20959a7 100644 --- a/README.md +++ b/README.md @@ -342,7 +342,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.12.2 # The version of cfn-lint to use + rev: v1.12.3 # The version of cfn-lint to use hooks: - id: cfn-lint files: path/to/cfn/dir/.*\.(json|yml|yaml)$ @@ -353,7 +353,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.12.2 # The version of cfn-lint to use + rev: v1.12.3 # 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 443c0f3497..8aa53c6649 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "1.12.2" +__version__ = "1.12.3"