From ad9fd4058355070de6c2b0c40efd7dcee2b659f5 Mon Sep 17 00:00:00 2001 From: Moritz Kirchner Date: Fri, 31 Jul 2026 09:29:30 +0200 Subject: [PATCH 1/2] Small change to make the gant chart more readable, the abbreviations seemed a bit "forced" IMHO I do understand the need for abbreviation in the EOM because the part in the diagram is relatively small --- src/aggregation/releases.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/aggregation/releases.py b/src/aggregation/releases.py index 27cde9f..1f0dec8 100644 --- a/src/aggregation/releases.py +++ b/src/aggregation/releases.py @@ -132,12 +132,12 @@ def generate_mermaid_gantt(releases_data: dict) -> str: gantt += f" section {version}\n" if extended_date: - gantt += f" SMaint :active, sm{version}, {released_date}, {extended_date}\n" - gantt += f" ExtMaint :crit, em{version}, {extended_date}, {eol_date}\n" + gantt += f" Standard Maintenance :active, sm{version}, {released_date}, {extended_date}\n" + gantt += f" Extended Maintenance :crit, em{version}, {extended_date}, {eol_date}\n" else: - gantt += f" SMaint :active, sm{version}, {released_date}, {eol_date}\n" + gantt += f" Standard Maintenance :active, sm{version}, {released_date}, {eol_date}\n" - gantt += f" EoMaint :milestone, eom{version}, {eol_date}, 0d\n" + gantt += f" EOM :milestone, eom{version}, {eol_date}, 0d\n" return gantt @@ -218,9 +218,9 @@ def get_timeline_section(gantt_chart: str, title: str) -> str: ``` **Legend:** -- **SMaint** = [Standard Maintenance]({LIFECYCLE_LINKS['standard']}) — Active maintenance with regular updates -- **ExtMaint** = [Extended Maintenance]({LIFECYCLE_LINKS['extended']}) — Critical CVE fixes only (CVSS ≥7.0) -- **EoMaint** = [End of Maintenance]({LIFECYCLE_LINKS['eol']}) — No further updates +- [Standard Maintenance]({LIFECYCLE_LINKS['standard']}) — Active maintenance with regular updates +- [Extended Maintenance]({LIFECYCLE_LINKS['extended']}) — Critical CVE fixes only (CVSS ≥7.0) +- **EOM** = [End of Maintenance]({LIFECYCLE_LINKS['eol']}) — No further updates """ From 21dc8876fc1d17e9a6df6d15c41ad3adefbf166c Mon Sep 17 00:00:00 2001 From: Moritz Kirchner Date: Thu, 13 Aug 2026 11:09:12 +0200 Subject: [PATCH 2/2] Try to update the documentation to show the new releases on the website --- repos-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos-config.json b/repos-config.json index e965244..9353645 100644 --- a/repos-config.json +++ b/repos-config.json @@ -4,7 +4,7 @@ "name": "gardenlinux", "url": "https://github.com/gardenlinux/gardenlinux", "ref": "main", - "commit": "7dc0d272ce9ae6223320bf84b0083ee0dc6c0e04", + "commit": "b3b3f7b411d58d6e47e0980317a70904847a4b10", "root_files": [ "CONTRIBUTING.md", "SECURITY.md",