Skip to content

Commit f8d0487

Browse files
committed
Release v1.53.3
1 parent aa52f0d commit f8d0487

4 files changed

Lines changed: 15 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### v1.53.3
2+
## What's Changed
3+
* Cache `RefResolver` subschemas lookup per instance by @sir-sigurd in https://github.com/aws-cloudformation/cfn-lint/pull/4590
4+
* chore(deps): bump pyinstaller from 6.20.0 to 6.21.0 in /requirements by @dependabot[bot] in https://github.com/aws-cloudformation/cfn-lint/pull/4595
5+
* chore(deps): bump setuptools from 82.0.1 to 83.0.0 in /requirements by @dependabot[bot] in https://github.com/aws-cloudformation/cfn-lint/pull/4593
6+
* fix([E3701](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3701)): Prevent false positive for `Fn::If` in `OutputArtifacts` `Name` by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/4596
7+
* fix(schema): Add file locking to prevent concurrent cache corruption by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/4598
8+
* Update CloudFormation schemas to `2026-07-28` by @github-actions[bot] in https://github.com/aws-cloudformation/cfn-lint/pull/4589
9+
10+
**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.53.2...v1.53.3
11+
112
### v1.53.2
213
## What's Changed
314
* Compute Context.module_names lazily to avoid rescan on every evolve() by @sir-sigurd in https://github.com/aws-cloudformation/cfn-lint/pull/4586

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.53.2
3+
RUN pip install cfn-lint[full]==1.53.3
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.53.2 # The version of cfn-lint to use
350+
rev: v1.53.3 # 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.53.2 # The version of cfn-lint to use
361+
rev: v1.53.3 # 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.53.2"
6+
__version__ = "1.53.3"

0 commit comments

Comments
 (0)