Skip to content

Commit

Permalink
fix(rds): incorrect version definition of MySQL 8.4.3 (#32934)
Browse files Browse the repository at this point in the history
### 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*
  • Loading branch information
Tietew authored Jan 15, 2025
1 parent ec73658 commit 3fbc785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ export class MysqlEngineVersion {
/** Version "8.0.40". */
public static readonly VER_8_0_40 = MysqlEngineVersion.of('8.0.40', '8.0');
/** Version "8.4.3". */
public static readonly VER_8_4_3 = MysqlEngineVersion.of('8.4.3', '8.0');
public static readonly VER_8_4_3 = MysqlEngineVersion.of('8.4.3', '8.4');

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

0 comments on commit 3fbc785

Please sign in to comment.