instar 1.3.962 → 1.3.964
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/UnjustifiedStopGate.d.ts +14 -0
- package/dist/core/UnjustifiedStopGate.d.ts.map +1 -1
- package/dist/core/UnjustifiedStopGate.js +52 -2
- package/dist/core/UnjustifiedStopGate.js.map +1 -1
- package/dist/core/WriteDomainRegistry.d.ts.map +1 -1
- package/dist/core/WriteDomainRegistry.js +7 -0
- package/dist/core/WriteDomainRegistry.js.map +1 -1
- package/dist/data/provenanceCoverage.d.ts +2 -0
- package/dist/data/provenanceCoverage.d.ts.map +1 -1
- package/dist/data/provenanceCoverage.js +29 -4
- package/dist/data/provenanceCoverage.js.map +1 -1
- package/dist/monitoring/CheckInReminderReconciler.d.ts +92 -0
- package/dist/monitoring/CheckInReminderReconciler.d.ts.map +1 -0
- package/dist/monitoring/CheckInReminderReconciler.js +167 -0
- package/dist/monitoring/CheckInReminderReconciler.js.map +1 -0
- package/dist/monitoring/CommitmentTracker.d.ts +39 -0
- package/dist/monitoring/CommitmentTracker.d.ts.map +1 -1
- package/dist/monitoring/CommitmentTracker.js.map +1 -1
- package/dist/monitoring/checkInReminderCore.d.ts +77 -0
- package/dist/monitoring/checkInReminderCore.d.ts.map +1 -0
- package/dist/monitoring/checkInReminderCore.js +104 -0
- package/dist/monitoring/checkInReminderCore.js.map +1 -0
- package/dist/server/routes.d.ts.map +1 -1
- package/dist/server/routes.js +106 -0
- package/dist/server/routes.js.map +1 -1
- package/dist/testing/selfActionRegistry.d.ts.map +1 -1
- package/dist/testing/selfActionRegistry.js +62 -0
- package/dist/testing/selfActionRegistry.js.map +1 -1
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +46 -46
- package/src/data/provenanceCoverage.ts +30 -3
- package/src/scaffold/templates/jobs/instar/commitment-checkin-reminder.md +38 -0
- package/upgrades/1.3.963.md +135 -0
- package/upgrades/1.3.964.md +123 -0
- package/upgrades/side-effects/dated-commitment-reminder.md +240 -0
- package/upgrades/side-effects/enrol-unjustified-stop-gate.md +126 -0
- package/upgrades/side-effects/spec-round10-manifest-rows.md +13 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Side effects — spec round 10 (scanState vs row presence)
|
|
2
|
+
|
|
3
|
+
- **No code changes in this PR.** Spec text only; the feature is dark on every install.
|
|
4
|
+
- **Downstream obligation created:** the Increment-2 route (merged behavior) currently returns zero
|
|
5
|
+
rows on a machine that has never scanned. Once this amendment lands, that behavior contradicts the
|
|
6
|
+
spec and must be fixed — tracked for Increment 3, with the failing input stated in the spec so the
|
|
7
|
+
fix is verifiable rather than asserted.
|
|
8
|
+
- **Risk if NOT amended:** on any machine whose doorway-scan job is disabled (the shipped default),
|
|
9
|
+
the read surface would report nothing while holding a catalog it had already derived — the exact
|
|
10
|
+
"empty reads as unknown" conflation the three-way `scanState` exists to prevent.
|
|
11
|
+
- **Rollback:** revert the spec paragraph; no deployed behavior changes either way.
|
|
12
|
+
- **Provenance note:** this ambiguity was mine as the converging reviewer, not a build defect — the
|
|
13
|
+
implementation followed the spec as written. Recorded so the review history stays honest.
|