From 94564370c67d8f47a99677f5d9fa7233e9fec1c5 Mon Sep 17 00:00:00 2001 From: Casper van der Wel Date: Wed, 6 Nov 2024 08:54:41 +0100 Subject: [PATCH] Test against PostGRES 16 --- .github/workflows/test.yml | 2 +- CHANGES.md | 2 +- docker-compose.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8287982..0bdad1a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: services: postgres: - image: postgres:14-alpine + image: postgres:16-alpine env: POSTGRES_PASSWORD: postgres ports: diff --git a/CHANGES.md b/CHANGES.md index 0f90499..8dc80b3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,7 +3,7 @@ ## 0.18.1 (unreleased) ---------------------- -- Nothing changed yet. +- Test against PostGRES 16 (instead of 14). ## 0.18.0 (2024-10-21) diff --git a/docker-compose.yaml b/docker-compose.yaml index a4b533c..ae0f7ce 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,7 +1,7 @@ services: postgres: - image: postgres:14-alpine + image: postgres:16-alpine environment: POSTGRES_PASSWORD: "postgres" # command: ["postgres", "-c", "log_connections=all", "-c", "log_disconnections=all", "-c", "log_statement=all", "-c", "log_destination=stderr"]