Skip to content

Commit bb28823

Browse files
authored
chore(rds): add MySQL 5.7.40 (#22917)
---- Add missing Database engine versions. ref: https://aws.amazon.com/about-aws/whats-new/2022/11/amazon-rds-mysql-supports-new-minor-version-5-7-40/ ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 4a88cbb commit bb28823

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,8 @@ export class MysqlEngineVersion {
558558
public static readonly VER_5_7_38 = MysqlEngineVersion.of('5.7.38', '5.7');
559559
/** Version "5.7.39". */
560560
public static readonly VER_5_7_39 = MysqlEngineVersion.of('5.7.39', '5.7');
561+
/** Version "5.7.40". */
562+
public static readonly VER_5_7_40 = MysqlEngineVersion.of('5.7.40', '5.7');
561563

562564
/** Version "8.0" (only a major version, without a specific minor version). */
563565
public static readonly VER_8_0 = MysqlEngineVersion.of('8.0', '8.0');

0 commit comments

Comments
 (0)