diff --git a/Changes b/Changes index 459f79a..73b2f43 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Perl extension Test::mysqld. {{$NEXT}} + +1.0030 2024-04-06T14:22:15Z - Support DBD::MariaDB 1.0020 2024-04-05T16:35:54Z diff --git a/META.json b/META.json index 5c3e3aa..7215cc8 100644 --- a/META.json +++ b/META.json @@ -73,7 +73,7 @@ "web" : "https://github.com/kazuho/p5-test-mysqld" } }, - "version" : "1.0020", + "version" : "1.0030", "x_authority" : "cpan:KAZUHO", "x_contributors" : [ "David Steinbrunner ", @@ -85,11 +85,11 @@ "John Napiorkowski ", "Kazuho Oku ", "Kazuho Oku ", + "Masayuki Matsuki ", "Matthew Horsfall ", "NAKAGAWA Masaki ", "Naoto Nakamura ", "Petr Písař ", - "Songmu ", "Yoshikazu Sawa <883514+yoshikazusawa@users.noreply.github.com>", "Yusuke Watase ", "Zhenjun Wang ", diff --git a/author/ci_install_mysql.sh b/author/ci_install_mysql.sh index 5fb1ea6..1e3a7e4 100755 --- a/author/ci_install_mysql.sh +++ b/author/ci_install_mysql.sh @@ -11,9 +11,8 @@ if [[ $DATABASE_ADAPTER =~ (mariadb|mysql-(5\.7|8\.0)) ]]; then sudo apt-get update -q sudo apt-get install -q --yes --force-yes -f --option DPkg::Options::=--force-confnew mariadb-server libmariadb-dev sudo mariadb-upgrade - elif [[ $DATABASE_ADAPTER =~ mysql-(5\.7|8\.0) ]]; then + elif [[ $DATABASE_ADAPTER =~ mysql-5\.7 ]]; then sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 467B942D3A79BD29 - # XXX: The switch to mysql 5.7 is not currently working.... cat <