Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion repos-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "gardenlinux",
"url": "https://github.com/gardenlinux/gardenlinux",
"ref": "main",
"commit": "7dc0d272ce9ae6223320bf84b0083ee0dc6c0e04",
"commit": "b3b3f7b411d58d6e47e0980317a70904847a4b10",
"root_files": [
"CONTRIBUTING.md",
"SECURITY.md",
Expand Down
14 changes: 7 additions & 7 deletions src/aggregation/releases.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
"""


Expand Down