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/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; diff --git a/nix/config.nix b/nix/config.nix index e61683674..74cab2b7f 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.17"; + hash = "sha256-rhTyTBRyfgst7RxVUwMWZgmb0QVNs+9Ev6bivW1VSlY="; }; "17" = { - version = "17.6"; - hash = "sha256-4GMKNgCuonURcVVjJZ7CERzV9DU6SwQOC+gn+UzXqLA="; + version = "17.9"; + hash = "sha256-O5piU4qNoVHoB6PdsRmOhgXyAyVE149AOuiD0n7PHuQ="; }; }; orioledb = { 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;