Rawhide is now F43 #12554

Closed
jnsamyak wants to merge 1 commit from f42_massbranching into main
2 changed files with 8 additions and 2 deletions

View file

@ -44,7 +44,8 @@ class ReleaseMapper(object):
if namespace == "container":
# git branchname, koji tag, epel build tag
self.mapping = (
("rawhide", "f42-container", ""),
("rawhide", "f43-container", ""),
("f42", "f42-container", ""),
("f41", "f41-container", ""),
("f40", "f40-container", ""),
("f39", "f39-container", ""),
@ -66,7 +67,8 @@ class ReleaseMapper(object):
else:
# git branchname, koji tag, epel build tag
self.mapping = (
("rawhide", "f42", ""),
("rawhide", "f43", ""),
("f42", "f42", ""),
("f41", "f41", ""),
("f40", "f40", ""),
("f39", "f39", ""),

View file

@ -29,6 +29,10 @@ STANDARD_BRANCH_SLAS = {
'f41': {
'bug_fixes': '2025-11-11',
'security_fixes': '2025-11-11'
},
'f42': {
'bug_fixes': '2026-05-13',
'security_fixes': '2026-05-13'
}
}