Skip to content
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

Upgrade Testcontainers to 1.19.8 #1922

Merged
merged 1 commit into from
May 23, 2024
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 @@ -86,7 +86,7 @@ ext {
vertxSqlClientVersion = '4.5.7'
}

testcontainersVersion = '1.19.4'
testcontainersVersion = '1.19.8'

logger.lifecycle "Hibernate ORM Version: " + project.hibernateOrmVersion
logger.lifecycle "Hibernate ORM Gradle plugin Version: " + project.hibernateOrmGradlePluginVersion
Expand Down
2 changes: 1 addition & 1 deletion tooling/jbang/CockroachDBReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:2.3.0.Final}
//DEPS org.assertj:assertj-core:3.24.2
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:cockroachdb:1.18.3
//DEPS org.testcontainers:cockroachdb:1.19.8
//DEPS org.slf4j:slf4j-simple:2.0.7

//// Testcontainer needs the JDBC drivers to start the container
Expand Down
2 changes: 1 addition & 1 deletion tooling/jbang/Db2ReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:2.3.0.Final}
//DEPS org.assertj:assertj-core:3.24.2
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:db2:1.18.3
//DEPS org.testcontainers:db2:1.19.8
//DEPS org.slf4j:slf4j-simple:2.0.7

import jakarta.persistence.Entity;
Expand Down
2 changes: 1 addition & 1 deletion tooling/jbang/MariaDBReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:2.3.0.Final}
//DEPS org.assertj:assertj-core:3.24.2
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:mariadb:1.18.3
//DEPS org.testcontainers:mariadb:1.19.8
//DEPS org.slf4j:slf4j-simple:2.0.7

//// Testcontainer needs the JDBC drivers to start the container
Expand Down
2 changes: 1 addition & 1 deletion tooling/jbang/MySQLReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:2.3.0.Final}
//DEPS org.assertj:assertj-core:3.24.2
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:mysql:1.18.3
//DEPS org.testcontainers:mysql:1.19.8
//DEPS org.slf4j:slf4j-simple:2.0.7

//// Testcontainer needs the JDBC drivers to start the container
Expand Down
2 changes: 1 addition & 1 deletion tooling/jbang/PostgreSQLReactiveTest.java.qute
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//DEPS org.hibernate.reactive:hibernate-reactive-core:$\{hibernate-reactive.version:2.3.0.Final}
//DEPS org.assertj:assertj-core:3.24.2
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:postgresql:1.18.3
//DEPS org.testcontainers:postgresql:1.19.8
//DEPS org.slf4j:slf4j-simple:2.0.7
//DESCRIPTION Allow authentication to PostgreSQL using SCRAM:
//DEPS com.ongres.scram:client:2.1
Expand Down
10 changes: 5 additions & 5 deletions tooling/jbang/ReactiveTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
//DEPS org.hibernate.reactive:hibernate-reactive-core:${hibernate-reactive.version:2.3.0.Final}
//DEPS org.assertj:assertj-core:3.24.2
//DEPS junit:junit:4.13.2
//DEPS org.testcontainers:postgresql:1.18.3
//DEPS org.testcontainers:mysql:1.18.3
//DEPS org.testcontainers:db2:1.18.3
//DEPS org.testcontainers:mariadb:1.18.3
//DEPS org.testcontainers:cockroachdb:1.18.3
//DEPS org.testcontainers:postgresql:1.19.8
//DEPS org.testcontainers:mysql:1.19.8
//DEPS org.testcontainers:db2:1.19.8
//DEPS org.testcontainers:mariadb:1.19.8
//DEPS org.testcontainers:cockroachdb:1.19.8
//
//// Testcontainer needs the JDBC drivers to start the containers
//// Hibernate Reactive doesn't use them
Expand Down
Loading