Skip to content

Commit

Permalink
Release v1.2.5a11 (#3305)
Browse files Browse the repository at this point in the history
* Release v1.2.5a11
  • Loading branch information
kddejong authored Jun 17, 2024
1 parent 34d4894 commit 9284326
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
### v1.2.5a11
## What's Changed
* Update CloudFormation schemas to 2024-06-17 by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3299
* Cleanup rule pytest logic to make life easier by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3285
* Cleanup `cfn_path` generation by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3287
* Add error catching to better handle rule issues by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3289
* Fix an issue with SSM params for ForEach by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3294
* V1 - more typing and cleanup by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3296
* 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
* 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
* 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
* 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

**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.2.5.a10...v1.2.5.a11

### v1.2.5a10
## What's Changed
* Update CloudFormation schemas to `2024-06-07` by @kddejong in (pull #[3249](https://github.com/aws-cloudformation/cfn-lint/pull/3249))
Expand Down
2 changes: 1 addition & 1 deletion src/cfnlint/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
SPDX-License-Identifier: MIT-0
"""

__version__ = "1.2.5.a10"
__version__ = "1.2.5.a11"
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ def rule():
ValidationError(
(
"'foo' is not one of ['5.7.44', '5.7.44-rds.20240408', "
"'8.0.32', '8.0.33', '8.0.34', '8.0.35', '8.0.36']"
"'5.7.44-rds.20240529', '8.0.32', '8.0.33', '8.0.34', "
"'8.0.35', '8.0.36']"
),
rule=DbClusterEngineVersion(),
path=deque(["EngineVersion"]),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def rule():
ValidationError(
(
"'foo' is not one of ['5.7.44', '5.7.44-rds.20240408', "
"'8.0.32', '8.0.33', '8.0.34', '8.0.35', '8.0.36']"
"'5.7.44-rds.20240529', '8.0.32', '8.0.33', "
"'8.0.34', '8.0.35', '8.0.36']"
),
rule=DbInstanceEngineVersion(),
path=deque(["EngineVersion"]),
Expand Down

0 comments on commit 9284326

Please sign in to comment.