Skip to content

Commit

Permalink
[hibernate#1406] Upgrade PostgreSQL to 15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Oct 18, 2022
1 parent 2c3a808 commit 27097ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Learn more at <http://hibernate.org/reactive>.
Hibernate Reactive has been tested with:

- Java 11, 17
- PostgreSQL 14
- PostgreSQL 15
- MySQL 8
- MariaDB 10
- Db2 11.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class StartVerticle {
// These properties are in DatabaseConfiguration in core
public static final boolean USE_DOCKER = Boolean.getBoolean( "docker" );

public static final String IMAGE_NAME = "postgres:14.3";
public static final String IMAGE_NAME = "postgres:15.0";
public static final String USERNAME = "hreact";
public static final String PASSWORD = "hreact";
public static final String DB_NAME = "hreact";
Expand Down
2 changes: 1 addition & 1 deletion podman.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ required credentials and schema to run the tests:
```
podman run --rm --name HibernateTestingPGSQL \
-e POSTGRES_USER=hreact -e POSTGRES_PASSWORD=hreact -e POSTGRES_DB=hreact \
-p 5432:5432 postgres:14.3
-p 5432:5432 postgres:15.0
```

When the database has started, you can run the tests on PostgreSQL with:
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 @@ -67,7 +67,7 @@ public class {baseName} {
}

@ClassRule
public final static PostgreSQLContainer database = new PostgreSQLContainer( imageName( "docker.io", "postgres", "14" ) );
public final static PostgreSQLContainer database = new PostgreSQLContainer( imageName( "docker.io", "postgres", "15.0" ) );

private Mutiny.SessionFactory sessionFactory;

Expand Down

0 comments on commit 27097ff

Please sign in to comment.