From 34726fb63c6b005d13a442e5edce10bd36ef00b5 Mon Sep 17 00:00:00 2001 From: iamtoruk Date: Tue, 18 Aug 2026 12:20:34 -0700 Subject: [PATCH] ci(upgrade-path): reference #1032 in the shard-republish note --- scripts/upgrade-path/run.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upgrade-path/run.mjs b/scripts/upgrade-path/run.mjs index 05878e1f..3bd66395 100644 --- a/scripts/upgrade-path/run.mjs +++ b/scripts/upgrade-path/run.mjs @@ -332,7 +332,7 @@ check(JSON.stringify(stripGenerated(warm.menubar)) === JSON.stringify(stripGener const afterMtimes = shardMtimes(upgradeCache) const republished = Object.keys(afterMtimes).filter(n => n !== 'envelope.json' && beforeMtimes[n] !== afterMtimes[n]) const retired = Object.keys(beforeMtimes).filter(n => n !== 'envelope.json' && !(n in afterMtimes)) -const churnNote = 'known defect, follow-up issue pending: a date-ranged run republishes the month shards it skipped' +const churnNote = 'known defect, see #1032: a date-ranged run republishes the month shards it skipped' if (retired.length) console.log(` note ${retired.length} shard(s) republished under a new name with identical content (${churnNote}): ${retired.join(', ')}`) else if (republished.length) console.log(` note ${republished.length} shard(s) rewritten in place (${churnNote}): ${republished.join(', ')}`) else ok('no shard republished on an unchanged corpus')