Skip to content

Commit 5bc91ce

Browse files
authored
Release v1.5.1 (#3478)
1 parent d964302 commit 5bc91ce

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### v1.5.1
2+
## What's Changed
3+
* Switch type comparison in BaseFn to use is_types_compatible by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3461
4+
* Update [E2015](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E2015) to split defaults on comma by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3466
5+
* Don't fail `anyOf` on warnings by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3469
6+
* Allow `Transform` section to have the full transform def by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3470
7+
* Update `GetAtt` logic for `AWS::ServiceCatalog::CloudFormationProvisionedProduct` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3475
8+
* Remove `requiredXor` for `AWS::EC2::Instance` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/#3477
9+
10+
**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.5.0...v1.5.1
11+
112
### v1.5.0
213
## What's Changed
314
* Update mappings to support transforms at the root level by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3439

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ If you'd like cfn-lint to be run automatically when making changes to files in y
342342
```yaml
343343
repos:
344344
- repo: https://github.com/aws-cloudformation/cfn-lint
345-
rev: v1.5.0 # The version of cfn-lint to use
345+
rev: v1.5.1 # The version of cfn-lint to use
346346
hooks:
347347
- id: cfn-lint
348348
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
353353
```yaml
354354
repos:
355355
- repo: https://github.com/aws-cloudformation/cfn-lint
356-
rev: v1.5.0 # The version of cfn-lint to use
356+
rev: v1.5.1 # The version of cfn-lint to use
357357
hooks:
358358
- id: cfn-lint-rc
359359
```

src/cfnlint/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
SPDX-License-Identifier: MIT-0
44
"""
55

6-
__version__ = "1.5.0"
6+
__version__ = "1.5.1"

0 commit comments

Comments
 (0)