Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update pgpsql-http version #1353

Merged
merged 2 commits into from
Dec 4, 2024
Merged
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
9 changes: 4 additions & 5 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.0.1.006-orioledb"
postgres15: "15.8.1.016"
postgres16: "16.3.1.022"
postgresorioledb-17: "17.0.1.007-orioledb"
postgres15: "15.8.1.017"
postgres16: "16.3.1.023"

# Non Postgres Extensions
pgbouncer_release: "1.19.0"
Expand Down Expand Up @@ -78,8 +78,7 @@ pgaudit_release_checksum: sha256:8f4a73e451c88c567e516e6cba7dc1e23bc91686bb6f1f7

pgjwt_release: 9742dab1b2f297ad3811120db7b21451bca2d3c9

pgsql_http_release: "1.5.0"
pgsql_http_release_checksum: sha256:43efc9e82afcd110f205b86b8d28d1355d39b6b134161e9661a33a1346818f5d
pgsql_http_release: "1.6.1"

plpgsql_check_release: "2.2.5"
plpgsql_check_release_checksum: sha256:6c3a3c5faf3f9689425c6db8a6b20bf4cd5e7144a055e29538eae980c7232573
Expand Down
4 changes: 2 additions & 2 deletions nix/ext/pgsql-http.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

stdenv.mkDerivation rec {
pname = "pgsql-http";
version = "1.6.0";
version = "1.6.1";

buildInputs = [ curl postgresql ];

src = fetchFromGitHub {
owner = "pramsey";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-CPHfx7vhWfxkXsoKTzyFuTt47BPMvzi/pi1leGcuD60=";
hash = "sha256-C8eqi0q1dnshUAZjIsZFwa5FTYc7vmATF3vv2CReWPM=";
};

installPhase = ''
Expand Down
Loading