From eec763bed01171e3b1eb56f0ad83786cc88ab94c Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 10 Mar 2026 10:22:48 -0400 Subject: [PATCH] [Fix] Immich: Pin libvips to 8.17.3 (#12744) --- ct/immich.sh | 2 +- install/immich-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/immich.sh b/ct/immich.sh index 1f7b56665..4e40372ce 100644 --- a/ct/immich.sh +++ b/ct/immich.sh @@ -380,7 +380,7 @@ function compile_imagemagick() { function compile_libvips() { SOURCE=$SOURCE_DIR/libvips - : "${LIBVIPS_REVISION:=$(jq -cr '.revision' "$BASE_DIR"/server/sources/libvips.json)}" + LIBVIPS_REVISION="0c9151a4f416d2f8ae20a755db218f6637050eec" if [[ "$LIBVIPS_REVISION" != "$(grep 'libvips' ~/.immich_library_revisions | awk '{print $2}')" ]]; then msg_info "Recompiling libvips" [[ -d "$SOURCE" ]] && rm -rf "$SOURCE" diff --git a/install/immich-install.sh b/install/immich-install.sh index 0e380f9b0..a95c7cada 100644 --- a/install/immich-install.sh +++ b/install/immich-install.sh @@ -260,7 +260,7 @@ msg_ok "(4/5) Compiled imagemagick" msg_info "(5/5) Compiling libvips" SOURCE=$SOURCE_DIR/libvips -: "${LIBVIPS_REVISION:=$(jq -cr '.revision' $BASE_DIR/server/sources/libvips.json)}" +LIBVIPS_REVISION="0c9151a4f416d2f8ae20a755db218f6637050eec" $STD git clone https://github.com/libvips/libvips.git "$SOURCE" cd "$SOURCE" $STD git reset --hard "$LIBVIPS_REVISION"