Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Update to MySQL 8.0.15 #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>

<artifactId>testing-mysql-server</artifactId>
<version>8.0.12-4-SNAPSHOT</version>
<version>8.0.15-1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>testing-mysql-server</name>
Expand All @@ -35,7 +35,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.46</version>
<version>5.1.47</version>
<scope>runtime</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions repack-mysql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

set -eu

VERSION=8.0.12
VERSION=8.0.15
BASEURL="https://dev.mysql.com/get/Downloads/MySQL-8.0"

LINUX_BASE=mysql-$VERSION-linux-glibc2.12-x86_64
OSX_BASE=mysql-$VERSION-macos10.13-x86_64
OSX_BASE=mysql-$VERSION-macos10.14-x86_64

TAR=tar
command -v gtar >/dev/null && TAR=gtar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void testDatabase()
throws Exception
{
try (TestingMySqlServer server = new TestingMySqlServer("testuser", "testpass", "db1", "db2")) {
assertEquals(server.getMySqlVersion(), "8.0.12");
assertEquals(server.getMySqlVersion(), "8.0.15");
assertEquals(server.getDatabases(), ImmutableSet.of("db1", "db2"));
assertEquals(server.getUser(), "testuser");
assertEquals(server.getPassword(), "testpass");
Expand Down