From 27039be8d7b0d05695ab11085b71cfede97c2bc9 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Mon, 4 Nov 2024 11:45:27 -0800 Subject: [PATCH] Release v1.18.4 (#3806) --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- src/cfnlint/version.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de860375ad..2ea1b26a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### v1.18.4 +## What's Changed +* Fix validating min/maxLength whena property has an array for keyword `type` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3805 +* Update CloudFormation schemas to `2024-11-01` by @github-actions in https://github.com/aws-cloudformation/cfn-lint/pull/3803 + +**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.18.3...v1.18.4 + ### v1.18.3 ## What's Changed * Enhanced monitoring can be configured on aurora clusters by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3801 diff --git a/README.md b/README.md index 3d2bccc57c..fde905655d 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.18.3 # The version of cfn-lint to use + rev: v1.18.4 # 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.18.3 # The version of cfn-lint to use + rev: v1.18.4 # 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 6fed22e7e0..cf2e44a8a8 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "1.18.3" +__version__ = "1.18.4"