From 368fbeed2400af9ec2876c76bd5048a251fb6573 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Fri, 17 May 2024 08:03:50 -0700 Subject: [PATCH] Release v0.87.3 (#3254) --- 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 fc5136fc78..626be724ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v0.87.3 +###### CloudFormation Specifications +- Update CloudFormation specs to `174.0.0` (pull #[3229](https://github.com/aws-cloudformation/cfn-lint/pull/3229)) +###### Fixes +- In Graph make sure is_resource id is string (pull #[3252](https://github.com/aws-cloudformation/cfn-lint/pull/3252)) +- Update language extension transform to enumerate FindInMap when can't be resolved (pull #[3246](https://github.com/aws-cloudformation/cfn-lint/pull/3246)) +- Add `AWS::IAM::ManagedPolicy.PolicyArn` to `AWS::IAM::ManagedPolicy.Arn` (pull #[3230](https://github.com/aws-cloudformation/cfn-lint/pull/3230)) + ### v0.87.2 ###### CloudFormation Specifications - Update CloudFormation specs to `173.0.0` (pull #[3215](https://github.com/aws-cloudformation/cfn-lint/pull/3215)) diff --git a/README.md b/README.md index 4a31aac49b..b26474050a 100644 --- a/README.md +++ b/README.md @@ -324,7 +324,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: v0.87.2 # The version of cfn-lint to use + rev: v0.87.3 # The version of cfn-lint to use hooks: - id: cfn-lint files: path/to/cfn/dir/.*\.(json|yml|yaml)$ @@ -334,7 +334,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: v0.87.2 # The version of cfn-lint to use + rev: v0.87.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 d3fd832b9c..7e6ea1db9b 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "0.87.2" +__version__ = "0.87.3"