2024-04-22 14:43:48 +03:00
|
|
|
"""
|
|
|
|
Sphinx extension to add timestamps to release notes based on Git versions.
|
|
|
|
|
|
|
|
Based on https://github.com/jaraco/rst.linker, with thanks to Jason R. Coombs.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import re
|
|
|
|
import subprocess
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from sphinx.application import Sphinx
|
|
|
|
|
|
|
|
DOC_NAME_REGEX = re.compile(r"releasenotes/\d+\.\d+\.\d+")
|
|
|
|
VERSION_TITLE_REGEX = re.compile(r"^(\d+\.\d+\.\d+)\n-+\n")
|
|
|
|
|
|
|
|
|
2024-04-25 06:10:45 +03:00
|
|
|
def get_date_for(git_version: str) -> str | None:
|
2024-04-22 14:43:48 +03:00
|
|
|
cmd = ["git", "log", "-1", "--format=%ai", git_version]
|
|
|
|
try:
|
2024-04-24 16:06:06 +03:00
|
|
|
out = subprocess.check_output(
|
|
|
|
cmd, stderr=subprocess.DEVNULL, text=True, encoding="utf-8"
|
|
|
|
)
|
2024-04-22 14:43:48 +03:00
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
return None
|
2024-04-25 06:10:45 +03:00
|
|
|
return out.split()[0]
|
2024-04-22 14:43:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
def add_date(app: Sphinx, doc_name: str, source: list[str]) -> None:
|
|
|
|
if DOC_NAME_REGEX.match(doc_name) and (m := VERSION_TITLE_REGEX.match(source[0])):
|
|
|
|
old_title = m.group(1)
|
|
|
|
|
2024-04-25 06:10:45 +03:00
|
|
|
if tag_date := get_date_for(old_title):
|
|
|
|
new_title = f"{old_title} ({tag_date})"
|
2024-04-22 14:43:48 +03:00
|
|
|
else:
|
|
|
|
new_title = f"{old_title} (unreleased)"
|
|
|
|
|
|
|
|
new_underline = "-" * len(new_title)
|
|
|
|
|
|
|
|
result = source[0].replace(m.group(0), f"{new_title}\n{new_underline}\n", 1)
|
|
|
|
source[0] = result
|
|
|
|
|
|
|
|
|
|
|
|
def setup(app: Sphinx) -> dict[str, bool]:
|
|
|
|
app.connect("source-read", add_date)
|
|
|
|
return {"parallel_read_safe": True}
|