Skip to content

Dependencies upgrades: JBoss Logging, jdbc drivers, AssertJ, and Testcontainers #2267

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
May 22, 2025
Merged
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ext {
vertxSqlClientVersion = '4.5.14'
}

testcontainersVersion = '1.20.6'
testcontainersVersion = '1.21.0'

logger.lifecycle "Vert.x SQL Client Version: " + project.vertxSqlClientVersion
}
Expand Down
16 changes: 8 additions & 8 deletions hibernate-reactive-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ dependencies {
implementation 'org.jboss.logging:jboss-logging:3.6.1.Final'
annotationProcessor 'org.jboss.logging:jboss-logging:3.6.1.Final'

compileOnly 'org.jboss.logging:jboss-logging-annotations:3.0.3.Final'
annotationProcessor 'org.jboss.logging:jboss-logging-annotations:3.0.3.Final'
annotationProcessor 'org.jboss.logging:jboss-logging-processor:3.0.3.Final'
compileOnly 'org.jboss.logging:jboss-logging-annotations:3.0.4.Final'
annotationProcessor 'org.jboss.logging:jboss-logging-annotations:3.0.4.Final'
annotationProcessor 'org.jboss.logging:jboss-logging-processor:3.0.4.Final'


//Specific implementation details of Hibernate Reactive:
implementation "io.vertx:vertx-sql-client:${vertxSqlClientVersion}"

// Testing
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.assertj:assertj-core:3.27.3'
testImplementation "io.vertx:vertx-junit5:${vertxSqlClientVersion}"

// Drivers
Expand All @@ -46,16 +46,16 @@ dependencies {
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'

// JDBC driver to test with ORM and PostgreSQL
testRuntimeOnly "org.postgresql:postgresql:42.7.4"
testRuntimeOnly "org.postgresql:postgresql:42.7.5"

// JDBC driver for Testcontainers with MS SQL Server
testRuntimeOnly "com.microsoft.sqlserver:mssql-jdbc:12.8.1.jre11"
testRuntimeOnly "com.microsoft.sqlserver:mssql-jdbc:12.10.0.jre11"

// JDBC driver for Testcontainers with MariaDB Server
testRuntimeOnly "org.mariadb.jdbc:mariadb-java-client:3.5.1"
testRuntimeOnly "org.mariadb.jdbc:mariadb-java-client:3.5.3"

// JDBC driver for Testcontainers with MYSQL Server
testRuntimeOnly "com.mysql:mysql-connector-j:9.1.0"
testRuntimeOnly "com.mysql:mysql-connector-j:9.3.0"

// JDBC driver for Db2 server, for testing
testRuntimeOnly "com.ibm.db2:jcc:12.1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/bytecode-enhancements-it/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ description = 'Bytecode enhancements integration tests'

ext {
log4jVersion = '2.20.0'
assertjVersion = '3.26.3'
assertjVersion = '3.27.3'
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ description = 'Quarkus QE integration tests'

ext {
log4jVersion = '2.20.0'
assertjVersion = '3.26.3'
assertjVersion = '3.27.3'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/techempower-postgres-it/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description = 'TechEmpower integration tests'
ext {
jacksonDatabindVersion = '2.15.2'
jbossLoggingVersion = '3.5.0.Final'
assertjVersion = '3.26.3'
assertjVersion = '3.27.3'
vertxWebVersion = project.hasProperty( 'vertxWebVersion' )
? project.property( 'vertxWebVersion' )
: vertxSqlClientVersion
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/verticle-postgres-it/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description = 'Bytecode enhancements integration tests'
ext {
jacksonDatabindVersion = '2.15.2'
jbossLoggingVersion = '3.5.0.Final'
assertjVersion = '3.26.3'
assertjVersion = '3.27.3'
vertxWebVersion = project.hasProperty( 'vertxWebVersion' )
? project.property( 'vertxWebVersion' )
: vertxSqlClientVersion
Expand Down
6 changes: 3 additions & 3 deletions tooling/jbang/CockroachDBReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
//DEPS io.vertx:vertx-pg-client:$\{vertx.version:4.5.14}
//DEPS io.vertx:vertx-unit:$\{vertx.version:4.5.14}
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:3.0.0.Beta1}
//DEPS org.assertj:assertj-core:3.26.3
//DEPS org.assertj:assertj-core:3.27.3
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:cockroachdb:1.20.6
//DEPS org.testcontainers:cockroachdb:1.21.0
//DEPS org.slf4j:slf4j-simple:2.0.7

//// Testcontainer needs the JDBC drivers to start the container
//// Hibernate Reactive doesn't need it
//DEPS org.postgresql:postgresql:42.7.4
//DEPS org.postgresql:postgresql:42.7.5

import java.io.IOException;
import jakarta.persistence.Entity;
Expand Down
4 changes: 2 additions & 2 deletions tooling/jbang/Db2ReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
//DEPS io.vertx:vertx-db2-client:$\{vertx.version:4.5.14}
//DEPS io.vertx:vertx-unit:$\{vertx.version:4.5.14}
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:3.0.0.Beta1}
//DEPS org.assertj:assertj-core:3.26.3
//DEPS org.assertj:assertj-core:3.27.3
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:db2:1.20.6
//DEPS org.testcontainers:db2:1.21.0
//DEPS org.slf4j:slf4j-simple:2.0.7

import jakarta.persistence.Entity;
Expand Down
6 changes: 3 additions & 3 deletions tooling/jbang/MariaDBReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
//DEPS io.vertx:vertx-mysql-client:$\{vertx.version:4.5.14}
//DEPS io.vertx:vertx-unit:$\{vertx.version:4.5.14}
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:3.0.0.Beta1}
//DEPS org.assertj:assertj-core:3.26.3
//DEPS org.assertj:assertj-core:3.27.3
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:mariadb:1.20.6
//DEPS org.testcontainers:mariadb:1.21.0
//DEPS org.slf4j:slf4j-simple:2.0.7

//// Testcontainer needs the JDBC drivers to start the container
//// Hibernate Reactive doesn't need it
//DEPS org.mariadb.jdbc:mariadb-java-client:3.5.1
//DEPS org.mariadb.jdbc:mariadb-java-client:3.5.3

import jakarta.persistence.Entity;
import jakarta.persistence.Id;
Expand Down
6 changes: 3 additions & 3 deletions tooling/jbang/MySQLReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
//DEPS io.vertx:vertx-mysql-client:$\{vertx.version:4.5.14}
//DEPS io.vertx:vertx-unit:$\{vertx.version:4.5.14}
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:3.0.0.Beta1}
//DEPS org.assertj:assertj-core:3.26.3
//DEPS org.assertj:assertj-core:3.27.3
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:mysql:1.20.6
//DEPS org.testcontainers:mysql:1.21.0
//DEPS org.slf4j:slf4j-simple:2.0.7

//// Testcontainer needs the JDBC drivers to start the container
//// Hibernate Reactive doesn't need it
//DEPS com.mysql:mysql-connector-j:9.1.0
//DEPS com.mysql:mysql-connector-j:9.3.0

import jakarta.persistence.Entity;
import jakarta.persistence.Id;
Expand Down
4 changes: 2 additions & 2 deletions tooling/jbang/PostgreSQLReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
//DEPS io.vertx:vertx-pg-client:$\{vertx.version:4.5.14}
//DEPS io.vertx:vertx-unit:$\{vertx.version:4.5.14}
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:3.0.0.Beta1}
//DEPS org.assertj:assertj-core:3.26.3
//DEPS org.assertj:assertj-core:3.27.3
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:postgresql:1.20.6
//DEPS org.testcontainers:postgresql:1.21.0
//DEPS org.slf4j:slf4j-simple:2.0.7
//DESCRIPTION Allow authentication to PostgreSQL using SCRAM:
//DEPS com.ongres.scram:client:2.1
Expand Down
18 changes: 9 additions & 9 deletions tooling/jbang/ReactiveTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
//DEPS io.vertx:vertx-mysql-client:${vertx.version:4.5.14}
//DEPS io.vertx:vertx-unit:${vertx.version:4.5.14}
//DEPS org.hibernate.reactive:hibernate-reactive-core:${hibernate-reactive.version:3.0.0.Beta1}
//DEPS org.assertj:assertj-core:3.26.3
//DEPS org.assertj:assertj-core:3.27.3
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:postgresql:1.20.6
//DEPS org.testcontainers:mysql:1.20.6
//DEPS org.testcontainers:db2:1.20.6
//DEPS org.testcontainers:mariadb:1.20.6
//DEPS org.testcontainers:cockroachdb:1.20.6
//DEPS org.testcontainers:postgresql:1.21.0
//DEPS org.testcontainers:mysql:1.21.0
//DEPS org.testcontainers:db2:1.21.0
//DEPS org.testcontainers:mariadb:1.21.0
//DEPS org.testcontainers:cockroachdb:1.21.0
//
//// Testcontainer needs the JDBC drivers to start the containers
//// Hibernate Reactive doesn't use them
//DEPS org.postgresql:postgresql:42.7.4
//DEPS com.mysql:mysql-connector-j:9.1.0
//DEPS org.mariadb.jdbc:mariadb-java-client:3.5.1
//DEPS org.postgresql:postgresql:42.7.5
//DEPS com.mysql:mysql-connector-j:9.3.0
//DEPS org.mariadb.jdbc:mariadb-java-client:3.5.3
//

import java.util.function.Supplier;
Expand Down
Loading