From f48ba0af2c0214a8af24bbfefdc37c5c79b15ed0 Mon Sep 17 00:00:00 2001 From: nkraetzschmar <9020053+nkraetzschmar@users.noreply.github.com> Date: Mon, 23 Feb 2026 10:54:04 +0100 Subject: [PATCH] hack: drop packages list from major release pages --- src/gardenlinux/github/release_notes/sections.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/gardenlinux/github/release_notes/sections.py b/src/gardenlinux/github/release_notes/sections.py index de3ad2b4..0da24803 100644 --- a/src/gardenlinux/github/release_notes/sections.py +++ b/src/gardenlinux/github/release_notes/sections.py @@ -117,16 +117,9 @@ def release_notes_compare_package_versions_section( output += f"## Changes in Package Versions Compared to {previous_version}\n" output += compare_apt_repo_versions(previous_version, gardenlinux_version) else: - output += ( - f"## Full List of Packages in Garden Linux version {gardenlinux_version}\n" - ) - output += "
Expand to see full list\n" - output += "
"
-        output += "\n"
-        for entry in package_list.values():
-            output += f"{entry!r}\n"
-            output += "
" - output += "\n
\n\n" + # creating the full list of all packages exceeds the limit for github release pages + # => ignore this part in the release page for now until we have a better strategy + pass return output