From e0e1b679acceb6913a49ba07e46dd15884ab1143 Mon Sep 17 00:00:00 2001 From: Rabindra Dhakal Date: Wed, 12 Aug 2026 10:25:06 +0545 Subject: [PATCH] fix(registry): read the date the metadata actually publishes --- crates/soar-registry/src/package.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/soar-registry/src/package.rs b/crates/soar-registry/src/package.rs index 615614d9..cd5b50d7 100644 --- a/crates/soar-registry/src/package.rs +++ b/crates/soar-registry/src/package.rs @@ -192,7 +192,7 @@ pub struct RemotePackage { #[serde(default, deserialize_with = "empty_is_none")] pub build_id: Option, - #[serde(default, deserialize_with = "empty_is_none")] + #[serde(default, deserialize_with = "empty_is_none", alias = "date")] pub build_date: Option, #[serde(default, deserialize_with = "empty_is_none", alias = "build_gha")]