huskies: merge 844

This commit is contained in:
dave
2026-04-29 16:24:44 +00:00
parent 8a7e1aa036
commit deffcdc326
5 changed files with 1238 additions and 1219 deletions
+16
View File
@@ -0,0 +1,16 @@
//! High-level write API for pipeline items.
//!
//! Provides typed setters and migration helpers for updating pipeline items
//! in the in-memory CRDT document, with ops persisted to SQLite.
mod item;
mod migrations;
#[cfg(test)]
mod tests;
pub use item::{
bump_retry_count, set_agent, set_depends_on, set_mergemaster_attempted, set_qa_mode,
set_retry_count, write_item,
};
pub use migrations::{migrate_names_from_slugs, migrate_story_ids_to_numeric, name_from_story_id};