Skip to content

Commit ab84d38

Browse files
dependabot[bot]okotsopoulosraejohanek
authored
[DCJ-400-gradle]: Bump io.zonky.test.postgres:embedded-postgres-binaries-bom from 12.8.0 to 16.4.0 (#1775)
* [DCJ-400-gradle]: Bump io.zonky.test.postgres:embedded-postgres-binaries-bom Bumps [io.zonky.test.postgres:embedded-postgres-binaries-bom](https://github.com/zonkyio/embedded-postgres-binaries) from 12.8.0 to 16.4.0. - [Release notes](https://github.com/zonkyio/embedded-postgres-binaries/releases) - [Commits](zonkyio/embedded-postgres-binaries@v12.8.0...v16.4.0) --- updated-dependencies: - dependency-name: io.zonky.test.postgres:embedded-postgres-binaries-bom dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Upgrade Postgres image used in PR tests: 11 -> 16.4 * Postgres 15 revokes the CREATE permission from all non-owners * update compose.yaml * update documentation, rm pgcrypto extension --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Olivia Kotsopoulos <[email protected]> Co-authored-by: rjohanek <[email protected]>
1 parent 2a5fb4f commit ab84d38

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/int-and-connected-test-run.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
timeout-minutes: 300
7979
services:
8080
postgres:
81-
image: postgres:11
81+
image: postgres:16.4
8282
env:
8383
POSTGRES_USER: postgres
8484
POSTGRES_PASSWORD: postgres

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ dependencies {
269269
testImplementation 'org.springframework.boot:spring-boot-starter-test'
270270
testImplementation 'io.zonky.test:embedded-database-spring-test:2.6.0'
271271
testImplementation 'io.zonky.test:embedded-postgres:2.1.0'
272-
implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:12.8.0')
272+
implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:16.4.0')
273273

274274
generatedCompile 'org.springframework.boot:spring-boot-starter-web'
275275
// boot-starter-validation required for jakarta.validation.Valid references, @Valid tags

docs/jade-getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ export HOST=localhost
254254
* Ensure docker is running
255255
* Auth as your broadinstitute.org to pull from Google Secrets Manager `gcloud auth login <you>@broadinstitute.org`
256256
* Run `./scripts/run-db start` to start the DB in a docker container
257-
* Run `./scripts/run local` to run TDR locally or `./scripts/run docker` to run TDR in a docker container
257+
* Run `./scripts/run start_local` to run TDR locally or `./scripts/run start_docker` to run TDR in a docker container
258258
* To Build the code and run the unit tests:
259259

260260
```

scripts/compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
- /tmp/jade-dev-account.json:/tmp/jade-dev-account.json
2828

2929
database:
30-
image: postgres:14
30+
image: postgres:16.4
3131
environment:
3232
- POSTGRES_PASSWORD=drpasswd
3333
ports:

scripts/init-db/postgres-init.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CREATE USER drmanager WITH PASSWORD 'drpasswd';
33
CREATE DATABASE datarepo;
44
GRANT ALL PRIVILEGES ON DATABASE datarepo to drmanager;
5+
ALTER DATABASE datarepo OWNER to drmanager;
56
CREATE DATABASE stairway;
67
GRANT ALL PRIVILEGES ON DATABASE stairway to drmanager;
7-
\c datarepo
8-
CREATE EXTENSION IF NOT EXISTS pgcrypto;
8+
ALTER DATABASE stairway OWNER to drmanager;

0 commit comments

Comments
 (0)