From dbab0ec382d4e17f717875fec01f09f99595e986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20K=C3=BCc=C3=BCk?= Date: Wed, 17 Dec 2025 10:49:39 +0000 Subject: [PATCH 1/3] Update PostgreSQL image version to 16 for non CE --- .github/workflows/elixir.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 4146343bd5bb..27d5b13c8722 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: mix_env: ["test"] - postgres_image: ["postgres:15"] + postgres_image: ["postgres:16"] mix_test_partition: [1, 2, 3, 4, 5, 6] include: From c887af9ca856ccef78841c38305eb1ae214267fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20K=C3=BCc=C3=BCk?= Date: Mon, 29 Dec 2025 21:56:52 +0000 Subject: [PATCH 2/3] Update PostgreSQL image version in workflow --- .github/workflows/elixir.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 27d5b13c8722..21276f26e427 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: mix_env: ["test"] - postgres_image: ["postgres:16"] + postgres_image: ["postgres:18"] mix_test_partition: [1, 2, 3, 4, 5, 6] include: From f91b06950433e7fefacd27a8d3a0094637c1ac66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20K=C3=BCc=C3=BCk?= Date: Thu, 1 Jan 2026 23:30:59 +0000 Subject: [PATCH 3/3] Update PostgreSQL prod version in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6b9f995b4ae2..a178e4d959a7 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ postgres-client: ## Connect to postgres docker exec -it plausible_db psql -U postgres -d plausible_dev postgres-prod: ## Start a container with the same version of postgres as the one in prod - docker run $(PG_FLAGS) --volume=plausible_db_prod:/var/lib/postgresql/data postgres:15 + docker run $(PG_FLAGS) --volume=plausible_db_prod:/var/lib/postgresql/data postgres:18 postgres-stop: ## Stop and remove the postgres container docker stop plausible_db && docker rm plausible_db