Skip to content

Commit c5cb3db

Browse files
authored
Release v1.3.3 (#3374)
1 parent ced5a6f commit c5cb3db

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### v1.3.3
2+
## What's Changed
3+
* Remove rule setting in `PropertyNames` rule by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3365
4+
* update logic in rule [E3686](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3686) by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3367
5+
* Patch `AWS::Glue::SecurityConfiguration` and other resource issues by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3371
6+
* Parameter of `List<Number>` can have an integer default by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3372
7+
* Better comparison of json schema types for cfn usage by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3373
8+
9+
**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.3.2...v1.3.3
10+
111
### v1.3.2
212
## What's Changed
313
* Switch max condition logic to attemptes over returned by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3359

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ If you'd like cfn-lint to be run automatically when making changes to files in y
340340
```yaml
341341
repos:
342342
- repo: https://github.com/aws-cloudformation/cfn-lint
343-
rev: v1.3.2 # The version of cfn-lint to use
343+
rev: v1.3.3 # The version of cfn-lint to use
344344
hooks:
345345
- id: cfn-lint
346346
files: path/to/cfn/dir/.*\.(json|yml|yaml)$
@@ -351,7 +351,7 @@ If you are using a `.cfnlintrc` and specifying the `templates` or `ignore_templa
351351
```yaml
352352
repos:
353353
- repo: https://github.com/aws-cloudformation/cfn-lint
354-
rev: v1.3.2 # The version of cfn-lint to use
354+
rev: v1.3.3 # The version of cfn-lint to use
355355
hooks:
356356
- id: cfn-lint-rc
357357
```

src/cfnlint/version.py

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

6-
__version__ = "1.3.2"
6+
__version__ = "1.3.3"

0 commit comments

Comments
 (0)