Skip to content

Commit 00ee90b

Browse files
authored
Release v0.82.0 (#2910)
1 parent a482a8b commit 00ee90b

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### v0.82.0
2+
###### Features
3+
- Add rule [W2530](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#W2530) to warn when `SnapStart` isn't configured correctly (pull #[2905](https://github.com/aws-cloudformation/cfn-lint/pull/2905))
4+
- Add rule [I2530](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#W2530) to warn when `SnapStart` isn't configured on newer Java runtimes (pull #[2905](https://github.com/aws-cloudformation/cfn-lint/pull/2905))
5+
- Add rule [E2530](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#W2530) to error when `SnapStart` is configured on an unsupported runtime (pull #[2905](https://github.com/aws-cloudformation/cfn-lint/pull/2905))
6+
###### CloudFormation Specifications
7+
- Update CloudFormation specs to `144.0.0` (pull #[2898](https://github.com/aws-cloudformation/cfn-lint/pull/2898))
8+
19
### v0.81.0
210
###### CloudFormation Specifications
311
- Update CloudFormation specs to `143.0.0` (pull #[2893](https://github.com/aws-cloudformation/cfn-lint/pull/2893))
@@ -6,7 +14,6 @@
614
- Update rule [E1017](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E1017) to allow `Fn::Select` to allow `Fn::Select` (pull #[2900](https://github.com/aws-cloudformation/cfn-lint/pull/2900))
715
- Update rule [E2532](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E2532) to support `ToleratedFailurePercentage` and `ItemBatcher` to `Map` (pull #[2901](https://github.com/aws-cloudformation/cfn-lint/pull/2901))
816

9-
1017
### v0.80.4
1118
###### CloudFormation Specifications
1219
- Update CloudFormation specs to `142.0.0` (pull #[2889](https://github.com/aws-cloudformation/cfn-lint/pull/2889))

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.81.0 # The version of cfn-lint to use
327+
rev: v0.82.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.81.0 # The version of cfn-lint to use
337+
rev: v0.82.0 # 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.81.0"
6+
__version__ = "0.82.0"

0 commit comments

Comments
 (0)