@kungfu-tech/buildchain 4.0.2-alpha.30 → 4.0.2-alpha.32

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.
Files changed (44) hide show
  1. package/architecture/agent-change-map.md +4 -1
  2. package/architecture/maintainability-debt.json +90 -58
  3. package/architecture/maintainability-policy.json +22 -23
  4. package/architecture/v4-architecture-constitution.md +23 -20
  5. package/architecture/v4-partial-mutation-recovery-qualification.json +4 -1
  6. package/architecture/v4-provider-operation-journal-contract.json +5 -2
  7. package/architecture/v4-release-activation-shadow-domain.json +5 -2
  8. package/architecture/v4-release-topology.json +17 -2
  9. package/architecture/v4-rust-wasm-production-authority.json +57 -0
  10. package/architecture/v4-stable-publication-fence.json +5 -2
  11. package/dist/site/buildchain-contract.json +5 -5
  12. package/dist/site/buildchain-site.json +44 -8
  13. package/dist/site/capability-registry.json +1 -1
  14. package/dist/site/kfd-claims.json +17 -5
  15. package/dist/site/kfd-upstream-aggregate.json +1 -1
  16. package/dist/site/manual-registry.json +1 -1
  17. package/dist/site/node-api-registry.json +27 -27
  18. package/dist/site/page-registry.json +39 -3
  19. package/dist/site/public-surface-audit.json +7 -3
  20. package/dist/site/publication-registry.json +4 -4
  21. package/dist/site/site-manifest.json +5 -5
  22. package/dist/site/workflow-registry.json +4 -4
  23. package/docs/node-api-reference.md +60 -60
  24. package/docs/v4-rust-wasm-production-authority.md +58 -0
  25. package/package.json +5 -3
  26. package/packages/core/buildchain-v4-domain.wasm +0 -0
  27. package/packages/core/dev-delivery-candidate-identity.js +48 -11
  28. package/packages/core/release-tail-provider-plane.js +68 -1048
  29. package/packages/core/v4-canonical-contracts.js +9 -75
  30. package/packages/core/v4-domain-wasm-artifact.js +7 -0
  31. package/packages/core/v4-domain-wasm.js +216 -0
  32. package/packages/core/v4-partial-mutation-recovery-qualification.js +9 -386
  33. package/packages/core/v4-product-publication.js +18 -384
  34. package/packages/core/v4-provider-operation-journal.js +18 -487
  35. package/packages/core/v4-provider-readback-idempotency.js +12 -97
  36. package/packages/core/v4-release-activation-shadow.js +13 -500
  37. package/packages/core/v4-release-invocation.js +28 -389
  38. package/packages/core/v4-stable-publication-fence.js +13 -342
  39. package/scripts/build-v4-domain-wasm.mjs +189 -0
  40. package/scripts/check-action-bundles.mjs +12 -2
  41. package/scripts/check-v4-release-topology.mjs +50 -25
  42. package/scripts/copy-v4-domain-wasm.mjs +14 -0
  43. package/scripts/dev-delivery-warrant.mjs +7 -3
  44. package/scripts/generate-v4-universal-workflow-facades.mjs +8 -3
@@ -15,7 +15,7 @@
15
15
  "maturity": "stable",
16
16
  "counts": {
17
17
  "manualCount": 4,
18
- "pageCount": 18,
18
+ "pageCount": 19,
19
19
  "cliCommandCount": 9,
20
20
  "nodeApiCount": 0,
21
21
  "workflowCount": 0,
@@ -21,12 +21,12 @@
21
21
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
22
22
  "path": "dist/site/public-surface-audit.json",
23
23
  "status": "passed",
24
- "sha256": "731c117c07988631f5e8012f6d96bad34544967a88fe323ba881b559c69134c3",
24
+ "sha256": "b19ba1c31a33cb31b8fc9138f3016301ab98b8a64d7cc75d735e480c52cc074e",
25
25
  "summary": {
26
26
  "cliCommandCount": 117,
27
27
  "workflowCount": 74,
28
28
  "actionCount": 8,
29
- "sitePageCount": 84,
29
+ "sitePageCount": 85,
30
30
  "docCommandRefCount": 1050,
31
31
  "failureCount": 0
32
32
  },
@@ -246,12 +246,12 @@
246
246
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
247
247
  "path": "dist/site/public-surface-audit.json",
248
248
  "status": "passed",
249
- "sha256": "731c117c07988631f5e8012f6d96bad34544967a88fe323ba881b559c69134c3",
249
+ "sha256": "b19ba1c31a33cb31b8fc9138f3016301ab98b8a64d7cc75d735e480c52cc074e",
250
250
  "summary": {
251
251
  "cliCommandCount": 117,
252
252
  "workflowCount": 74,
253
253
  "actionCount": 8,
254
- "sitePageCount": 84,
254
+ "sitePageCount": 85,
255
255
  "docCommandRefCount": 1050,
256
256
  "failureCount": 0
257
257
  },
@@ -7236,6 +7236,18 @@
7236
7236
  "public": true,
7237
7237
  "reverseAuditSource": "dist/site/page-registry.json"
7238
7238
  },
7239
+ {
7240
+ "id": "site-page:manual:v4-rust-wasm-production-authority",
7241
+ "name": "site-page:manual:v4-rust-wasm-production-authority",
7242
+ "kind": "site-page",
7243
+ "sourcePath": "dist/site/page-registry.json",
7244
+ "evidencePath": "dist/site/page-registry.json",
7245
+ "availability": "shipped",
7246
+ "visibility": "public",
7247
+ "participantFacing": true,
7248
+ "public": true,
7249
+ "reverseAuditSource": "dist/site/page-registry.json"
7250
+ },
7239
7251
  {
7240
7252
  "id": "site-page:manual:v4-stage-capsule",
7241
7253
  "name": "site-page:manual:v4-stage-capsule",
@@ -7467,6 +7479,6 @@
7467
7479
  }
7468
7480
  }
7469
7481
  ],
7470
- "publicSurfaceCount": 478
7482
+ "publicSurfaceCount": 479
7471
7483
  }
7472
7484
  }
@@ -4,7 +4,7 @@
4
4
  "product": {
5
5
  "id": "kungfu-tech-buildchain",
6
6
  "name": "@kungfu-tech/buildchain",
7
- "version": "4.0.2-alpha.30",
7
+ "version": "4.0.2-alpha.32",
8
8
  "repository": "https://github.com/kungfu-systems/buildchain"
9
9
  },
10
10
  "source": {
@@ -362,7 +362,7 @@
362
362
  "title": "Generated Node API reference",
363
363
  "path": "docs/node-api-reference.md",
364
364
  "plane": "use",
365
- "digest": "sha256:5bf8600323e802258023088612be0f68d86fef9ea409e9250dd55358c907f65a",
365
+ "digest": "sha256:359d5dd02044c10cc82ba8b76c9f290bc335ad0fd0567f3cb6f50ae64bebac13",
366
366
  "capabilityGroup": "api-cli-reference",
367
367
  "audience": [
368
368
  "agent",
@@ -23616,7 +23616,7 @@
23616
23616
  ],
23617
23617
  "source": {
23618
23618
  "path": "packages/core/release-tail-provider-plane.js",
23619
- "line": 584
23619
+ "line": 96
23620
23620
  },
23621
23621
  "example": "import { compileReleaseTailDeclaration } from \"@kungfu-tech/buildchain\";",
23622
23622
  "maturity": "stable",
@@ -23649,7 +23649,7 @@
23649
23649
  ],
23650
23650
  "source": {
23651
23651
  "path": "packages/core/release-tail-provider-plane.js",
23652
- "line": 1217
23652
+ "line": 237
23653
23653
  },
23654
23654
  "example": "import { createReleaseTailAdapterSet } from \"@kungfu-tech/buildchain\";",
23655
23655
  "maturity": "stable",
@@ -23671,14 +23671,14 @@
23671
23671
  ],
23672
23672
  "returns": "unknown",
23673
23673
  "errors": [
23674
- "May throw an Error on rejected input or failed operations; follow the linked source contract."
23674
+ "Errors from called operations may propagate; no narrower throw contract is declared in source."
23675
23675
  ],
23676
23676
  "sideEffects": [
23677
23677
  "none-detected-by-static-source-scan"
23678
23678
  ],
23679
23679
  "source": {
23680
23680
  "path": "packages/core/release-tail-provider-plane.js",
23681
- "line": 697
23681
+ "line": 107
23682
23682
  },
23683
23683
  "example": "import { createReleaseTailTransaction } from \"@kungfu-tech/buildchain\";",
23684
23684
  "maturity": "stable",
@@ -23691,7 +23691,7 @@
23691
23691
  "id": "packages/core/release-tail-provider-plane.js#executeReleaseTailTransaction",
23692
23692
  "name": "executeReleaseTailTransaction",
23693
23693
  "kind": "function",
23694
- "signature": "async function executeReleaseTailTransaction(transaction, { adapters, checkpoint: checkpointCallback } = {})",
23694
+ "signature": "async function executeReleaseTailTransaction(transaction, { adapters, checkpoint } = {})",
23695
23695
  "parameters": [
23696
23696
  {
23697
23697
  "name": "transaction",
@@ -23699,7 +23699,7 @@
23699
23699
  },
23700
23700
  {
23701
23701
  "name": "parameter2",
23702
- "signature": "{ adapters, checkpoint: checkpointCallback } = {}"
23702
+ "signature": "{ adapters, checkpoint } = {}"
23703
23703
  }
23704
23704
  ],
23705
23705
  "returns": "Promise<unknown>",
@@ -23711,7 +23711,7 @@
23711
23711
  ],
23712
23712
  "source": {
23713
23713
  "path": "packages/core/release-tail-provider-plane.js",
23714
- "line": 1016
23714
+ "line": 172
23715
23715
  },
23716
23716
  "example": "import { executeReleaseTailTransaction } from \"@kungfu-tech/buildchain\";",
23717
23717
  "maturity": "stable",
@@ -23733,14 +23733,14 @@
23733
23733
  ],
23734
23734
  "returns": "unknown",
23735
23735
  "errors": [
23736
- "Errors from called operations may propagate; no narrower throw contract is declared in source."
23736
+ "May throw an Error on rejected input or failed operations; follow the linked source contract."
23737
23737
  ],
23738
23738
  "sideEffects": [
23739
23739
  "none-detected-by-static-source-scan"
23740
23740
  ],
23741
23741
  "source": {
23742
23742
  "path": "packages/core/release-tail-provider-plane.js",
23743
- "line": 491
23743
+ "line": 82
23744
23744
  },
23745
23745
  "example": "import { parseReleaseTailDeclaration } from \"@kungfu-tech/buildchain\";",
23746
23746
  "maturity": "stable",
@@ -23769,7 +23769,7 @@
23769
23769
  ],
23770
23770
  "source": {
23771
23771
  "path": "packages/core/release-tail-provider-plane.js",
23772
- "line": 830
23772
+ "line": 115
23773
23773
  },
23774
23774
  "example": "import { readReleaseTailTransaction } from \"@kungfu-tech/buildchain\";",
23775
23775
  "maturity": "stable",
@@ -23793,7 +23793,7 @@
23793
23793
  ],
23794
23794
  "source": {
23795
23795
  "path": "packages/core/release-tail-provider-plane.js",
23796
- "line": 30
23796
+ "line": 33
23797
23797
  },
23798
23798
  "example": "import { RELEASE_TAIL_CAPABILITY_REGISTRY } from \"@kungfu-tech/buildchain\";",
23799
23799
  "maturity": "stable",
@@ -23817,7 +23817,7 @@
23817
23817
  ],
23818
23818
  "source": {
23819
23819
  "path": "packages/core/release-tail-provider-plane.js",
23820
- "line": 5
23820
+ "line": 7
23821
23821
  },
23822
23822
  "example": "import { RELEASE_TAIL_DECLARATION_CONTRACT } from \"@kungfu-tech/buildchain\";",
23823
23823
  "maturity": "stable",
@@ -23841,7 +23841,7 @@
23841
23841
  ],
23842
23842
  "source": {
23843
23843
  "path": "packages/core/release-tail-provider-plane.js",
23844
- "line": 10
23844
+ "line": 12
23845
23845
  },
23846
23846
  "example": "import { RELEASE_TAIL_EFFECT_SCHEMA } from \"@kungfu-tech/buildchain\";",
23847
23847
  "maturity": "stable",
@@ -23865,7 +23865,7 @@
23865
23865
  ],
23866
23866
  "source": {
23867
23867
  "path": "packages/core/release-tail-provider-plane.js",
23868
- "line": 12
23868
+ "line": 14
23869
23869
  },
23870
23870
  "example": "import { RELEASE_TAIL_OBSERVATION_SCHEMA } from \"@kungfu-tech/buildchain\";",
23871
23871
  "maturity": "stable",
@@ -23889,7 +23889,7 @@
23889
23889
  ],
23890
23890
  "source": {
23891
23891
  "path": "packages/core/release-tail-provider-plane.js",
23892
- "line": 14
23892
+ "line": 16
23893
23893
  },
23894
23894
  "example": "import { RELEASE_TAIL_RECEIPT_SCHEMA } from \"@kungfu-tech/buildchain\";",
23895
23895
  "maturity": "stable",
@@ -23913,7 +23913,7 @@
23913
23913
  ],
23914
23914
  "source": {
23915
23915
  "path": "packages/core/release-tail-provider-plane.js",
23916
- "line": 17
23916
+ "line": 19
23917
23917
  },
23918
23918
  "example": "import { RELEASE_TAIL_STATES } from \"@kungfu-tech/buildchain\";",
23919
23919
  "maturity": "stable",
@@ -23937,7 +23937,7 @@
23937
23937
  ],
23938
23938
  "source": {
23939
23939
  "path": "packages/core/release-tail-provider-plane.js",
23940
- "line": 7
23940
+ "line": 9
23941
23941
  },
23942
23942
  "example": "import { RELEASE_TAIL_TRANSACTION_POLICY } from \"@kungfu-tech/buildchain\";",
23943
23943
  "maturity": "stable",
@@ -23961,7 +23961,7 @@
23961
23961
  ],
23962
23962
  "source": {
23963
23963
  "path": "packages/core/release-tail-provider-plane.js",
23964
- "line": 8
23964
+ "line": 10
23965
23965
  },
23966
23966
  "example": "import { RELEASE_TAIL_TRANSACTION_SCHEMA } from \"@kungfu-tech/buildchain\";",
23967
23967
  "maturity": "stable",
@@ -23990,7 +23990,7 @@
23990
23990
  ],
23991
23991
  "source": {
23992
23992
  "path": "packages/core/release-tail-provider-plane.js",
23993
- "line": 1207
23993
+ "line": 227
23994
23994
  },
23995
23995
  "example": "import { releaseTailRetryPolicyFromDeclaration } from \"@kungfu-tech/buildchain\";",
23996
23996
  "maturity": "stable",
@@ -24012,14 +24012,14 @@
24012
24012
  ],
24013
24013
  "returns": "unknown",
24014
24014
  "errors": [
24015
- "May throw an Error on rejected input or failed operations; follow the linked source contract."
24015
+ "Errors from called operations may propagate; no narrower throw contract is declared in source."
24016
24016
  ],
24017
24017
  "sideEffects": [
24018
24018
  "none-detected-by-static-source-scan"
24019
24019
  ],
24020
24020
  "source": {
24021
24021
  "path": "packages/core/release-tail-provider-plane.js",
24022
- "line": 164
24022
+ "line": 78
24023
24023
  },
24024
24024
  "example": "import { releaseTailRoot } from \"@kungfu-tech/buildchain\";",
24025
24025
  "maturity": "stable",
@@ -24048,7 +24048,7 @@
24048
24048
  ],
24049
24049
  "source": {
24050
24050
  "path": "packages/core/release-tail-provider-plane.js",
24051
- "line": 149
24051
+ "line": 73
24052
24052
  },
24053
24053
  "example": "import { releaseTailStableJson } from \"@kungfu-tech/buildchain\";",
24054
24054
  "maturity": "stable",
@@ -24077,7 +24077,7 @@
24077
24077
  ],
24078
24078
  "source": {
24079
24079
  "path": "packages/core/release-tail-provider-plane.js",
24080
- "line": 602
24080
+ "line": 103
24081
24081
  },
24082
24082
  "example": "import { validateReleaseTailEffectPlan } from \"@kungfu-tech/buildchain\";",
24083
24083
  "maturity": "stable",
@@ -24106,7 +24106,7 @@
24106
24106
  ],
24107
24107
  "source": {
24108
24108
  "path": "packages/core/release-tail-provider-plane.js",
24109
- "line": 744
24109
+ "line": 111
24110
24110
  },
24111
24111
  "example": "import { validateReleaseTailTransaction } from \"@kungfu-tech/buildchain\";",
24112
24112
  "maturity": "stable",
@@ -24139,7 +24139,7 @@
24139
24139
  ],
24140
24140
  "source": {
24141
24141
  "path": "packages/core/release-tail-provider-plane.js",
24142
- "line": 841
24142
+ "line": 126
24143
24143
  },
24144
24144
  "example": "import { writeReleaseTailTransaction } from \"@kungfu-tech/buildchain\";",
24145
24145
  "maturity": "stable",
@@ -31035,7 +31035,7 @@
31035
31035
  "specifier": "@kungfu-tech/buildchain/release-tail-provider-plane",
31036
31036
  "export": "./release-tail-provider-plane",
31037
31037
  "target": "./packages/core/release-tail-provider-plane.js",
31038
- "digest": "sha256:eee5a8f948a7c8aaa2b491037f6000547434d5bcd55139f4e5a3380f45e61e19",
31038
+ "digest": "sha256:525575c9d4330c7fa0760491342757be80a186be589f18d9bba64b5a1ea69c5d",
31039
31039
  "summary": "Versioned declarative release-tail parsing, deterministic effect planning, durable transaction execution, readback, retry, and rooted receipt APIs.",
31040
31040
  "capabilityGroup": "release-passport-trust",
31041
31041
  "audience": [
@@ -31194,7 +31194,7 @@
31194
31194
  {
31195
31195
  "id": "node-api-reference",
31196
31196
  "path": "docs/node-api-reference.md",
31197
- "digest": "sha256:5bf8600323e802258023088612be0f68d86fef9ea409e9250dd55358c907f65a"
31197
+ "digest": "sha256:359d5dd02044c10cc82ba8b76c9f290bc335ad0fd0567f3cb6f50ae64bebac13"
31198
31198
  },
31199
31199
  {
31200
31200
  "id": "build-facts",