Skip to content

Commit dcb5cf1

Browse files
authored
feat(rds): support 8.0.40 engine version for RDS for MySQL (#32117)
Support new minor version * Ref: [Amazon RDS for MySQL supports new minor version 8.0.40 ](https://aws.amazon.com/about-aws/whats-new/2024/11/amazon-rds-mysql-new-minor-version/) ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent d1b3c81 commit dcb5cf1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -948,6 +948,8 @@ export class MysqlEngineVersion {
948948
public static readonly VER_8_0_37 = MysqlEngineVersion.of('8.0.37', '8.0');
949949
/** Version "8.0.39". */
950950
public static readonly VER_8_0_39 = MysqlEngineVersion.of('8.0.39', '8.0');
951+
/** Version "8.0.40". */
952+
public static readonly VER_8_0_40 = MysqlEngineVersion.of('8.0.40', '8.0');
951953

952954
/**
953955
* Create a new MysqlEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)