From b8f9aa8b7003bbd1b850afd70014c94af2ce4953 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 30 Apr 2026 07:46:37 +0000 Subject: [PATCH 1/2] chore: update app headers [skip ci] --- ct/headers/bitfocus-companion | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ct/headers/bitfocus-companion b/ct/headers/bitfocus-companion index f75212a5..56521d7b 100644 --- a/ct/headers/bitfocus-companion +++ b/ct/headers/bitfocus-companion @@ -1,6 +1,6 @@ - ____ _ __ ____ ______ _ - / __ )(_) /_/ __/___ _______ _______ / ____/___ ____ ___ ____ ____ _____ (_)___ ____ - / __ / / __/ /_/ __ \/ ___/ / / / ___/ / / / __ \/ __ `__ \/ __ \/ __ `/ __ \/ / __ \/ __ \ - / /_/ / / /_/ __/ /_/ / /__/ /_/ (__ ) / /___/ /_/ / / / / / / /_/ / /_/ / / / / / /_/ / / / / -/_____/_/\__/_/ \____/\___/\__,_/____/ \____/\____/_/ /_/ /_/ .___/\__,_/_/ /_/_/\____/_/ /_/ - /_/ + ____ _ __ ____ ______ _ + / __ )(_) /_/ __/___ _______ _______ / ____/___ ____ ___ ____ ____ _____ (_)___ ____ + / __ / / __/ /_/ __ \/ ___/ / / / ___/_____/ / / __ \/ __ `__ \/ __ \/ __ `/ __ \/ / __ \/ __ \ + / /_/ / / /_/ __/ /_/ / /__/ /_/ (__ )_____/ /___/ /_/ / / / / / / /_/ / /_/ / / / / / /_/ / / / / +/_____/_/\__/_/ \____/\___/\__,_/____/ \____/\____/_/ /_/ /_/ .___/\__,_/_/ /_/_/\____/_/ /_/ + /_/ From 390061cf501fbf5c2153237d1170392b963638ad Mon Sep 17 00:00:00 2001 From: tremor021 Date: Thu, 30 Apr 2026 12:17:36 +0200 Subject: [PATCH 2/2] tools.func: handle minor versions for 8.x --- misc/tools.func | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index c066685a..0e3fd0c2 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -6059,8 +6059,11 @@ function setup_mongodb() { } # Setup repository + # MongoDB 8.x versions beyond 8.0 reuse the server-8.0.asc PGP key + local MONGO_KEY_VERSION="${MONGO_VERSION}" + [[ "${MONGO_VERSION}" == 8.[1-9]* ]] && MONGO_KEY_VERSION="8.0" manage_tool_repository "mongodb" "$MONGO_VERSION" "$MONGO_BASE_URL" \ - "https://www.mongodb.org/static/pgp/server-${MONGO_VERSION}.asc" || { + "https://www.mongodb.org/static/pgp/server-${MONGO_KEY_VERSION}.asc" || { msg_error "Failed to setup MongoDB repository" return 100 }