Skip to content

Commit 19e1eb6

Browse files
authored
chore(rds): Add support for RDS MySQL minor versions of 8.0.34 and 5.7.43 (#26699)
Add support for RDS MySQL minor versions of 8.0.34 and 5.7.43 https://aws.amazon.com/about-aws/whats-new/2023/08/amazon-rds-mysql-new-minor-versions/ https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Concepts.VersionMgmt.html ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 8289b06 commit 19e1eb6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

+4
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,8 @@ export class MysqlEngineVersion {
594594
public static readonly VER_5_7_41 = MysqlEngineVersion.of('5.7.41', '5.7');
595595
/** Version "5.7.42". */
596596
public static readonly VER_5_7_42 = MysqlEngineVersion.of('5.7.42', '5.7');
597+
/** Version "5.7.43". */
598+
public static readonly VER_5_7_43 = MysqlEngineVersion.of('5.7.43', '5.7');
597599

598600
/** Version "8.0" (only a major version, without a specific minor version). */
599601
public static readonly VER_8_0 = MysqlEngineVersion.of('8.0', '8.0');
@@ -631,6 +633,8 @@ export class MysqlEngineVersion {
631633
public static readonly VER_8_0_32 = MysqlEngineVersion.of('8.0.32', '8.0');
632634
/** Version "8.0.33". */
633635
public static readonly VER_8_0_33 = MysqlEngineVersion.of('8.0.33', '8.0');
636+
/** Version "8.0.34". */
637+
public static readonly VER_8_0_34 = MysqlEngineVersion.of('8.0.34', '8.0');
634638

635639
/**
636640
* Create a new MysqlEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)