589 velo artifact recommendation (#590)
* fix: extend OS detection to include Ubuntu * fix: update current version to 0.1.21
taylor_socfortress committed
Jan 6, 2026 at 18:14 UTC
5f010f7a128261284bea146951bfe5d9d69991bd
2 files changed
+2
-2
backend/app/threat_intel/routes/socfortress.py
+1
-1
@@ -540,7 +540,7 @@ async def fetch_agent_os(agent_id: str, session: AsyncSession) -> str:
540
agent_os_lower = agent_os.lower()
541
if "windows" in agent_os_lower:
542
return "Windows"
543
- elif "linux" in agent_os_lower:
543
+ elif "linux" in agent_os_lower or "ubuntu" in agent_os_lower:
544
return "Linux"
545
elif "macos" in agent_os_lower or "mac" in agent_os_lower:
546
return "MacOS"
backend/app/version/services/version.py
+1
-1
@@ -7,7 +7,7 @@ from loguru import logger
7
from packaging.version import Version
8
9
# Current version - update this with each release
10
-CURRENT_VERSION = "0.1.20"
10
+CURRENT_VERSION = "0.1.21"
11
VERSION_CHECK_URL = "https://api.github.com/repos/socfortress/CoPilot/releases/latest"
12
13