@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
@@ -1,5 +1,11 @@
1
1
  # @deksden-com/dd-flow-cli
2
2
 
3
+ ## 0.9.0-beta.92
4
+
5
+ ### Patch Changes
6
+
7
+ - 03fea2a: Accept the behaviorally qualified ZCode 0.16.9 and zcode-acp 0.43.2 harness overlay tuple in the managed runtime gate.
8
+
3
9
  ## 0.9.0-beta.91
4
10
 
5
11
  ### Patch Changes
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "cli_package": "@deksden-com/dd-flow-cli",
3
- "cli_version": "0.9.0-beta.91",
4
- "cli_commit": "82e57ba33fbc4e915c2b5809dd82fe9033969c3a",
5
- "built_at": "2026-09-21T18:07:32.802Z",
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 qualified = sha256 === "e9f1868c0fdb863537ed910ee3828b9be96b8c2fd805473f63b439e1113266b8"
757
- && ["e0600fe3c46e215695f257e65aa6f674ced998d8", "60af0d31e13076a313d9770f10aa70f7c94742cf"].includes(bridgeCommit) && harnessContract === ZCODE_HARNESS_CONTRACT;
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" };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deksden-com/dd-flow-cli",
3
- "version": "0.9.0-beta.91",
3
+ "version": "0.9.0-beta.92",
4
4
  "description": "Mechanical runtime CLI for dd-flow workflows.",
5
5
  "type": "module",
6
6
  "bin": {