Skip to content

Commit 596a08b

Browse files
authored
Release v1.45.0 (#4374)
1 parent 8f85b91 commit 596a08b

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
### v1.45.0
2+
## What's Changed
3+
* chore(deps): bump setuptools from `80.10.2` to `82.0.0` in /requirements by @dependabot[bot] in https://github.com/aws-cloudformation/cfn-lint/pull/4366
4+
* Add rule [E3685](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3685) to validate container image functions cannot use `Handler`, `Runtime`, or `Layers` by @chrisqm-dev in https://github.com/aws-cloudformation/cfn-lint/pull/4372
5+
* Add rule [E3696](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3696) to validate `LogLevel` is not supported when `LogFormat` is set to `Text` by @chrisqm-dev in https://github.com/aws-cloudformation/cfn-lint/pull/4372
6+
* chore(deps): bump pyinstaller from `6.18.0` to `6.19.0` in /requirements by @dependabot[bot] in https://github.com/aws-cloudformation/cfn-lint/pull/4370
7+
* Pin cfn-lint version to `1.44.0` in Dockerfile by @rchildress87 in https://github.com/aws-cloudformation/cfn-lint/pull/4365
8+
* Fix [E3009](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3009) false positive for `Fn::Transform` in additional properties by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/4368
9+
* Accept any SSM parameter and List types with warning for undocumented types by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/4361
10+
* Update CloudFormation schemas to `2026-02-23` by @github-actions[bot] in https://github.com/aws-cloudformation/cfn-lint/pull/4362
11+
12+
## New Contributors
13+
* @chrisqm-dev made their first contribution in https://github.com/aws-cloudformation/cfn-lint/pull/4372
14+
* @rchildress87 made their first contribution in https://github.com/aws-cloudformation/cfn-lint/pull/4365
15+
16+
**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.44.0...v1.45.0
17+
118
### v1.44.0
219
## What's Changed
320
* Add [E3704](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3704): Enforce TransitEncryptionEnabled for Valkey ReplicationGroups by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/4353

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM public.ecr.aws/docker/library/python:3.13-alpine3.20
22

3-
RUN pip install cfn-lint[full]==1.44.0
3+
RUN pip install cfn-lint[full]==1.45.0
44
RUN pip install pydot
55

66
ENTRYPOINT ["cfn-lint"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ If you'd like cfn-lint to be run automatically when making changes to files in y
347347
```yaml
348348
repos:
349349
- repo: https://github.com/aws-cloudformation/cfn-lint
350-
rev: v1.44.0 # The version of cfn-lint to use
350+
rev: v1.45.0 # The version of cfn-lint to use
351351
hooks:
352352
- id: cfn-lint
353353
files: path/to/cfn/dir/.*\.(json|yml|yaml)$
@@ -358,7 +358,7 @@ If you are using a `.cfnlintrc` and specifying the `templates` or `ignore_templa
358358
```yaml
359359
repos:
360360
- repo: https://github.com/aws-cloudformation/cfn-lint
361-
rev: v1.44.0 # The version of cfn-lint to use
361+
rev: v1.45.0 # The version of cfn-lint to use
362362
hooks:
363363
- id: cfn-lint-rc
364364
```

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__ = "1.44.0"
6+
__version__ = "1.45.0"

0 commit comments

Comments
 (0)