- Newest
- Most votes
- Most comments
The upgrade will not be automatically forced on October 31st, 2025. According to the notification, RDS will upgrade your databases running the affected MySQL Extended Support minor versions (5.7.44-RDS.20240408, 5.7.44-RDS.20240529, and 5.7.44-RDS.20240808) to version 5.7.44-RDS.20250213 or higher during a scheduled maintenance window after October 31, 2025.
This means the upgrade will occur during your next scheduled maintenance window that falls after the October 31, 2025 end-of-support date. If your next scheduled maintenance window is on November 1st, 2025, then the upgrade would likely happen during that window.
The notification indicates that starting October 1, 2025, you won't be able to create new instances with these minor versions, but existing instances will continue to run until they're upgraded during a scheduled maintenance window after the end-of-support date.
It's recommended that you proactively upgrade your databases before the end-of-support date to minimize any potential issues and to have more control over when the upgrade occurs. If you want to minimize downtime during the upgrade, you can use Amazon RDS Blue/Green Deployments as mentioned in the notification.
Sources
Why did my RDS PostgreSQL and Aurora PostgreSQL database undergo a minor version upgrade and restart despite having Auto Minor Version Upgrade disabled? | AWS re:Post
Upgrades of the Microsoft SQL Server DB engine - Amazon Relational Database Service
Hi,
You can always check when the next maintenance activity is scheduled for your RDS database using the AWS console or using CLI or API.
Please refer this AWS Documentation for details,
Viewing pending maintenance updates
For example, below aws cli command shows that maintenance is scheduled for RDS instance in the next maintenance window on 11/02,
$ aws rds describe-pending-maintenance-actions --filters Name=db-instance-id,Values=rdspgdb01 --query 'PendingMaintenanceActions[*].{
ResourceIdentifier: ResourceIdentifier,
DbUpgradeDetails: PendingMaintenanceActionDetails[?Action==`db-upgrade`]
}' --output json
[
{
"ResourceIdentifier": "arn:aws:rds:us-east-1:123456789101:db:rdspgdb01",
"DbUpgradeDetails": [
{
"Action": "db-upgrade",
"OptInStatus": "next-maintenance",
"CurrentApplyDate": "2025-11-02T06:08:00Z",
"Description": "New engine patch version is available: 13.20.R2"
}
]
}
]
$
Sharing additional details for automatic minor version upgrades for RDS MySQL
