public inbox for pbs-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [pbs-devel] [PATCH proxmox 1/2] apt-api-types: fix backward compatibility by encoding digest as array
@ 2024-07-17  7:35 Dietmar Maurer
  2024-07-17  7:35 ` [pbs-devel] [PATCH proxmox 2/2] apt: updates for changed api (digest as array) Dietmar Maurer
  2024-07-17  9:48 ` [pbs-devel] applied-series: [PATCH proxmox 1/2] apt-api-types: fix backward compatibility by encoding digest as array Thomas Lamprecht
  0 siblings, 2 replies; 3+ messages in thread
From: Dietmar Maurer @ 2024-07-17  7:35 UTC (permalink / raw)
  To: pbs-devel

Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
---
 proxmox-apt-api-types/src/lib.rs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/proxmox-apt-api-types/src/lib.rs b/proxmox-apt-api-types/src/lib.rs
index 0331ffb6..6025722f 100644
--- a/proxmox-apt-api-types/src/lib.rs
+++ b/proxmox-apt-api-types/src/lib.rs
@@ -185,8 +185,9 @@ pub struct APTRepositoryFile {
     pub content: Option<String>,
 
     /// Digest of the original contents.
+    // We cannot use ConfigDigest here for compatibility reasons.
     #[serde(skip_serializing_if = "Option::is_none")]
-    pub digest: Option<ConfigDigest>,
+    pub digest: Option<[u8; 32]>,
 }
 
 #[api]
-- 
2.39.2


_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-07-17  9:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-17  7:35 [pbs-devel] [PATCH proxmox 1/2] apt-api-types: fix backward compatibility by encoding digest as array Dietmar Maurer
2024-07-17  7:35 ` [pbs-devel] [PATCH proxmox 2/2] apt: updates for changed api (digest as array) Dietmar Maurer
2024-07-17  9:48 ` [pbs-devel] applied-series: [PATCH proxmox 1/2] apt-api-types: fix backward compatibility by encoding digest as array Thomas Lamprecht

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal