Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions migrations/schema-15.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions migrations/schema-17.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
8 changes: 4 additions & 4 deletions nix/config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
4 changes: 2 additions & 2 deletions nix/ext/tests/lib.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading