Skip to content

Commit dbcbf4f

Browse files
committed
Upgrade MySQL to 8.4.0
1 parent aaac28f commit dbcbf4f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/tracking-orm-6.build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
# Label used to access the service container
4646
mysql:
4747
# Docker Hub image
48-
image: mysql:8.3.0
48+
image: mysql:8.4.0
4949
env:
5050
MYSQL_ROOT_PASSWORD: hreact
5151
MYSQL_DATABASE: hreact

.github/workflows/tracking-vertx-4.build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# Label used to access the service container
4444
mysql:
4545
# Docker Hub image
46-
image: mysql:8.3.0
46+
image: mysql:8.4.0
4747
env:
4848
MYSQL_ROOT_PASSWORD: hreact
4949
MYSQL_DATABASE: hreact

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Hibernate Reactive has been tested with:
3131

3232
- Java 11, 17, 20, 21
3333
- PostgreSQL 16
34-
- MySQL 8.3
34+
- MySQL 8
3535
- MariaDB 11
3636
- Db2 11.5
3737
- CockroachDB v23.1

hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers/MySQLDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class MySQLDatabase implements TestableDatabase {
8787
* TIP: To reuse the same containers across multiple runs, set `testcontainers.reuse.enable=true` in a file located
8888
* at `$HOME/.testcontainers.properties` (create the file if it does not exist).
8989
*/
90-
public static final MySQLContainer<?> mysql = new MySQLContainer<>( imageName( "mysql", "8.3.0") )
90+
public static final MySQLContainer<?> mysql = new MySQLContainer<>( imageName( "mysql", "8.4.0") )
9191
.withUsername( DatabaseConfiguration.USERNAME )
9292
.withPassword( DatabaseConfiguration.PASSWORD )
9393
.withDatabaseName( DatabaseConfiguration.DB_NAME )

podman.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ and schema to run the tests:
9393
```
9494
podman run --rm --name HibernateTestingMySQL \
9595
-e MYSQL_ROOT_PASSWORD=hreact -e MYSQL_DATABASE=hreact -e MYSQL_USER=hreact -e MYSQL_PASSWORD=hreact \
96-
-p 3306:3306 docker.io/mysql:8.3.0
96+
-p 3306:3306 docker.io/mysql:8.4.0
9797
```
9898

9999
When the database has started, you can run the tests on MySQL with:

tooling/jbang/MySQLReactiveTest.java.qute

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public class {baseName} {
7272
}
7373

7474
@ClassRule
75-
public final static MySQLContainer<?> database = new MySQLContainer<>( imageName( "docker.io", "mysql", "8.3.0" ) );
75+
public final static MySQLContainer<?> database = new MySQLContainer<>( imageName( "docker.io", "mysql", "8.4.0" ) );
7676

7777
private Mutiny.SessionFactory sessionFactory;
7878

tooling/jbang/ReactiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public String toString() {
229229
*/
230230
enum Database {
231231
POSTGRESQL( () -> new PostgreSQLContainer( "postgres:16.3" ) ),
232-
MYSQL( () -> new MySQLContainer( "mysql:8.3.0" ) ),
232+
MYSQL( () -> new MySQLContainer( "mysql:8.4.0" ) ),
233233
DB2( () -> new Db2Container( "docker.io/icr.io/db2_community/db2:11.5.9.0" ).acceptLicense() ),
234234
MARIADB( () -> new MariaDBContainer( "mariadb:11.3.2" ) ),
235235
COCKROACHDB( () -> new CockroachContainer( "cockroachdb/cockroach:v23.1.17" ) );

0 commit comments

Comments
 (0)