From 1742abde50d86d5d522c407705b45de2001eb695 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 30 Jan 2026 01:06:24 +0000 Subject: [PATCH 1/2] Initial plan From 62e22b54ae8aa9696a078e436e5f759506c25a1b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 30 Jan 2026 01:08:51 +0000 Subject: [PATCH 2/2] Remove hardcoded fallback min version, use config.json instead Co-authored-by: abraham <3341+abraham@users.noreply.github.com> --- src/parsers/VersionParser.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parsers/VersionParser.ts b/src/parsers/VersionParser.ts index bc23203..a2b28fb 100644 --- a/src/parsers/VersionParser.ts +++ b/src/parsers/VersionParser.ts @@ -88,11 +88,11 @@ export class VersionParser { /** * Finds the maximum version from an array of version strings * @param versions Array of version strings - * @returns The maximum version, or "4.3.0" as fallback if no versions found + * @returns The maximum version, or MINIMUM_VERSION as fallback if no versions found */ static findMaxVersion(versions: string[]): string { if (!versions || versions.length === 0) { - return '4.3.0'; // Fallback to current hardcoded version + return MINIMUM_VERSION; // Fallback to minimum version from config } return versions.reduce((max, current) =>