From 0830b032a627a611bd9b6154bdfdd0c11d02fa4f Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Thu, 28 Dec 2023 14:21:02 -0500 Subject: [PATCH] feat!: bump postgres versions to `16` BREAKING: Existing databases will no longer boot with major version change --- bottin | 2 +- bottin-agenda | 2 +- docker-compose.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bottin b/bottin index 357c871..fe50cb7 160000 --- a/bottin +++ b/bottin @@ -1 +1 @@ -Subproject commit 357c871720568c8eafa5c50365d9505c131b7476 +Subproject commit fe50cb733548ed2bc6485e9ac1c1f8f2e0367c31 diff --git a/bottin-agenda b/bottin-agenda index 44e936c..2a285b3 160000 --- a/bottin-agenda +++ b/bottin-agenda @@ -1 +1 @@ -Subproject commit 44e936cd33004fb45f453c6a541514f31e4a1fb0 +Subproject commit 2a285b30bd5b84a743d80e65bb9529bd5e5fe178 diff --git a/docker-compose.yaml b/docker-compose.yaml index 3676346..9cfc475 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,7 +1,7 @@ services: bottin_db: - image: 'docker.io/library/postgres:14.8' + image: 'docker.io/library/postgres:16.1' environment: POSTGRES_DATABASE: "${BOTTIN_POSTGRES_DATABASE}" POSTGRES_PASSWORD: "${BOTTIN_POSTGRES_PASSWORD}" @@ -35,7 +35,7 @@ services: command: ['bottin', '--config', '/etc/bottin/web.yaml', 'web'] bottin_agenda_db: - image: 'docker.io/library/postgres:15.4' + image: 'docker.io/library/postgres:16.1' environment: POSTGRES_DATABASE: "${BOTTINAGENDA_POSTGRES_DATABASE}" POSTGRES_PASSWORD: "${BOTTINAGENDA_POSTGRES_PASSWORD}"