diff --git a/.changeset/windows-lifecycle-handoff.md b/.changeset/windows-lifecycle-handoff.md index da61652c..cc8833aa 100644 --- a/.changeset/windows-lifecycle-handoff.md +++ b/.changeset/windows-lifecycle-handoff.md @@ -2,4 +2,4 @@ "tracedecay": patch --- -Secure Windows update lifecycle handoff without trusting stale owner sidecars, and restore platform-neutral migration and post-update test coverage on Windows. +Secure Windows update lifecycle handoff without trusting stale owner sidecars, make migration copies durable across Windows file-lock semantics, skip unavailable daemon-service operations, and restore platform-neutral migration and post-update coverage. diff --git a/src/migrate/consolidate/mod.rs b/src/migrate/consolidate/mod.rs index 2b7b49dc..47e798e8 100644 --- a/src/migrate/consolidate/mod.rs +++ b/src/migrate/consolidate/mod.rs @@ -1686,5 +1686,5 @@ fn io_error(error: io::Error) -> TraceDecayError { config_error(error.to_string()) } -#[cfg(all(test, not(windows)))] +#[cfg(test)] mod tests;