Skip to content

Commit 5d5e6c8

Browse files
authored
Release v1.3.4 (#3393)
1 parent 8ed8265 commit 5d5e6c8

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
### v1.3.4
2+
## What's Changed
3+
* Clean up errors in the schemas by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3375
4+
* Relax [E3041](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3041) to support DNS root records by @jakob-keller in https://github.com/aws-cloudformation/cfn-lint/pull/3377
5+
* Allow `AllowedPattern` with AWS type parameters by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3388
6+
* Default fn validator context will be not strict type checking by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3386
7+
* Update IAM resource ARN patterns by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3389
8+
* Update resolution validation to only return an error if there are no valid values by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3390
9+
* Better resolution of mappings in transform by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3392
10+
11+
12+
**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.3.3...v1.3.4
13+
114
### v1.3.3
215
## What's Changed
316
* Remove rule setting in `PropertyNames` rule by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3365

README.md

+2-2
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.3 # The version of cfn-lint to use
343+
rev: v1.3.4 # 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.3 # The version of cfn-lint to use
354+
rev: v1.3.4 # The version of cfn-lint to use
355355
hooks:
356356
- id: cfn-lint-rc
357357
```

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.3.3"
6+
__version__ = "1.3.4"

0 commit comments

Comments
 (0)