From 3fca8ef10d50878eafeef4dc4e16c26a226364c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Tue, 4 Jul 2023 11:45:05 +0200 Subject: [PATCH] apt: use `apt changelog` for changelog fetching MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit support for it got added to Proxmox repositories, so there is no need to use custom logic and manual fetching for this anymore. Signed-off-by: Fabian Grünbichler --- pbs-api-types/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/pbs-api-types/src/lib.rs b/pbs-api-types/src/lib.rs index 4306eca3..ebd5550d 100644 --- a/pbs-api-types/src/lib.rs +++ b/pbs-api-types/src/lib.rs @@ -398,8 +398,6 @@ pub struct APTUpdateInfo { pub priority: String, /// Package section pub section: String, - /// URL under which the package's changelog can be retrieved - pub change_log_url: String, /// Custom extra field for additional package information #[serde(skip_serializing_if = "Option::is_none")] pub extra_info: Option,