@deksden-com/dd-flow-cli 0.9.0-beta.91 → 0.9.0-beta.92
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/CHANGELOG.md
CHANGED
package/dist/build-info.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"cli_package": "@deksden-com/dd-flow-cli",
|
|
3
|
-
"cli_version": "0.9.0-beta.
|
|
4
|
-
"cli_commit": "
|
|
5
|
-
"built_at": "2026-09-
|
|
3
|
+
"cli_version": "0.9.0-beta.92",
|
|
4
|
+
"cli_commit": "c1017bf64843d6979b9dee222dc0831baff6ad0a",
|
|
5
|
+
"built_at": "2026-09-22T04:33:57.178Z",
|
|
6
6
|
"built_with_canon": {
|
|
7
7
|
"version": "4.1.1",
|
|
8
8
|
"commit": "d1a6081ab15ab92ac917ff5d037121a40c709db1",
|
|
@@ -753,8 +753,12 @@ export function zcodeLifecycleQualification(sha256, bridgeCommit, harnessContrac
|
|
|
753
753
|
// Behavioural evidence: dd-eval production-invocations probe, 2026-09-13.
|
|
754
754
|
// Pin both providers of native event identity, not a string in the bundle.
|
|
755
755
|
// 60af0d3 adds retainedSubagents without changing native event forwarding.
|
|
756
|
-
const
|
|
757
|
-
|
|
756
|
+
const qualifiedTuples = new Map([
|
|
757
|
+
["e9f1868c0fdb863537ed910ee3828b9be96b8c2fd805473f63b439e1113266b8", new Set(["e0600fe3c46e215695f257e65aa6f674ced998d8", "60af0d31e13076a313d9770f10aa70f7c94742cf"])],
|
|
758
|
+
["500ae84fa2cb8dd74c1264e5f3d3709c004c59b58899f1b0c3e205137a0ef466", new Set(["8c0a893f3c26a0b96cb138acf762db84c800298b"])],
|
|
759
|
+
]);
|
|
760
|
+
const qualified = qualifiedTuples.get(sha256)?.has(bridgeCommit) === true
|
|
761
|
+
&& harnessContract === ZCODE_HARNESS_CONTRACT;
|
|
758
762
|
return { status: qualified ? "qualified" : "unqualified", mechanism: "cli-invocation@1", sha256,
|
|
759
763
|
capabilities: qualified ? ["root", "concurrent_children", "child_continuation"] : [],
|
|
760
764
|
native_nested_children: false, reason: qualified ? null : "native_event_contract_unqualified" };
|