Skip to content
Open
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ executors:
db:
docker:
- image: cimg/clojure:1.12-openjdk-21.0-browsers
- image: postgres:13
- image: postgres:18
environment:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_USER: rems_test
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Changes since v2.39.1

### Additions

- REMS now supports PostgreSQL version 18. (#3451)
- Added the `:external-frontend-url` configuration option. When configured, applicant-facing links in outbound emails will use this URL instead of the default REMS frontend URL.
- Added a custom action button for approved applications. The button is defined in extra translations. (#3413)
- Upgraded several libraries (#3421)
Expand Down
6 changes: 3 additions & 3 deletions dev_db.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
docker run --rm --name rems_test -p 127.0.0.1:5432:5432 -d -e POSTGRES_HOST_AUTH_METHOD=trust postgres:13
docker run --rm --link rems_test postgres:13 /bin/bash -c "while ! psql -h rems_test -U postgres -c 'select 1;' 2>/dev/null; do sleep 1; done"
docker run -i --rm --link rems_test postgres:13 psql -h rems_test -U postgres < resources/sql/init.sql
docker run --rm --name rems_test -p 127.0.0.1:5432:5432 -d -e POSTGRES_HOST_AUTH_METHOD=trust postgres:18
docker run --rm --link rems_test postgres:18 /bin/bash -c "while ! psql -h rems_test -U postgres -c 'select 1;' 2>/dev/null; do sleep 1; done"
docker run -i --rm --link rems_test postgres:18 psql -h rems_test -U postgres < resources/sql/init.sql

ARGS="run dev-setup"

Expand Down
2 changes: 1 addition & 1 deletion docker-compose-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
- "127.0.0.1:3000:3000"

db:
image: postgres:13
image: postgres:18
environment:
POSTGRES_USER: rems
POSTGRES_PASSWORD: remspassword
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- ./example-theme/extra-styles.css:/rems/example-theme/extra-styles.css

db:
image: postgres:13
image: postgres:18
environment:
POSTGRES_USER: rems
POSTGRES_PASSWORD: remspassword
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- "127.0.0.1:3000:3000"

db:
image: postgres:13
image: postgres:18
environment:
POSTGRES_USER: rems
POSTGRES_PASSWORD: remspassword
Expand Down