huskies: merge 865

This commit is contained in:
dave
2026-05-08 14:24:20 +00:00
parent fac4442969
commit 9be438e6d3
47 changed files with 733 additions and 731 deletions
+6 -1
View File
@@ -19,6 +19,11 @@ pub mod content_store;
pub mod ops;
/// Background shadow-write task — persists pipeline items to SQLite asynchronously.
pub mod shadow_write;
/// Legacy YAML helpers — used by the migration and by callers reading the
/// small set of fields not yet mirrored into the CRDT.
pub(crate) mod yaml_legacy;
/// One-shot migration that strips legacy YAML front-matter from stored content (story 865).
pub mod yaml_migration;
pub use content_store::{all_content_ids, delete_content, read_content, write_content};
pub use ops::{ItemMeta, delete_item, move_item_stage, next_item_number, write_item_with_content};
@@ -30,7 +35,7 @@ pub use content_store::ensure_content_store;
#[cfg(test)]
mod tests {
use super::*;
use crate::io::story_metadata::parse_front_matter;
use crate::db::yaml_legacy::parse_front_matter;
use std::fs;
/// Helper: write a minimal story .md file with front matter.