Skip to content

[2.4] Backport dependabot upgrades #2370

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 9 commits into from
Jul 17, 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
20 changes: 11 additions & 9 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,21 @@
assertjVersion = "3.27.3"
hibernateOrmVersion = "6.6.15.Final"
hibernateOrmGradlePluginVersion = "6.6.15.Final"
jacksonDatabindVersion = "2.15.2"
jacksonDatabindVersion = "2.19.1"
jbossLoggingAnnotationVersion = "2.2.1.Final"
jbossLoggingVersion = "3.5.0.Final"
junitVersion = "5.11.3"
log4jVersion = "2.20.0"
junitVersion = "5.13.3"
junitPlatformVersion = "1.13.3"
log4jVersion = "2.25.1"
testcontainersVersion = "1.21.3"
vertxSqlClientVersion = "4.5.16"
vertxWebVersion= "4.5.16"
vertxWebClientVersion = "4.5.16"

[libraries]
com-fasterxml-jackson-core-jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version.ref = "jacksonDatabindVersion" }
com-ibm-db2-jcc = { group = "com.ibm.db2", name = "jcc", version = "12.1.0.0" }
com-microsoft-sqlserver-mssql-jdbc = { group = "com.microsoft.sqlserver", name = "mssql-jdbc", version = "12.10.0.jre11" }
com-ibm-db2-jcc = { group = "com.ibm.db2", name = "jcc", version = "12.1.2.0" }
com-microsoft-sqlserver-mssql-jdbc = { group = "com.microsoft.sqlserver", name = "mssql-jdbc", version = "13.1.0.jre11-preview" }
com-mysql-mysql-connector-j = { group = "com.mysql", name = "mysql-connector-j", version = "9.3.0" }
com-ongres-scram-client = { group = "com.ongres.scram", name = "client", version = "2.1" }
io-smallrye-reactive-mutiny = { group = "io.smallrye.reactive", name = "mutiny", version = "2.7.0" }
Expand All @@ -42,8 +43,9 @@ org-jboss-logging-jboss-logging-annotations = { group = "org.jboss.logging", nam
org-jboss-logging-jboss-logging-processor = { group = "org.jboss.logging", name = "jboss-logging-processor", version.ref = "jbossLoggingAnnotationVersion" }
org-junit-jupiter-junit-jupiter-api = { group = "org.junit.jupiter", name = "junit-jupiter-api", version.ref = "junitVersion" }
org-junit-jupiter-junit-jupiter-engine = { group = "org.junit.jupiter", name = "junit-jupiter-engine", version.ref = "junitVersion" }
org-mariadb-jdbc-mariadb-java-client = { group = "org.mariadb.jdbc", name = "mariadb-java-client", version = "3.5.3" }
org-postgresql-postgresql = { group = "org.postgresql", name = "postgresql", version = "42.7.5" }
org-junit-platform-junit-platform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher", version = "junitPlatformVersion" }
org-mariadb-jdbc-mariadb-java-client = { group = "org.mariadb.jdbc", name = "mariadb-java-client", version = "3.5.4" }
org-postgresql-postgresql = { group = "org.postgresql", name = "postgresql", version = "42.7.7" }
org-testcontainers-cockroachdb = { group = "org.testcontainers", name = "cockroachdb", version.ref = "testcontainersVersion" }
org-testcontainers-db2 = { group = "org.testcontainers", name = "db2", version.ref = "testcontainersVersion" }
org-testcontainers-mariadb = { group = "org.testcontainers", name = "mariadb", version.ref = "testcontainersVersion" }
Expand All @@ -53,7 +55,7 @@ org-testcontainers-oracle-xe = { group = "org.testcontainers", name = "oracle-xe
org-testcontainers-postgresql = { group = "org.testcontainers", name = "postgresql", version.ref = "testcontainersVersion" }

[plugins]
com-diffplug-spotless = { id = "com.diffplug.spotless", version = "6.25.0" }
com-diffplug-spotless = { id = "com.diffplug.spotless", version = "7.1.0" }
io-github-gradle-nexus-publish-plugin = { id = "io.github.gradle-nexus.publish-plugin", version = "1.3.0" }
org-asciidoctor-jvm-convert = { id = "org.asciidoctor.jvm.convert", version = "4.0.2" }
org-asciidoctor-jvm-convert = { id = "org.asciidoctor.jvm.convert", version = "4.0.4" }
org-hibernate-orm = { id = "org.hibernate.orm", version.ref = "hibernateOrmGradlePluginVersion" }
1 change: 1 addition & 0 deletions hibernate-reactive-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ dependencies {
// JUnit Jupiter
testImplementation(libs.org.junit.jupiter.junit.jupiter.api)
testRuntimeOnly(libs.org.junit.jupiter.junit.jupiter.engine)
testRuntimeOnly(libs.org.junit.platform.junit.platform.launcher)

// JDBC driver to test with ORM and PostgreSQL
testRuntimeOnly(libs.org.postgresql.postgresql)
Expand Down
2 changes: 1 addition & 1 deletion tooling/docker/cockroachdb.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# CockroachDB
# See https://hub.docker.com/r/cockroachdb/cockroach
FROM docker.io/cockroachdb/cockroach:v24.3.13
FROM docker.io/cockroachdb/cockroach:v25.2.2
2 changes: 1 addition & 1 deletion tooling/docker/db2.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# IBM DB2
# See https://hub.docker.com/r/ibmcom/db2
FROM icr.io/db2_community/db2:12.1.0.0
FROM icr.io/db2_community/db2:12.1.2.0
2 changes: 1 addition & 1 deletion tooling/docker/maria.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# MariaDB
# See https://hub.docker.com/_/mariadb
FROM docker.io/mariadb:11.7.2
FROM docker.io/mariadb:11.8.2
2 changes: 1 addition & 1 deletion tooling/docker/sqlserver.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Microsoft SQL Server
# See https://hub.docker.com/_/microsoft-mssql-server
FROM mcr.microsoft.com/mssql/server:2022-latest
FROM mcr.microsoft.com/mssql/server:2025-latest
Loading