This way the writing of the JSON file is handled automatically if the update does not fail. It pave the way to further global improvements, such as a better error handling.
28 lines
1.2 KiB
Python
28 lines
1.2 KiB
Python
import re
|
|
|
|
from common import dates, releasedata
|
|
from common.git import Git
|
|
|
|
"""Fetches Red Hat OpenShift versions from the documentation's git repository"""
|
|
|
|
VERSION_AND_DATE_PATTERN = re.compile(r"{product-title}\s(?P<version>\d+\.\d+\.\d+).*\n+Issued:\s(?P<date>\d{4}-\d\d-\d\d)$", re.MULTILINE)
|
|
|
|
with releasedata.ProductData("red-hat-openshift") as product_data:
|
|
git = Git("https://github.com/openshift/openshift-docs.git")
|
|
git.setup()
|
|
|
|
# only fetch v4+ branches, because the format was different in openshift v3
|
|
for branch in git.list_branches("refs/heads/enterprise-[4-9]*"):
|
|
version = branch.split("-")[1].replace(".", "-")
|
|
release_notes_filename = f"release_notes/ocp-{version}-release-notes.adoc"
|
|
git.checkout(branch, file_list=[release_notes_filename])
|
|
|
|
release_notes_file = git.repo_dir / release_notes_filename
|
|
if not release_notes_file.exists():
|
|
continue
|
|
|
|
with release_notes_file.open("rb") as f:
|
|
content = f.read().decode("utf-8")
|
|
for (version, date_str) in VERSION_AND_DATE_PATTERN.findall(content):
|
|
product_data.declare_version(version, dates.parse_date(date_str))
|