Skip to content

Commit f5cbb07

Browse files
authored
pg_repack 1.5.2: Allow to run pg_repack by non-superuser (#1314)
New version allows to run pg_repack by a non-superuser. PR on pg_repack repo: reorg/pg_repack#431
1 parent 9edaf28 commit f5cbb07

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ansible/vars.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ postgres_major:
1111

1212
# Full version strings for each major version
1313
postgres_release:
14-
postgres15: "15.8.1.007"
15-
postgres16: "16.3.1.013"
14+
postgres15: "15.8.1.008"
15+
postgres16: "16.3.1.014"
1616

1717
# Non Postgres Extensions
1818
pgbouncer_release: "1.19.0"

nix/ext/pg_repack.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111

1212
stdenv.mkDerivation (finalAttrs: {
1313
pname = "pg_repack";
14-
version = "1.5.0";
14+
version = "1.5.2";
1515

1616
buildInputs = postgresql.buildInputs ++ [ postgresql ];
1717

1818
src = fetchFromGitHub {
1919
owner = "reorg";
2020
repo = "pg_repack";
21-
rev = "ver_${finalAttrs.version}";
22-
hash = "sha256-do80phyMxwcRIkYyUt9z02z7byNQhK+pbSaCUmzG+4c=";
21+
rev = "85b64c6d4f599b2988343c4e7121acab505c9006";
22+
hash = "sha256-lAuLI+vupusvn3uTzQ9OaLqkEfUVMCAwU9R70tTbb8Y=";
2323
};
2424

2525
installPhase = ''

0 commit comments

Comments
 (0)