Skip to content

Commit 86f0370

Browse files
authored
Release v0.78.1 (#2793)
1 parent 92d643b commit 86f0370

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### v0.78.1
2+
###### Features
3+
- Update rule [E1018](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E1018) to flag splitting dynamic references (pull #[2786](https://github.com/aws-cloudformation/cfn-lint/pull/2786))
4+
- New rule [W2533](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#W2533) to validate lambda zip deployment configuration (pull #[2682](https://github.com/aws-cloudformation/cfn-lint/pull/2682))
5+
- Supporting intrinsic function in `DeletionPolicy` and `UpdateReplacePolicy` (pull #[2784](https://github.com/aws-cloudformation/cfn-lint/pull/2784))
6+
###### CloudFormation Specifications
7+
- Update CloudFormation specs to `130.0.0` (pull #[2783](https://github.com/aws-cloudformation/cfn-lint/pull/2783))
8+
###### Fixes
9+
- Pin `jsonschema` to be under `4.18` (pull #[2792](https://github.com/aws-cloudformation/cfn-lint/pull/2792))
10+
- Fix using `include_experimental` in metadata (pull #[2785](https://github.com/aws-cloudformation/cfn-lint/pull/2785))
11+
- Fix rule [E1024](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E1024) to better handle conditions (pull #[2780](https://github.com/aws-cloudformation/cfn-lint/pull/2780))
12+
113
### v0.77.10
214
###### CloudFormation Specifications
315
- Update CloudFormation specs to `127.0.0` (pull #[2763](https://github.com/aws-cloudformation/cfn-lint/pull/2763))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ If you'd like cfn-lint to be run automatically when making changes to files in y
324324
```yaml
325325
repos:
326326
- repo: https://github.com/aws-cloudformation/cfn-lint
327-
rev: v0.77.10 # The version of cfn-lint to use
327+
rev: v0.78.1 # The version of cfn-lint to use
328328
hooks:
329329
- id: cfn-lint
330330
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
334334
```yaml
335335
repos:
336336
- repo: https://github.com/aws-cloudformation/cfn-lint
337-
rev: v0.77.10 # The version of cfn-lint to use
337+
rev: v0.78.1 # The version of cfn-lint to use
338338
hooks:
339339
- id: cfn-lint-rc
340340
```

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__ = "0.77.10"
6+
__version__ = "0.78.1"

0 commit comments

Comments
 (0)