diff --git a/CHANGELOG.md b/CHANGELOG.md index 19fb9844cd..2e475f8615 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v1.22.7 +## What's Changed +* Allow `Fn::Transform` alongside keys in mappings by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3920 +* Remove Sagemaker domain patch and run update specs by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3922 +* Update CloudFormation schemas to `2025-01-23` by @github-actions in https://github.com/aws-cloudformation/cfn-lint/pull/3917 + +**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.22.6...v1.22.7 + ### v1.22.6 ## What's Changed * Fix resolver logic for better context logic by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3915 diff --git a/README.md b/README.md index c1a1d01b16..1112b94173 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.22.6 # The version of cfn-lint to use + rev: v1.22.7 # 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.22.6 # The version of cfn-lint to use + rev: v1.22.7 # 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 f4c1781f86..8a3b8df405 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "1.22.6" +__version__ = "1.22.7"