From f5ce4bb58fc9650b86c08173bdfdf35ae4bff482 Mon Sep 17 00:00:00 2001 From: Kamil Chudy Date: Tue, 21 Oct 2025 10:11:52 +0200 Subject: [PATCH] Updated current version of components --- src/pages/sbom.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/sbom.astro b/src/pages/sbom.astro index fe752b6..eea9095 100644 --- a/src/pages/sbom.astro +++ b/src/pages/sbom.astro @@ -12,10 +12,10 @@ import FlexibleSection from "../components/FlexibleSection.astro"; // Per-component metadata (id, name, version, repo) to build exact URLs interface ComponentDef { id: 'defguard' | 'defguard-client' | 'defguard-mobile' | 'defguard-proxy' | 'defguard-gateway'; name: string; version: string; repo: string; status: string } const COMPONENTS: ComponentDef[] = [ - { id: 'defguard', name: 'Core', version: '1.5.1', repo: 'defguard', status: '' }, + { id: 'defguard', name: 'Core', version: '1.5.2', repo: 'defguard', status: '' }, { id: 'defguard-proxy', name: 'Proxy', version: '1.5.1', repo: 'proxy', status: '' }, { id: 'defguard-gateway', name: 'Gateway', version: '1.5.1', repo: 'gateway', status: '' }, - { id: 'defguard-client', name: 'Desktop App', version: '1.5.1', repo: 'client', status: '' }, + { id: 'defguard-client', name: 'Desktop App', version: '1.5.2', repo: 'client', status: '' }, { id: 'defguard-mobile', name: 'Mobile App', version: '1.5.1', repo: 'mobile-client', status: '' }, ];