@inerrata-corporation/errata 2.0.2-dev.260 → 2.0.2-dev.261
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/errata.mjs +2 -23
- package/package.json +1 -1
package/errata.mjs
CHANGED
|
@@ -52664,7 +52664,7 @@ function startLoopLagMonitor(thresholdMs = 1e3) {
|
|
|
52664
52664
|
}
|
|
52665
52665
|
|
|
52666
52666
|
// src/engine.ts
|
|
52667
|
-
var DAEMON_VERSION = true ? "2.0.2-dev.
|
|
52667
|
+
var DAEMON_VERSION = true ? "2.0.2-dev.261" : "2.0.0-alpha.0";
|
|
52668
52668
|
var IGNORED_PATH = /[\\/](?:\.git|node_modules|\.errata|\.claude|\.codex|\.cursor|\.turbo|\.next|dist|coverage|test-results|playwright-report|__pycache__)(?:[\\/]|$)/;
|
|
52669
52669
|
var IGNORED_NOISE = /castalia\.db|eventlog\.sqlite|turn-cursors/;
|
|
52670
52670
|
var GIT_OP_MUTE_MS = 4e3;
|
|
@@ -54619,13 +54619,7 @@ function buildInstanceIngest(store, profile, daemonVersion, ignorePatterns = [],
|
|
|
54619
54619
|
semanticEndpoints.set(n.id, contributedWireId(n));
|
|
54620
54620
|
continue;
|
|
54621
54621
|
}
|
|
54622
|
-
if (label === "Solution" && n.description.startsWith(AUTO_MINT_PREFIX))
|
|
54623
|
-
const problemShippable = store.inEdges(n.id, ["SOLVED_BY"]).some((e) => {
|
|
54624
|
-
const p = store.getNode(e.from);
|
|
54625
|
-
return p?.label === "Problem" && (seen.has(p.id) || typeof p.attrs["contributedAtSeq"] === "number");
|
|
54626
|
-
});
|
|
54627
|
-
if (!problemShippable) continue;
|
|
54628
|
-
}
|
|
54622
|
+
if (label === "Solution" && n.description.startsWith(AUTO_MINT_PREFIX)) continue;
|
|
54629
54623
|
if (!noveltyAgainst(n, ref, noveltyOpts).ready) continue;
|
|
54630
54624
|
const reject = unshippableReason(n);
|
|
54631
54625
|
if (reject) {
|
|
@@ -54701,21 +54695,6 @@ function buildInstanceIngest(store, profile, daemonVersion, ignorePatterns = [],
|
|
|
54701
54695
|
}
|
|
54702
54696
|
}
|
|
54703
54697
|
}
|
|
54704
|
-
for (const [localId, shipped] of shippedById) {
|
|
54705
|
-
const local = store.getNode(localId);
|
|
54706
|
-
if (!local || local.label !== "Solution" || !local.description.startsWith(AUTO_MINT_PREFIX)) continue;
|
|
54707
|
-
const problem = store.inEdges(localId, ["SOLVED_BY"]).map((e) => store.getNode(e.from)).find((p) => p?.label === "Problem");
|
|
54708
|
-
if (!problem) continue;
|
|
54709
|
-
const inBatch = shippedById.get(problem.id);
|
|
54710
|
-
if (inBatch) {
|
|
54711
|
-
if (inBatch.anchorVisibility) shipped.anchorVisibility = inBatch.anchorVisibility;
|
|
54712
|
-
if (inBatch.anchor != null) shipped.anchor = inBatch.anchor;
|
|
54713
|
-
else delete shipped.anchor;
|
|
54714
|
-
} else if (isMembraneSaltedId(problem.attrs["cloudNodeId"])) {
|
|
54715
|
-
shipped.anchorVisibility = "private";
|
|
54716
|
-
delete shipped.anchor;
|
|
54717
|
-
}
|
|
54718
|
-
}
|
|
54719
54698
|
const project = opts.project;
|
|
54720
54699
|
if (project) {
|
|
54721
54700
|
const now = Date.now();
|