Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix aurora-mysql engine version #5813

Merged
merged 3 commits into from
May 14, 2024
Merged

Conversation

ruzickap
Copy link
Contributor

Fixes #5812

Currently used engine version 8.0.mysql_aurora.3.02.0 for aurora-mysql doesn't exists in AWS any more.

Based on the following script which grabs latest supported version of aurora-mysql in all regions - this should be changed to 8.0.mysql_aurora.3.06.0:

for REGION in `aws ec2 describe-regions --region us-east-1 --output text | cut -f4`; do
  echo "*** ${REGION}"
  aws rds describe-db-engine-versions --region "${REGION}" --engine aurora-mysql --query "DBEngineVersions[].EngineVersion" | sort | grep '8.0.mysql_aurora.3' | tail -1
done
*** ap-south-1
    "8.0.mysql_aurora.3.06.0"
*** eu-north-1
    "8.0.mysql_aurora.3.06.0"
*** eu-west-3
    "8.0.mysql_aurora.3.06.0"
*** eu-west-2
    "8.0.mysql_aurora.3.06.0"
*** eu-west-1
    "8.0.mysql_aurora.3.06.0"
*** ap-northeast-3
    "8.0.mysql_aurora.3.06.0"
*** ap-northeast-2
    "8.0.mysql_aurora.3.06.0"
*** ap-northeast-1
    "8.0.mysql_aurora.3.06.0"
*** ca-central-1
    "8.0.mysql_aurora.3.06.0"
*** sa-east-1
    "8.0.mysql_aurora.3.06.0"
*** ap-southeast-1
    "8.0.mysql_aurora.3.06.0"
*** ap-southeast-2
    "8.0.mysql_aurora.3.06.0"
*** eu-central-1
    "8.0.mysql_aurora.3.06.0"
*** us-east-1
    "8.0.mysql_aurora.3.06.0"
*** us-east-2
    "8.0.mysql_aurora.3.06.0"
*** us-west-1
    "8.0.mysql_aurora.3.06.0"
*** us-west-2
    "8.0.mysql_aurora.3.06.0"

@ruzickap ruzickap requested a review from a team as a code owner May 13, 2024 06:35
@ruzickap ruzickap requested review from efekarakus and removed request for a team May 13, 2024 06:35
Copy link
Contributor

@huanjani huanjani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for doing this!

Copy link

github-actions bot commented May 13, 2024

🍕 Here are the new binary sizes!

Name New size (kiB) size (kiB) Delta (%)
macOS (amd) 58072 57856 +0.37
macOS (arm) 59136 58908 +0.39
linux (amd) 50924 50732 +0.38
linux (arm) 50176 49988 +0.38
windows (amd) 47964 47784 +0.38

@mergify mergify bot merged commit 3858bf0 into aws:mainline May 14, 2024
12 checks passed
Sprint 🏃‍♀️ automation moved this from In review to Pending release May 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Sprint 🏃‍♀️
  
Pending release
Development

Successfully merging this pull request may close these issues.

[Bug]: Cannot find version 8.0.mysql_aurora.3.02.0 for aurora-mysql
3 participants