From 16e2d2206cbc0d99056b153e3fc05ef8c5f4dae4 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 24 Jul 2025 20:38:38 +0200 Subject: [PATCH] Immich: Pin Version to v1.135.3 (#6212) * Immich: Pin Version to v1.135.3 * Update immich.sh --- ct/immich.sh | 5 +++-- install/immich-install.sh | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ct/immich.sh b/ct/immich.sh index bfc61c8de..0c3e488d6 100644 --- a/ct/immich.sh +++ b/ct/immich.sh @@ -58,7 +58,8 @@ function update_script() { done msg_ok "Image-processing libraries updated" fi - RELEASE=$(curl -fsSL https://api.github.com/repos/immich-app/immich/releases?per_page=1 | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') + RELEASE="1.135.3" + #RELEASE=$(curl -fsSL https://api.github.com/repos/immich-app/immich/releases?per_page=1 | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') if [[ -f ~/.immich && "$RELEASE" == "$(cat ~/.immich)" ]]; then msg_ok "No update required. ${APP} is already at v${RELEASE}" exit @@ -102,7 +103,7 @@ function update_script() { mkdir -p "$ML_DIR" rm -rf "$SRC_DIR" - fetch_and_deploy_gh_release "immich" "immich-app/immich" "tarball" "latest" "$SRC_DIR" + fetch_and_deploy_gh_release "immich" "immich-app/immich" "tarball" "v1.135.3" "$SRC_DIR" msg_info "Updating ${APP} web and microservices" cd "$SRC_DIR"/server diff --git a/install/immich-install.sh b/install/immich-install.sh index 7dac15f1a..de0a63579 100644 --- a/install/immich-install.sh +++ b/install/immich-install.sh @@ -283,7 +283,7 @@ GEO_DIR="${INSTALL_DIR}/geodata" mkdir -p "$INSTALL_DIR" mkdir -p {"${APP_DIR}","${UPLOAD_DIR}","${GEO_DIR}","${ML_DIR}","${INSTALL_DIR}"/cache} -fetch_and_deploy_gh_release "immich" "immich-app/immich" "tarball" "latest" "$SRC_DIR" +fetch_and_deploy_gh_release "immich" "immich-app/immich" "tarball" "v1.135.3" "$SRC_DIR" msg_info "Installing ${APPLICATION} (more patience please)"