From e6d0423ce500640ba0f84aaed4e277db496f2eb3 Mon Sep 17 00:00:00 2001 From: Oliver Rice Date: Wed, 23 Oct 2024 14:45:28 -0500 Subject: [PATCH 1/2] bump pg_net to 0.11.0 --- nix/ext/pg_net.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/ext/pg_net.nix b/nix/ext/pg_net.nix index fe4404cdf..dc923b9a8 100644 --- a/nix/ext/pg_net.nix +++ b/nix/ext/pg_net.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { pname = "pg_net"; - version = "0.10.0"; + version = "0.11.0"; buildInputs = [ curl postgresql ]; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { owner = "supabase"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-R9Mzw5gvV7b2R59LTOzuOc0AI99+3ncFNzijI4mySUg="; + hash = "sha256-XN441jXK1q+I/LZRNwvzbSsebXHgZ8iYsslZvcPFlAs="; }; env.NIX_CFLAGS_COMPILE = "-Wno-error"; @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/{lib,share/postgresql/extension} - cp *.so $out/lib + cp *${postgresql.dlSuffix} $out/lib cp sql/*.sql $out/share/postgresql/extension cp *.control $out/share/postgresql/extension ''; From 7c7a7c45ac93ed95973712866554eb9426b785ae Mon Sep 17 00:00:00 2001 From: Oliver Rice Date: Thu, 24 Oct 2024 10:23:45 -0500 Subject: [PATCH 2/2] bump image to 15.6.1.135 --- common-nix.vars.pkr.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common-nix.vars.pkr.hcl b/common-nix.vars.pkr.hcl index a6e4461e0..eafb1e602 100644 --- a/common-nix.vars.pkr.hcl +++ b/common-nix.vars.pkr.hcl @@ -1 +1 @@ -postgres-version = "15.6.1.134" +postgres-version = "15.6.1.135"