Skip to content

Commit 8472703

Browse files
dnestoromsupic
andauthored
Update docker images suggested by dependabot and fix broken kafka tests (#584)
* Update ryuk docker image * Update nats docker image * Upadte mysql docker image * Fixed metadata typeReachable value --------- Co-authored-by: Milenko Supic <milenko.supic@oracle.com>
1 parent 7305228 commit 8472703

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
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.1.0
1+
container-registry.oracle.com/mysql/community-server:9.2.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.1.0").redirectOutput(new File("mysql-stdout.txt"))
62+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.2.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-
nats:2.10.22
1+
nats:2.10.24

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.22").inheritIO().start();
33+
process = new ProcessBuilder("docker", "run", "--rm", "-p", "4222:4222", "nats:2.10.24").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.1.0
1+
container-registry.oracle.com/mysql/community-server:9.2.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.1.0").redirectOutput(new File("mysql-stdout.txt"))
54+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.2.0").redirectOutput(new File("mysql-stdout.txt"))
5555
.redirectError(new File("mysql-stderr.txt")).start();
5656

5757
// Wait until connection can be established

tests/src/org.apache.kafka/kafka-clients/3.5.1/src/test/resources/META-INF/native-image/kafka-tests-only/reflect-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{
3131
"name": "sun.security.provider.ConfigFile",
3232
"condition": {
33-
"typeReachable": "javax.security.auth.login.Configuration$2"
33+
"typeReachable": "javax.security.auth.login.Configuration"
3434
},
3535
"methods": [
3636
{

tests/src/org.apache.kafka/kafka-streams/3.5.1/src/test/resources/META-INF/native-image/kafka-tests-only/reflect-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{
3131
"name": "sun.security.provider.ConfigFile",
3232
"condition": {
33-
"typeReachable": "javax.security.auth.login.Configuration$2"
33+
"typeReachable": "javax.security.auth.login.Configuration"
3434
},
3535
"methods": [
3636
{
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.1.0
1+
container-registry.oracle.com/mysql/community-server:9.2.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.1.0").inheritIO().start();
62+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.2.0").inheritIO().start();
6363

6464
waitUntil(() -> {
6565
openConnection().close();

0 commit comments

Comments
 (0)