From 00701b94c7821c9c32eaca61be6b3dbc7f5e6a26 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 12 Feb 2026 16:55:40 -0500 Subject: [PATCH 1/6] feat: update postgres minor version on 15 an 17 --- nix/config.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/config.nix b/nix/config.nix index e61683674..199dab782 100644 --- a/nix/config.nix +++ b/nix/config.nix @@ -46,12 +46,12 @@ in supportedPostgresVersions = { postgres = { "15" = { - version = "15.14"; - hash = "sha256-Bt110wXNOHDuYrOTLmYcYkVD6vmuK6N83sCk+O3QUdI="; + version = "15.16"; + hash = "sha256-aV7imne+H1AQ4Q82Z2lvKYcVh/eqMR6twfgJvqKHz0g="; }; "17" = { - version = "17.6"; - hash = "sha256-4GMKNgCuonURcVVjJZ7CERzV9DU6SwQOC+gn+UzXqLA="; + version = "17.8"; + hash = "sha256-qI0ZXdk3MEUtDPoaEYlnINbRughLwr59f8VX+k5BWKA="; }; }; orioledb = { From 64e2e8913c9436987ea27c04d65412173744a448 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Tue, 10 Mar 2026 16:46:03 -0400 Subject: [PATCH 2/6] feat: 15.17 17.9 --- nix/config.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/config.nix b/nix/config.nix index 199dab782..74cab2b7f 100644 --- a/nix/config.nix +++ b/nix/config.nix @@ -46,12 +46,12 @@ in supportedPostgresVersions = { postgres = { "15" = { - version = "15.16"; - hash = "sha256-aV7imne+H1AQ4Q82Z2lvKYcVh/eqMR6twfgJvqKHz0g="; + version = "15.17"; + hash = "sha256-rhTyTBRyfgst7RxVUwMWZgmb0QVNs+9Ev6bivW1VSlY="; }; "17" = { - version = "17.8"; - hash = "sha256-qI0ZXdk3MEUtDPoaEYlnINbRughLwr59f8VX+k5BWKA="; + version = "17.9"; + hash = "sha256-O5piU4qNoVHoB6PdsRmOhgXyAyVE149AOuiD0n7PHuQ="; }; }; orioledb = { From 849db6def942aa4a6f9d670bde7744786eff8681 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 12 Mar 2026 13:50:39 -0400 Subject: [PATCH 3/6] fix: update test vars --- ansible/vars.yml | 6 +++--- nix/ext/tests/lib.nix | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index ae5ecfb33..8f9dfc7db 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -10,9 +10,9 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "17.6.0.053-orioledb" - postgres17: "17.6.1.096" - postgres15: "15.14.1.096" + postgresorioledb-17: "17.6.0.052-orioledb-test-1" + postgres17: "17.9.1.001-test-1" + postgres15: "15.17.1.001-test-1" # Non Postgres Extensions pgbouncer_release: 1.25.1 diff --git a/nix/ext/tests/lib.nix b/nix/ext/tests/lib.nix index d27833306..b503516fc 100644 --- a/nix/ext/tests/lib.nix +++ b/nix/ext/tests/lib.nix @@ -4,8 +4,8 @@ let system = pkgs.pkgsLinux.stdenv.hostPlatform.system; expectedVersions = { - "15" = "15.14"; - "17" = "17.6"; + "15" = "15.17"; + "17" = "17.9"; }; defaultPort = 5432; From 7132f78e8f342a7da29c53626d12056d18a369f2 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 12 Mar 2026 14:48:24 -0400 Subject: [PATCH 4/6] feat: update schema files for migration tests --- migrations/schema-15.sql | 4 ++-- migrations/schema-17.sql | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/migrations/schema-15.sql b/migrations/schema-15.sql index 8f64dbda3..a12e2c89b 100644 --- a/migrations/schema-15.sql +++ b/migrations/schema-15.sql @@ -4,8 +4,8 @@ \restrict SupabaseTestDumpKey123 --- Dumped from database version 15.14 --- Dumped by pg_dump version 15.14 +-- Dumped from database version 15.17 +-- Dumped by pg_dump version 15.17 SET statement_timeout = 0; SET lock_timeout = 0; diff --git a/migrations/schema-17.sql b/migrations/schema-17.sql index 8017d8841..dc5a779d8 100644 --- a/migrations/schema-17.sql +++ b/migrations/schema-17.sql @@ -4,8 +4,8 @@ \restrict SupabaseTestDumpKey123 --- Dumped from database version 17.6 --- Dumped by pg_dump version 17.6 +-- Dumped from database version 17.9 +-- Dumped by pg_dump version 17.9 SET statement_timeout = 0; SET lock_timeout = 0; From 64ebf6edc59179e9a9fd2f2240d80dfaa7503e57 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 12 Mar 2026 20:27:25 -0400 Subject: [PATCH 5/6] docs: timescale --- nix/ext/timescaledb.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/ext/timescaledb.nix b/nix/ext/timescaledb.nix index dbfb2a836..6837e77f3 100644 --- a/nix/ext/timescaledb.nix +++ b/nix/ext/timescaledb.nix @@ -13,7 +13,7 @@ writeShellApplication, latestOnly ? false, }: - +# this extension is limited to Postgres 15 let pname = "timescaledb"; build = From bd712d6de1b81ef28499cc816643d76a6f02145f Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Fri, 13 Mar 2026 10:39:45 -0400 Subject: [PATCH 6/6] fix: rm comment --- nix/ext/timescaledb.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/ext/timescaledb.nix b/nix/ext/timescaledb.nix index 6837e77f3..dbfb2a836 100644 --- a/nix/ext/timescaledb.nix +++ b/nix/ext/timescaledb.nix @@ -13,7 +13,7 @@ writeShellApplication, latestOnly ? false, }: -# this extension is limited to Postgres 15 + let pname = "timescaledb"; build =