Skip to content

Commit 2b354fb

Browse files
authored
Release v0.77.0 (#2677)
1 parent f746af4 commit 2b354fb

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
### v0.77.0
2+
###### Features
3+
- Convert from `re` to `regex` (pull #[2643](https://github.com/aws-cloudformation/cfn-lint/pull/2643))
4+
- Implement `IS DEFINED` in custom rules (pull #[2656](https://github.com/aws-cloudformation/cfn-lint/pull/2656))
5+
###### CloudFormation Specifications
6+
- Update CloudFormation specs to `119.0.0` (pull #[2660](https://github.com/aws-cloudformation/cfn-lint/pull/2660))
7+
- Patch `AWS::S3::Bucket.InventoryConfiguration.OptionalFields` to include `ChecksumAlgorithm` (pull #[2666](https://github.com/aws-cloudformation/cfn-lint/pull/2666))
8+
- Patch `AWS::Cognito::UserPool.UserPollTags` to be a map of strings (pull #[2671](https://github.com/aws-cloudformation/cfn-lint/pull/2671))
9+
###### Fixes
10+
- Update SAM translation to substitute for a sub in `CodeUri` (pull #[2661](https://github.com/aws-cloudformation/cfn-lint/pull/2661))
11+
- Update language extensions to validate if a ref is iterable before assuming it is (pull #[2665](https://github.com/aws-cloudformation/cfn-lint/pull/2665))
12+
- Update rule [E3001](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3001) to consider a resource level condition when evaluating if the resource type exists (pull #[2668](https://github.com/aws-cloudformation/cfn-lint/pull/2668))
13+
- Update rule [E3012](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3001) to validate if a map is actually a map (pull #[2669](https://github.com/aws-cloudformation/cfn-lint/pull/2669))
14+
115
### v0.76.2
216
###### CloudFormation Specifications
317
- Update CloudFormation specs to `118.1.0` (pull #[2644](https://github.com/aws-cloudformation/cfn-lint/pull/2644))

README.md

+2-2
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.76.2 # The version of cfn-lint to use
327+
rev: v0.77.0 # 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.76.2 # The version of cfn-lint to use
337+
rev: v0.77.0 # The version of cfn-lint to use
338338
hooks:
339339
- id: cfn-lint-rc
340340
```

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__ = "0.76.2"
6+
__version__ = "0.77.0"

0 commit comments

Comments
 (0)