From d49a967c496435cf0d2faf64664d58fdbc245899 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Mon, 22 Apr 2024 09:39:54 -0700 Subject: [PATCH] Release v0.86.4 (#3154) --- CHANGELOG.md | 9 +++++++++ README.md | 4 ++-- src/cfnlint/version.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da50afe42b..2201ae0438 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### v0.86.4 +###### CloudFormation Specifications +- Update CloudFormation specs to `170.0.0` (pull #[3149](https://github.com/aws-cloudformation/cfn-lint/pull/3149)) +###### Fixes +- Only pick up `.json` files when using registry shcemas (pull #[3150](https://github.com/aws-cloudformation/cfn-lint/pull/3150)) +- Update IAM policy validation to not allow `Action` and `NotAction` (pull #[3145](https://github.com/aws-cloudformation/cfn-lint/pull/3145)) +- Update IAM policy validation to not allow `Principal` and `NotPrincipal` (pull #[3145](https://github.com/aws-cloudformation/cfn-lint/pull/3145)) +- Update IAM policy validation to not allow `Resource` and `NotResource` (pull #[3145](https://github.com/aws-cloudformation/cfn-lint/pull/3145)) + ### v0.86.3 ###### CloudFormation Specifications - Update CloudFormation specs to `169.0.0` (pull #[3135](https://github.com/aws-cloudformation/cfn-lint/pull/3135)) diff --git a/README.md b/README.md index 910c92dff3..6ebb9befd2 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.86.3 # The version of cfn-lint to use + rev: v0.86.4 # 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.86.3 # The version of cfn-lint to use + rev: v0.86.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 754f7ef149..10f73c4d77 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "0.86.3" +__version__ = "0.86.4"