Skip to content

Commit 9284326

Browse files
authored
Release v1.2.5a11 (#3305)
* Release v1.2.5a11
1 parent 34d4894 commit 9284326

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
### v1.2.5a11
2+
## What's Changed
3+
* Update CloudFormation schemas to 2024-06-17 by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3299
4+
* Cleanup rule pytest logic to make life easier by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3285
5+
* Cleanup `cfn_path` generation by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3287
6+
* Add error catching to better handle rule issues by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3289
7+
* Fix an issue with SSM params for ForEach by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3294
8+
* V1 - more typing and cleanup by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3296
9+
* Update resolver logic to see if parameter will result in applied conditions still being valid by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3303
10+
* Update rule [W2531](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#W2531) to validate when the specified runtime is deprecated by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3304
11+
* Update rule [E2531](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E2531) to validate when you can no longer create a lambda function with the specified runtime by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3304
12+
* Create rule [E2533](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E2533) to validate when you can no longer update a lambda function with the specified runtime by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3304
13+
14+
**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.2.5.a10...v1.2.5.a11
15+
116
### v1.2.5a10
217
## What's Changed
318
* Update CloudFormation schemas to `2024-06-07` by @kddejong in (pull #[3249](https://github.com/aws-cloudformation/cfn-lint/pull/3249))

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.2.5.a10"
6+
__version__ = "1.2.5.a11"

test/unit/rules/resources/rds/test_db_cluster_engine_version.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ def rule():
7070
ValidationError(
7171
(
7272
"'foo' is not one of ['5.7.44', '5.7.44-rds.20240408', "
73-
"'8.0.32', '8.0.33', '8.0.34', '8.0.35', '8.0.36']"
73+
"'5.7.44-rds.20240529', '8.0.32', '8.0.33', '8.0.34', "
74+
"'8.0.35', '8.0.36']"
7475
),
7576
rule=DbClusterEngineVersion(),
7677
path=deque(["EngineVersion"]),

test/unit/rules/resources/rds/test_db_instance_engine_version.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ def rule():
7979
ValidationError(
8080
(
8181
"'foo' is not one of ['5.7.44', '5.7.44-rds.20240408', "
82-
"'8.0.32', '8.0.33', '8.0.34', '8.0.35', '8.0.36']"
82+
"'5.7.44-rds.20240529', '8.0.32', '8.0.33', "
83+
"'8.0.34', '8.0.35', '8.0.36']"
8384
),
8485
rule=DbInstanceEngineVersion(),
8586
path=deque(["EngineVersion"]),

0 commit comments

Comments
 (0)