Skip to content

Commit 0bf1182

Browse files
authoredMar 5, 2025··
Release v1.28.0 (#3986)
1 parent b04e8f9 commit 0bf1182

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.28.0
2+
## What's Changed
3+
* Add `uniqueKeys` for `Sid` in IAM policies by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3982
4+
* Create ipv4 and ipv6 network formats by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3981
5+
* Add rule [E3059](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3059) to validate if `AWS::EC2::Subnet` CIDRs are in a `AWS::EC2::VPC` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3985
6+
* Add rule [E3060](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3060) to validate if `AWS::EC2::Subnet` CIDRs overlap with each other by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3985
7+
* Update CloudFormation schemas to `2025-03-04` by @github-actions in https://github.com/aws-cloudformation/cfn-lint/pull/3980
8+
9+
**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.27.0...v1.28.0
10+
111
### v1.27.0
212
## What's Changed
313
* Provide configuration for exceptions to [E3019](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3019) by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3972

Diff for: ‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ If you'd like cfn-lint to be run automatically when making changes to files in y
342342
```yaml
343343
repos:
344344
- repo: https://github.com/aws-cloudformation/cfn-lint
345-
rev: v1.27.0 # The version of cfn-lint to use
345+
rev: v1.28.0 # The version of cfn-lint to use
346346
hooks:
347347
- id: cfn-lint
348348
files: path/to/cfn/dir/.*\.(json|yml|yaml)$
@@ -353,7 +353,7 @@ If you are using a `.cfnlintrc` and specifying the `templates` or `ignore_templa
353353
```yaml
354354
repos:
355355
- repo: https://github.com/aws-cloudformation/cfn-lint
356-
rev: v1.27.0 # The version of cfn-lint to use
356+
rev: v1.28.0 # The version of cfn-lint to use
357357
hooks:
358358
- id: cfn-lint-rc
359359
```

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.27.0"
6+
__version__ = "1.28.0"

0 commit comments

Comments
 (0)
Please sign in to comment.