Skip to content

Commit 1a45182

Browse files
authored
Release v1.4.0 (#3431)
1 parent 3001eb5 commit 1a45182

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

Diff for: CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### v1.4.0
2+
## What's Changed
3+
* Default `EngineMode` for [E3686](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3686) is `provisioned` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3425
4+
* Update docdb engine version to have `5.0.0` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3428
5+
* In legacy RulesCollection validate the rule is enabled before returning result by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3429
6+
* Convert all json properties to support `string` and `object` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3423
7+
* Patch in better validation for `Tags` properties that just have `type` `object` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3423
8+
9+
**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.3.7...v1.4.0
10+
111
### v1.3.7
212
## What's Changed
313
* Consider output conditions in [E6101](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E6101) by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3414

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

Diff for: 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.7"
6+
__version__ = "1.4.0"

0 commit comments

Comments
 (0)