Skip to content

Commit 4ba8a05

Browse files
Revert "hack: drop packages list from major release pages"
1 parent 2352ee1 commit 4ba8a05

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

src/gardenlinux/github/release_notes/sections.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,16 @@ def release_notes_compare_package_versions_section(
117117
output += f"## Changes in Package Versions Compared to {previous_version}\n"
118118
output += compare_apt_repo_versions(previous_version, gardenlinux_version)
119119
else:
120-
# creating the full list of all packages exceeds the limit for github release pages
121-
# => ignore this part in the release page for now until we have a better strategy
122-
pass
120+
output += (
121+
f"## Full List of Packages in Garden Linux version {gardenlinux_version}\n"
122+
)
123+
output += "<details><summary>Expand to see full list</summary>\n"
124+
output += "<pre>"
125+
output += "\n"
126+
for entry in package_list.values():
127+
output += f"{entry!r}\n"
128+
output += "</pre>"
129+
output += "\n</details>\n\n"
123130

124131
return output
125132

0 commit comments

Comments
 (0)