Skip to content

Commit d1a8cbe

Browse files
authoredMar 11, 2025··
feat(rds): add MySQL enginge versions 5.7.44(patch), 8.0.41 and 8.4.4 (#33732)
### Issue # (if applicable) N/A ### Reason for this change New MySQL engine versions are available. https://aws.amazon.com/about-aws/whats-new/2025/02/amazon-rds-mysql-new-minor-versions-8-0-41-8-4-4/ https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Concepts.VersionMgmt.html ### Description of changes Added following versions: - 5.7.44-rds.20250103 - 5.7.44-rds.20250213 - 8.0.41 - 8.4.4 ### Describe any new or updated permissions being added N/A ### Description of how you validated changes ``` console $ aws --region us-east-1 rds describe-db-engine-versions --engine mysql --query 'DBEngineVersions[?EngineVersion==`5.7.44-rds.20250103`||EngineVersion==`5.7.44-rds.20250213`||EngineVersion==`8.0.41`||EngineVersion==`8.4.4`].[DBEngineVersionDescription,Status]' [ [ "MySQL 5.7.44-rds.20250103", "available" ], [ "MySQL 5.7.44-rds.20250213", "available" ], [ "MySQL 8.0.41", "available" ], [ "MySQL 8.4.4", "available" ] ] ``` ### 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 c4fceb2 commit d1a8cbe

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

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

+8
Original file line numberDiff line numberDiff line change
@@ -868,6 +868,10 @@ export class MysqlEngineVersion {
868868
public static readonly VER_5_7_44_RDS_20240529 = MysqlEngineVersion.of('5.7.44-rds.20240529', '5.7');
869869
/** Version "5.7.44-rds.20240808". */
870870
public static readonly VER_5_7_44_RDS_20240808 = MysqlEngineVersion.of('5.7.44-rds.20240808', '5.7');
871+
/** Version "5.7.44-rds.20250103". */
872+
public static readonly VER_5_7_44_RDS_20250103 = MysqlEngineVersion.of('5.7.44-rds.20250103', '5.7');
873+
/** Version "5.7.44-rds.20250213". */
874+
public static readonly VER_5_7_44_RDS_20250213 = MysqlEngineVersion.of('5.7.44-rds.20250213', '5.7');
871875

872876
/** Version "8.0" (only a major version, without a specific minor version). */
873877
public static readonly VER_8_0 = MysqlEngineVersion.of('8.0', '8.0');
@@ -967,8 +971,12 @@ export class MysqlEngineVersion {
967971
public static readonly VER_8_0_39 = MysqlEngineVersion.of('8.0.39', '8.0');
968972
/** Version "8.0.40". */
969973
public static readonly VER_8_0_40 = MysqlEngineVersion.of('8.0.40', '8.0');
974+
/** Version "8.0.41". */
975+
public static readonly VER_8_0_41 = MysqlEngineVersion.of('8.0.41', '8.0');
970976
/** Version "8.4.3". */
971977
public static readonly VER_8_4_3 = MysqlEngineVersion.of('8.4.3', '8.4');
978+
/** Version "8.4.4". */
979+
public static readonly VER_8_4_4 = MysqlEngineVersion.of('8.4.4', '8.4');
972980

973981
/**
974982
* Create a new MysqlEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)
Please sign in to comment.