We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 601ca8c commit c99b904Copy full SHA for c99b904
src/gardenlinux/github/__main__.py
@@ -549,19 +549,6 @@ def download_all_metadata_files(version, commitish):
549
return [str(artifact) for artifact in local_dest_path.iterdir()]
550
551
552
-def _parse_match_section(pkg_list: list):
553
- output = ""
554
- for pkg in pkg_list:
555
- # If is dict, the package has additional information relevant for release notes
556
- if isinstance(pkg, dict):
557
- pkg_string = next(iter(pkg))
558
- output += f"\n{pkg_string}:\n"
559
- for item in pkg[pkg_string]:
560
- for k, v in item.items():
561
- output += f" * {k}: {v}\n"
562
- return output
563
-
564
565
def release_notes_changes_section(gardenlinux_version):
566
"""
567
Get list of fixed CVEs, grouped by upgraded package.
0 commit comments