You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(rds): add MySQL enginge versions 5.7.44(patch), 8.0.41 and 8.4.4 (#33732)
### Issue # (if applicable)
N/A
### Reason for this change
New MySQL engine versions are available.
https://aws.amazon.com/about-aws/whats-new/2025/02/amazon-rds-mysql-new-minor-versions-8-0-41-8-4-4/https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Concepts.VersionMgmt.html
### Description of changes
Added following versions:
- 5.7.44-rds.20250103
- 5.7.44-rds.20250213
- 8.0.41
- 8.4.4
### Describe any new or updated permissions being added
N/A
### Description of how you validated changes
``` console
$ aws --region us-east-1 rds describe-db-engine-versions --engine mysql --query 'DBEngineVersions[?EngineVersion==`5.7.44-rds.20250103`||EngineVersion==`5.7.44-rds.20250213`||EngineVersion==`8.0.41`||EngineVersion==`8.4.4`].[DBEngineVersionDescription,Status]'
[
[
"MySQL 5.7.44-rds.20250103",
"available"
],
[
"MySQL 5.7.44-rds.20250213",
"available"
],
[
"MySQL 8.0.41",
"available"
],
[
"MySQL 8.4.4",
"available"
]
]
```
### 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*
0 commit comments