Skip to content

Commit 5f54090

Browse files
dependabot[bot]jormundur00
authored andcommitted
Bump mysql/community-server
Bumps mysql/community-server from 9.4.0 to 9.5.0. --- updated-dependencies: - dependency-name: mysql/community-server dependency-version: 9.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 29c974e commit 5f54090

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
container-registry.oracle.com/mysql/community-server:9.4.0
1+
container-registry.oracle.com/mysql/community-server:9.5.0

tests/src/com.mysql/mysql-connector-j/8.0.31/src/test/java/mysql/MySQLTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static void beforeAll() throws IOException {
5959
System.out.println("Starting MySQL ...");
6060
process = new ProcessBuilder(
6161
"docker", "run", "--rm", "-p", "3306:3306", "-e", "MYSQL_DATABASE=" + DATABASE, "-e", "MYSQL_USER=" + USERNAME,
62-
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.4.0").redirectOutput(new File("mysql-stdout.txt"))
62+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.5.0").redirectOutput(new File("mysql-stdout.txt"))
6363
.redirectError(new File("mysql-stderr.txt")).start();
6464

6565
// Wait until connection can be established
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
container-registry.oracle.com/mysql/community-server:9.4.0
1+
container-registry.oracle.com/mysql/community-server:9.5.0

tests/src/mysql/mysql-connector-java/8.0.29/src/test/java/mysql/MySQLTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ static void beforeAll() throws IOException {
5151
System.out.println("Starting MySQL ...");
5252
process = new ProcessBuilder(
5353
"docker", "run", "--rm", "-p", "3306:3306", "-e", "MYSQL_DATABASE=" + DATABASE, "-e", "MYSQL_USER=" + USERNAME,
54-
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.4.0").redirectOutput(new File("mysql-stdout.txt"))
54+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.5.0").redirectOutput(new File("mysql-stdout.txt"))
5555
.redirectError(new File("mysql-stderr.txt")).start();
5656

5757
// Wait until connection can be established
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
container-registry.oracle.com/mysql/community-server:9.4.0
1+
container-registry.oracle.com/mysql/community-server:9.5.0

tests/src/org.hibernate.reactive/hibernate-reactive-core/2.0.0.Final/src/test/java/org_hibernate_reactive/hibernate_reactive_core/HibernateReactiveCoreTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void init() throws IOException {
5959
logger.info("Starting MySQL ...");
6060
process = new ProcessBuilder(
6161
"docker", "run", "--rm", "-p", "3306:3306", "-e", "MYSQL_DATABASE=" + DATABASE, "-e", "MYSQL_USER=" + USERNAME,
62-
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.4.0").inheritIO().start();
62+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.5.0").inheritIO().start();
6363

6464
waitUntil(() -> {
6565
openConnection().close();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
container-registry.oracle.com/mysql/community-server:9.4.0
1+
container-registry.oracle.com/mysql/community-server:9.5.0

tests/src/samples/docker/image-pull/src/test/java/image/pull/DockerImagePullTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ private void runImage(String image, boolean shouldSucceed) throws Exception {
3232

3333
@Test
3434
void pullAllowedImage() throws Exception {
35-
runImage("container-registry.oracle.com/mysql/community-server:9.4.0", true);
35+
runImage("container-registry.oracle.com/mysql/community-server:9.5.0", true);
3636
}
3737

3838
@Test
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM container-registry.oracle.com/mysql/community-server:9.4.0
1+
FROM container-registry.oracle.com/mysql/community-server:9.5.0

0 commit comments

Comments
 (0)