From 684612330f9e8865d43ae4adc85368a7741d57d8 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Tue, 26 Nov 2024 12:47:15 -0800 Subject: [PATCH] Release v1.20.1 (#3842) --- CHANGELOG.md | 11 +++++++++++ README.md | 4 ++-- src/cfnlint/version.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b2636c033..da7848fcb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +### v1.20.1 +## What's Changed +* Update CloudFormation schemas to 2024-11-23 by @github-actions in https://github.com/aws-cloudformation/cfn-lint/pull/3832 +* Add `nodejs22.x` to `AWS::Lambda::Function` `Runtime` enum by @JamesKyburz in https://github.com/aws-cloudformation/cfn-lint/pull/3841 +* Add `maxItems` for `PathPatternConfig` in `AWS::ElasticLoadBalancingV2::ListenerRule` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3835 + +## New Contributors +* @JamesKyburz made their first contribution in https://github.com/aws-cloudformation/cfn-lint/pull/3841 + +**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.20.0...v1.20.1 + ### v1.20.0 ## What's Changed * Update CloudFormation schemas to `2024-11-18` by @github-actions in https://github.com/aws-cloudformation/cfn-lint/pull/3828 diff --git a/README.md b/README.md index 294191ef95..1e69775234 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.20.0 # The version of cfn-lint to use + rev: v1.20.1 # 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.20.0 # The version of cfn-lint to use + rev: v1.20.1 # 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 8b16dffdcf..2e4ffa6581 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "1.20.0" +__version__ = "1.20.1"