This commit is contained in:
Josh Thomas 2025-12-13 12:10:49 -06:00
parent 7b159382b9
commit 986b2a2dcb

View file

@ -92,13 +92,11 @@ where
}
if let Ok(legacy) = Vec::<tagspecs::legacy::LegacyTagSpecDef>::deserialize(&value) {
tracing::warn!(
concat!(
"DEPRECATED: TagSpecs v0.4.0 format detected. Please migrate to v0.6.0 format. ",
"The old format will be removed in v6.2.0. ",
"See migration guide: https://djls.joshthomas.dev/tagspecs/#migration-from-v040",
)
);
tracing::warn!(concat!(
"DEPRECATED: TagSpecs v0.4.0 format detected. Please migrate to v0.6.0 format. ",
"The old format will be removed in v6.2.0. ",
"See migration guide: https://djls.joshthomas.dev/tagspecs/#migration-from-v040",
));
return Ok(tagspecs::legacy::convert_legacy_tagspecs(legacy));
}