Skip to content

Commit 3fbc785

Browse files
authored
fix(rds): incorrect version definition of MySQL 8.4.3 (#32934)
### Issue # (if applicable) Closes #32933. ### Reason for this change The major version definition of MySQL 8.4.3 is incorrect. ### Description of changes Fixed the major version definition of MySQL 8.4.3. ### Describe any new or updated permissions being added ### Description of how you validated changes ### 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 ec73658 commit 3fbc785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ export class MysqlEngineVersion {
959959
/** Version "8.0.40". */
960960
public static readonly VER_8_0_40 = MysqlEngineVersion.of('8.0.40', '8.0');
961961
/** Version "8.4.3". */
962-
public static readonly VER_8_4_3 = MysqlEngineVersion.of('8.4.3', '8.0');
962+
public static readonly VER_8_4_3 = MysqlEngineVersion.of('8.4.3', '8.4');
963963

964964
/**
965965
* Create a new MysqlEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)