Skip to content

Commit a94960a

Browse files
committed
Upgrade CockroachDB to 21.2.4
1 parent a1e32c5 commit a94960a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Hibernate Reactive has been tested with:
3333
- MySQL 8
3434
- MariaDB 10
3535
- Db2 11.5
36-
- CockroachDB 21.1
36+
- CockroachDB 21.2
3737
- MS SQL Server 2019
3838
- [Hibernate ORM][] 5.6.5.Final
3939
- [Vert.x Reactive PostgreSQL Client](https://vertx.io/docs/vertx-pg-client/java/) 4.2.4

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CockroachDBDatabase extends PostgreSQLDatabase {
1616

1717
public static CockroachDBDatabase INSTANCE = new CockroachDBDatabase();
1818

19-
public final static String IMAGE_NAME = "cockroachdb/cockroach:v21.1.11";
19+
public final static String IMAGE_NAME = "cockroachdb/cockroach:v21.2.4";
2020

2121
/**
2222
* Holds configuration for the CockroachDB database container. If the build is run with <code>-Pdocker</code> then

podman.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ configured to run the tests:
120120
```
121121
podman run --rm --name=HibernateTestingCockroachDB \
122122
--hostname=roachrr1 -p 26257:26257 -p 8080:8080 \
123-
cockroachdb/cockroach:v21.1.11 start-single-node --insecure
123+
cockroachdb/cockroach:v21.2.4 start-single-node --insecure
124124
```
125125

126126
Some of tests needs temporary tables and because this is an experimental feature in

tooling/jbang/CockroachDBReactiveTest.java.qute

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import static org.assertj.core.api.Assertions.assertThat;
6363
public class {baseName} {
6464

6565
@ClassRule
66-
public final static CockroachContainer database = new CockroachContainer( "cockroachdb/cockroach:v21.1.11" );
66+
public final static CockroachContainer database = new CockroachContainer( "cockroachdb/cockroach:v21.2.4" );
6767

6868
private Mutiny.SessionFactory sessionFactory;
6969

tooling/jbang/ReactiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ enum Database {
232232
MYSQL( () -> new MySQLContainer( "mysql:8.0.28" ) ),
233233
DB2( () -> new Db2Container( "ibmcom/db2:11.5.5.1" ).acceptLicense() ),
234234
MARIADB( () -> new MariaDBContainer( "mariadb:10.7.1" ) ),
235-
COCKROACHDB( () -> new CockroachContainer( "cockroachdb/cockroach:v21.1.11" ) );
235+
COCKROACHDB( () -> new CockroachContainer( "cockroachdb/cockroach:v21.2.4" ) );
236236

237237
private final Supplier<JdbcDatabaseContainer<?>> containerSupplier;
238238

0 commit comments

Comments
 (0)