Skip to content

Commit e69698a

Browse files
authored
Release v1.47.0 (#4391)
1 parent d54d24b commit e69698a

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### v1.47.0
2+
## What's Changed
3+
* Remove Python 3.9 support (EOL October 2025) by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/4383
4+
* feat: add region filtering to --update-specs by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/4382
5+
* Add unknown validation state for intrinsic functions in composite validators by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/4384
6+
* Update CloudFormation schemas to `2026-03-10` by @github-actions[bot] in https://github.com/aws-cloudformation/cfn-lint/pull/4381
7+
* Fix/skip resolve unconstrained schema by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/4388
8+
* chore(deps): bump setuptools from 82.0.0 to 82.0.1 in /requirements by @dependabot[bot] in https://github.com/aws-cloudformation/cfn-lint/pull/4385
9+
* Update CloudFormation schemas to `2026-03-13` by @github-actions[bot] in https://github.com/aws-cloudformation/cfn-lint/pull/4386
10+
11+
**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.46.0...v1.47.0
12+
113
### v1.46.0
214
## What's Changed
315
* Add rule [E3063](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3063) to validate GuardDuty Detector property exclusivity by @JuanHPassos in https://github.com/aws-cloudformation/cfn-lint/pull/4364

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

0 commit comments

Comments
 (0)