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

[DCJ-400-gradle]: Bump io.zonky.test.postgres:embedded-postgres-binaries-bom from 12.8.0 to 16.4.0 #1775

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 .github/workflows/int-and-connected-test-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
timeout-minutes: 300
services:
postgres:
image: postgres:11
image: postgres:16.4
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.zonky.test:embedded-database-spring-test:2.6.0'
testImplementation 'io.zonky.test:embedded-postgres:2.1.0'
implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:12.8.0')
implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:16.4.0')

generatedCompile 'org.springframework.boot:spring-boot-starter-web'
// boot-starter-validation required for jakarta.validation.Valid references, @Valid tags
Expand Down
2 changes: 1 addition & 1 deletion docs/jade-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export HOST=localhost
* Ensure docker is running
* Auth as your broadinstitute.org to pull from Google Secrets Manager `gcloud auth login <you>@broadinstitute.org`
* Run `./scripts/run-db start` to start the DB in a docker container
* Run `./scripts/run local` to run TDR locally or `./scripts/run docker` to run TDR in a docker container
* Run `./scripts/run start_local` to run TDR locally or `./scripts/run start_docker` to run TDR in a docker container
* To Build the code and run the unit tests:

```
Expand Down
2 changes: 1 addition & 1 deletion scripts/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
- /tmp/jade-dev-account.json:/tmp/jade-dev-account.json

database:
image: postgres:14
image: postgres:16.4
environment:
- POSTGRES_PASSWORD=drpasswd
ports:
Expand Down
4 changes: 2 additions & 2 deletions scripts/init-db/postgres-init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CREATE USER drmanager WITH PASSWORD 'drpasswd';
CREATE DATABASE datarepo;
GRANT ALL PRIVILEGES ON DATABASE datarepo to drmanager;
ALTER DATABASE datarepo OWNER to drmanager;
CREATE DATABASE stairway;
GRANT ALL PRIVILEGES ON DATABASE stairway to drmanager;
\c datarepo
CREATE EXTENSION IF NOT EXISTS pgcrypto;
ALTER DATABASE stairway OWNER to drmanager;
Loading