From 5ac4468711d1ca81f12abfd698b4ec5d6755271b Mon Sep 17 00:00:00 2001 From: JakobLichterfeld Date: Mon, 12 Aug 2024 11:06:48 +0200 Subject: [PATCH] chore: update PostgreSQL to version 16 in flake.nix (#4135) * chore: update PostgreSQL to version 16 in flake.nix * doc: update changelog --- CHANGELOG.md | 1 + flake.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18f2a8d40d..12b46f1752 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ - chore: correct comment for pinned Docker login-action to version 3.2.0 (#4120 - @JakobLichterfeld) - build(deps): bump erlef/setup-beam from 1.18.0 to 1.18.1 (#4116) - build(deps): bump docker/login-action from 3.2.0 to 3.3.0 (#4115) +- chore: update PostgreSQL to version 16 in flake.nix (#4135- @JakobLichterfeld) #### Dashboards diff --git a/flake.nix b/flake.nix index d5ec66d7d7..4837699488 100644 --- a/flake.nix +++ b/flake.nix @@ -143,7 +143,7 @@ }; services.postgres = { enable = true; - package = pkgs.postgresql_15; + package = pkgs.postgresql_16; listen_addresses = "127.0.0.1"; port = postgres_port; initialDatabases = [{ name = "teslamate"; }];