You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tools.func: display pin reason in release-check messages (#13095)
* Display pin reason in release-check messages
Add an optional pin_reason parameter to check_for_gh_release and check_for_codeberg_release and update the no-update messaging to show the provided reason. If no reason is supplied, show a default message indicating the update is temporarily held back due to issues with newer releases. This improves user feedback when versions are intentionally pinned.
* Add informational args to release checks
Pass extra informational strings to check_for_gh_release calls to surface release-specific notes. Updated ct/immich.sh (notes for Immich and VectorChord releases), ct/opencloud.sh (note for OpenCloud), and ct/plant-it.sh (note about web frontend presence). These messages clarify testing/compatibility expectations when checking/releases.
Copy file name to clipboardExpand all lines: ct/immich.sh
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ EOF
110
110
fi
111
111
112
112
RELEASE="v2.5.6"
113
-
if check_for_gh_release "Immich""immich-app/immich""${RELEASE}";then
113
+
if check_for_gh_release "Immich""immich-app/immich""${RELEASE}""each release is tested individually before the version is updated. Please do not open issues for this";then
Copy file name to clipboardExpand all lines: ct/opencloud.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ function update_script() {
30
30
fi
31
31
32
32
RELEASE="v5.2.0"
33
-
if check_for_gh_release "OpenCloud""opencloud-eu/opencloud""${RELEASE}";then
33
+
if check_for_gh_release "OpenCloud""opencloud-eu/opencloud""${RELEASE}""each release is tested individually before the version is updated. Please do not open issues for this";then
0 commit comments