From da0b82c21e1ddd3c301db8f98e39767e07ff32fc Mon Sep 17 00:00:00 2001 From: Tomoya Oda <38136327+tmyoda@users.noreply.github.com> Date: Mon, 19 Feb 2024 21:51:25 +0000 Subject: [PATCH] feat(rds): support Aurora MySQL 3.05.2 (#29166) This PR adds support for Aurora MySQL 3.05.2. https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.3052.html ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts b/packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts index 4ea2476bde536..38a44394d9f12 100644 --- a/packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts +++ b/packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts @@ -548,6 +548,8 @@ export class AuroraMysqlEngineVersion { public static readonly VER_3_05_0 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.0'); /** Version "8.0.mysql_aurora.3.05.1". */ public static readonly VER_3_05_1 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.1'); + /** Version "8.0.mysql_aurora.3.05.2". */ + public static readonly VER_3_05_2 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.2'); /** * Create a new AuroraMysqlEngineVersion with an arbitrary version.