Merge pull request #17640 from opensourcerouting/feature/graphviz_frr_releases

doc: Update the next release dates
This commit is contained in:
Jafar Al-Gharaibeh 2024-12-12 22:02:44 -06:00 committed by GitHub
commit b28ee727c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 45 additions and 9 deletions

View File

@ -167,15 +167,7 @@ as early as possible, i.e. the first 2-week window.
For reference, the expected release schedule according to the above is: For reference, the expected release schedule according to the above is:
+---------+------------+------------+------------+ .. graphviz:: ../figures/releases.dot
| Release | 2024-03-12 | 2024-07-02 | 2024-11-05 |
+---------+------------+------------+------------+
| RC | 2024-02-27 | 2024-06-18 | 2024-10-22 |
+---------+------------+------------+------------+
| dev/X.Y | 2024-02-13 | 2024-06-04 | 2024-10-08 |
+---------+------------+------------+------------+
| freeze | 2024-01-30 | 2024-05-21 | 2024-09-24 |
+---------+------------+------------+------------+
Here is the hint on how to get the dates easily: Here is the hint on how to get the dates easily:

44
doc/figures/releases.dot Normal file
View File

@ -0,0 +1,44 @@
digraph ReleaseTimeline {
rankdir=LR;
node [shape=box, style=rounded, fontsize=10, width=1.5, fontname="Helvetica"];
subgraph cluster_dev {
label="Development";
style=dashed;
color=blue;
node [fillcolor=lightblue, style=filled];
"dev/X.Y";
}
subgraph cluster_rc {
label="Release Candidate";
style=dashed;
color=orange;
node [fillcolor=orange, style=filled];
"RC";
}
subgraph cluster_stable {
label="Stable Release";
style=dashed;
color=green;
node [fillcolor=lightgreen, style=filled];
"release";
}
// Release steps with actions
"freeze" [label="Freeze", shape=ellipse, style=dotted, fontcolor=red];
"dev/X.Y" [label="dev/X.Y\n(Development)", fillcolor=lightblue];
"RC" [label="RC\n(Release Candidate)", fillcolor=orange];
"release" [label="Release\n(Final)", fillcolor=lightgreen];
// Connect the steps with actions
"freeze" -> "dev/X.Y" [label=" "];
"dev/X.Y" -> "RC" [label=" "];
"RC" -> "release" [label=" "];
// Date connections (freeze -> dev/X.Y -> RC -> release)
"2025-01-21" -> "2025-02-04" -> "2025-02-18" -> "2025-03-04";
"2025-05-20" -> "2025-06-03" -> "2025-06-17" -> "2025-07-01";
"2025-09-23" -> "2025-10-07" -> "2025-10-21" -> "2025-11-04";
}