Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(rds): Add support for RDS MySQL minor versions of 8.0.34 and 5.7.43 #26699

Merged
merged 2 commits into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,8 @@ export class MysqlEngineVersion {
public static readonly VER_5_7_41 = MysqlEngineVersion.of('5.7.41', '5.7');
/** Version "5.7.42". */
public static readonly VER_5_7_42 = MysqlEngineVersion.of('5.7.42', '5.7');
/** Version "5.7.43". */
public static readonly VER_5_7_43 = MysqlEngineVersion.of('5.7.43', '5.7');

/** Version "8.0" (only a major version, without a specific minor version). */
public static readonly VER_8_0 = MysqlEngineVersion.of('8.0', '8.0');
Expand Down Expand Up @@ -631,6 +633,8 @@ export class MysqlEngineVersion {
public static readonly VER_8_0_32 = MysqlEngineVersion.of('8.0.32', '8.0');
/** Version "8.0.33". */
public static readonly VER_8_0_33 = MysqlEngineVersion.of('8.0.33', '8.0');
/** Version "8.0.34". */
public static readonly VER_8_0_34 = MysqlEngineVersion.of('8.0.34', '8.0');

/**
* Create a new MysqlEngineVersion with an arbitrary version.
Expand Down