Skip to content

Commit 8a3a3d2

Browse files
authored
Update docker images (#555)
* Update nats docker image * Update eclipse-mosquitto docker image * Update mysql-server docker image * Add missing update for sample test * Add missing update for hibernate test
1 parent 5fda11b commit 8a3a3d2

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
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.0.1
1+
container-registry.oracle.com/mysql/community-server:9.1.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
@@ -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.0.1").redirectOutput(new File("mysql-stdout.txt"))
54+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.1.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-
nats:2.10.21
1+
nats:2.10.22

tests/src/io.nats/jnats/2.16.11/src/test/java/io_nats/jnats/JnatsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class JnatsTest {
3030
@BeforeAll
3131
public void init() throws IOException {
3232
System.out.println("Starting NATS ...");
33-
process = new ProcessBuilder("docker", "run", "--rm", "-p", "4222:4222", "nats:2.10.21").inheritIO().start();
33+
process = new ProcessBuilder("docker", "run", "--rm", "-p", "4222:4222", "nats:2.10.22").inheritIO().start();
3434

3535
waitUntil(() -> {
3636
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.0.1
1+
container-registry.oracle.com/mysql/community-server:9.1.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.0.1").redirectOutput(new File("mysql-stdout.txt"))
54+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.1.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-
eclipse-mosquitto:2.0.18
1+
eclipse-mosquitto:2.0.20

tests/src/org.eclipse.paho/org.eclipse.paho.client.mqttv3/1.2.5/src/test/java/org_eclipse_paho/org_eclipse_paho_client_mqttv3/Mqttv3Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Mqttv3Test {
4343
@BeforeAll
4444
void beforeAll() throws IOException, MqttException {
4545
System.out.println("Starting MQTT broker ...");
46-
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.18", "mosquitto", "-c", "/mosquitto-no-auth.conf")
46+
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.20", "mosquitto", "-c", "/mosquitto-no-auth.conf")
4747
.inheritIO()
4848
.start();
4949

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
eclipse-mosquitto:2.0.18
1+
eclipse-mosquitto:2.0.20

tests/src/org.eclipse.paho/org.eclipse.paho.mqttv5.client/1.2.5/src/test/java/org_eclipse_paho/org_eclipse_paho_mqttv5_client/Mqttv5ClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Mqttv5ClientTest {
4343
@BeforeAll
4444
void beforeAll() throws IOException, MqttException {
4545
System.out.println("Starting MQTT broker ...");
46-
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.18", "mosquitto", "-c", "/mosquitto-no-auth.conf")
46+
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.20", "mosquitto", "-c", "/mosquitto-no-auth.conf")
4747
.inheritIO()
4848
.start();
4949

0 commit comments

Comments
 (0)