From ec67ad4d6371a8ca1e2263a44c06b7ac2bf74100 Mon Sep 17 00:00:00 2001 From: Julian Poyourow Date: Mon, 22 Aug 2022 20:42:21 -0700 Subject: [PATCH] chore(db): development mysql version Because: MySQL version 8.0.29 was pulled by MySQL due to a critical issue (see here: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-29.html) and is no longer available for download. Attempting to run the _scripts/mysql.sh file will fail due to the lack of any 8.0.29 tag (https://hub.docker.com/r/mysql/mysql-server). This commit: Bumps MySQL to 8.0.30 as recommended by MySQL here https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-29.html. Closes: no corresponding issue --- _scripts/mysql.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_scripts/mysql.sh b/_scripts/mysql.sh index 18d122d6dc2..13afc7758e6 100755 --- a/_scripts/mysql.sh +++ b/_scripts/mysql.sh @@ -22,7 +22,7 @@ docker run --rm --name=mydb \ -e MYSQL_ROOT_HOST=% \ -e MYSQL_DATABASE=pushbox \ -p 3306:3306 \ - mysql/mysql-server:8.0.29 --default-authentication-plugin=mysql_native_password & + mysql/mysql-server:8.0.30 --default-authentication-plugin=mysql_native_password & cd "$DIR" ./check-mysql.sh