Skip to content

Commit 2e9ca5b

Browse files
committed
feat: bump supautils to v2.7.3
1 parent 683229d commit 2e9ca5b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

migrations/db/migrations/20231020085357_revoke_writes_on_cron_job_from_postgres.sql

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ BEGIN
3838
END IF;
3939
END;
4040
$$;
41+
alter function extensions.grant_pg_cron_access owner to supabase_admin;
4142

4243
drop event trigger if exists issue_pg_cron_access;
4344
CREATE EVENT TRIGGER issue_pg_cron_access ON ddl_command_end

nix/ext/supautils.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22

33
stdenv.mkDerivation rec {
44
pname = "supautils";
5-
version = "2.6.0";
5+
version = "2.7.3";
66

77
buildInputs = [ postgresql ];
88

99
src = fetchFromGitHub {
1010
owner = "supabase";
1111
repo = pname;
1212
rev = "refs/tags/v${version}";
13-
hash = "sha256-QNfUpQjqHNzbNqBvjb5a3GtNH9hjbBMDUK19xUU3LpI=";
13+
hash = "sha256-QKQQUz6ObzqINTLZaMQtocOkYX0Rh61fBLoB+rZ64UM=";
1414
};
1515

1616
installPhase = ''
1717
mkdir -p $out/lib
1818
19-
install -D *${postgresql.dlSuffix} -t $out/lib
19+
install -D build/*${postgresql.dlSuffix} -t $out/lib
2020
'';
2121

2222
meta = with lib; {

0 commit comments

Comments
 (0)