Skip to content

Commit 1ec6986

Browse files
committed
Bump pg_repack to 1.5.2
New version allows to run pg_repack by a non-superuser. PR on pg_repack repo: reorg/pg_repack#431
1 parent 9edaf28 commit 1ec6986

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

ansible/tasks/postgres-extensions/27-pg_repack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
git:
1414
repo: https://github.com/reorg/pg_repack.git
1515
dest: /tmp/pg_repack
16-
version: "ver_{{ pg_repack_release }}"
16+
version: "{{ pg_repack_commit }}"
1717
become: yes
1818

1919
- name: pg_repack - build

ansible/vars.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ wrappers_release: "0.4.3"
146146
hypopg_release: "1.4.1"
147147
hypopg_release_checksum: sha256:9afe6357fd389d8d33fad81703038ce520b09275ec00153c6c89282bcdedd6bc
148148

149-
pg_repack_release: "1.5.0"
149+
pg_repack_release: "1.5.2"
150+
pg_repack_commit: "85b64c6d4f599b2988343c4e7121acab505c9006"
150151
pg_repack_release_checksum: sha256:9a14d6a95bfa29f856aa10538238622c1f351d38eb350b196c06720a878ccc52
151152

152153
pgvector_release: "0.7.4"

nix/ext/pg_repack.nix

Lines changed: 3 additions & 3 deletions
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)