@kungfu-tech/buildchain 4.0.2-alpha.29 → 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.
- package/architecture/agent-change-map.md +6 -1
- package/architecture/internal-capabilities.json +5 -2
- package/architecture/maintainability-debt.json +91 -59
- package/architecture/maintainability-policy.json +22 -23
- package/architecture/v4-architecture-constitution.md +23 -20
- package/architecture/v4-partial-mutation-recovery-qualification.json +4 -1
- package/architecture/v4-provider-operation-journal-contract.json +5 -2
- package/architecture/v4-release-activation-shadow-domain.json +5 -2
- package/architecture/v4-release-topology.json +17 -2
- package/architecture/v4-rust-wasm-production-authority.json +57 -0
- package/architecture/v4-stable-publication-fence.json +5 -2
- package/bin/buildchain.mjs +7 -7
- package/contracts/dev-delivery-authority-v2.schema.json +16 -2
- package/dist/site/buildchain-contract.json +6 -6
- package/dist/site/buildchain-site.json +44 -8
- package/dist/site/capability-registry.json +1 -1
- package/dist/site/kfd-claims.json +17 -5
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +1 -1
- package/dist/site/node-api-registry.json +32 -32
- package/dist/site/page-registry.json +39 -3
- package/dist/site/public-surface-audit.json +7 -3
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/schemas/dev-delivery-authority-v2.schema.json +16 -2
- package/dist/site/site-manifest.json +5 -5
- package/dist/site/workflow-registry.json +4 -4
- package/docs/node-api-reference.md +64 -64
- package/docs/v4-rust-wasm-production-authority.md +58 -0
- package/package.json +5 -3
- package/packages/core/buildchain-v4-domain.wasm +0 -0
- package/packages/core/dev-delivery-candidate-identity.js +26 -10
- package/packages/core/dev-delivery-warrant-state.js +3 -4
- package/packages/core/dev-delivery-warrant.js +12 -2
- package/packages/core/release-tail-provider-plane.js +68 -1048
- package/packages/core/v4-canonical-contracts.js +9 -75
- package/packages/core/v4-domain-wasm-artifact.js +7 -0
- package/packages/core/v4-domain-wasm.js +216 -0
- package/packages/core/v4-partial-mutation-recovery-qualification.js +9 -386
- package/packages/core/v4-product-publication.js +18 -384
- package/packages/core/v4-provider-operation-journal.js +18 -487
- package/packages/core/v4-provider-readback-idempotency.js +12 -97
- package/packages/core/v4-release-activation-shadow.js +13 -500
- package/packages/core/v4-release-invocation.js +28 -389
- package/packages/core/v4-stable-publication-fence.js +13 -342
- package/scripts/build-contract-core.mjs +1 -14
- package/scripts/build-v4-domain-wasm.mjs +189 -0
- package/scripts/check-action-bundles.mjs +12 -2
- package/scripts/check-v4-release-topology.mjs +50 -25
- package/scripts/copy-v4-domain-wasm.mjs +14 -0
- package/scripts/dev-delivery-authority-command-adapters.mjs +1 -1
- package/scripts/dev-delivery-authority.mjs +8 -8
- package/scripts/dev-delivery-source-proof-reuse.mjs +2 -1
- package/scripts/dev-delivery-warrant-options.mjs +14 -9
- package/scripts/dev-delivery-warrant.mjs +7 -2
- package/scripts/generate-v4-universal-workflow-facades.mjs +8 -3
- package/scripts/github-output.mjs +31 -0
- package/templates/native-dev-delivery.yml +4 -7
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"cliCommandCount": 117,
|
|
7
7
|
"workflowCount": 74,
|
|
8
8
|
"actionCount": 8,
|
|
9
|
-
"sitePageCount":
|
|
9
|
+
"sitePageCount": 85,
|
|
10
10
|
"docCommandRefCount": 1050,
|
|
11
11
|
"failureCount": 0
|
|
12
12
|
},
|
|
@@ -3626,6 +3626,10 @@
|
|
|
3626
3626
|
"id": "manual:v4-runtime-ref-resume-authority",
|
|
3627
3627
|
"category": "manual"
|
|
3628
3628
|
},
|
|
3629
|
+
{
|
|
3630
|
+
"id": "manual:v4-rust-wasm-production-authority",
|
|
3631
|
+
"category": "manual"
|
|
3632
|
+
},
|
|
3629
3633
|
{
|
|
3630
3634
|
"id": "manual:v4-stage-capsule",
|
|
3631
3635
|
"category": "manual"
|
|
@@ -8905,8 +8909,8 @@
|
|
|
8905
8909
|
"workflowRegistryPath": "dist/site/workflow-registry.json",
|
|
8906
8910
|
"pageRegistryPath": "dist/site/page-registry.json",
|
|
8907
8911
|
"cliRegistryDigest": "fbc23073bbae240489a2f826b2c26daadc58e704050c5f8df366509f5c5a1c3e",
|
|
8908
|
-
"workflowRegistryDigest": "
|
|
8909
|
-
"pageRegistryDigest": "
|
|
8912
|
+
"workflowRegistryDigest": "7eeeef60120444b9f129306d895a4c8746988396549ec388e8c9ce0d68bc82b0",
|
|
8913
|
+
"pageRegistryDigest": "4b5eeaee910e192ec173c6678a16656c90ec9400508f087dc0b8593a932b8019"
|
|
8910
8914
|
},
|
|
8911
8915
|
"comparison": {
|
|
8912
8916
|
"missingCliRegistry": [],
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"contract": "kungfu-buildchain-publication-release-registry",
|
|
4
|
-
"generatedAt": "2026-09-
|
|
5
|
-
"publishedAt": "2026-09-
|
|
4
|
+
"generatedAt": "2026-09-04T16:47:36.000Z",
|
|
5
|
+
"publishedAt": "2026-09-04T16:47:36.000Z",
|
|
6
6
|
"reproducible": true,
|
|
7
7
|
"timestampPolicy": "ci-injected",
|
|
8
8
|
"deterministicInputs": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"declared Buildchain surface manifest contract"
|
|
20
20
|
],
|
|
21
21
|
"sourceDateEpoch": "0",
|
|
22
|
-
"sourceRevision": "
|
|
22
|
+
"sourceRevision": "1fee4b59f8769bafec005c6b21b45ace7557c281",
|
|
23
23
|
"timestampPolicyDetails": {
|
|
24
24
|
"contract": "kungfu-buildchain-surface-timestamp-policy",
|
|
25
25
|
"timestampFields": [
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"package": {
|
|
34
34
|
"name": "@kungfu-tech/buildchain",
|
|
35
|
-
"version": "4.0.2-alpha.
|
|
35
|
+
"version": "4.0.2-alpha.32",
|
|
36
36
|
"versionSource": "package.json#version"
|
|
37
37
|
},
|
|
38
38
|
"sourceKind": "package-site-bundle",
|
|
@@ -558,8 +558,6 @@
|
|
|
558
558
|
"repository",
|
|
559
559
|
"protectedBase",
|
|
560
560
|
"pullRequestNumber",
|
|
561
|
-
"assignmentRoot",
|
|
562
|
-
"initiativeRoot",
|
|
563
561
|
"sourceIdentityRoot",
|
|
564
562
|
"deliveryClass",
|
|
565
563
|
"candidateId",
|
|
@@ -576,10 +574,26 @@
|
|
|
576
574
|
"qualification",
|
|
577
575
|
"terminal"
|
|
578
576
|
],
|
|
577
|
+
"oneOf": [
|
|
578
|
+
{
|
|
579
|
+
"required": ["sourceRoot"],
|
|
580
|
+
"not": {
|
|
581
|
+
"anyOf": [
|
|
582
|
+
{ "required": ["assignmentRoot"] },
|
|
583
|
+
{ "required": ["initiativeRoot"] }
|
|
584
|
+
]
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"required": ["assignmentRoot", "initiativeRoot"],
|
|
589
|
+
"not": { "required": ["sourceRoot"] }
|
|
590
|
+
}
|
|
591
|
+
],
|
|
579
592
|
"properties": {
|
|
580
593
|
"repository": { "type": "string" },
|
|
581
594
|
"protectedBase": { "type": "string" },
|
|
582
595
|
"pullRequestNumber": { "type": "integer", "minimum": 1 },
|
|
596
|
+
"sourceRoot": { "$ref": "#/$defs/root" },
|
|
583
597
|
"assignmentRoot": { "$ref": "#/$defs/root" },
|
|
584
598
|
"initiativeRoot": { "$ref": "#/$defs/root" },
|
|
585
599
|
"sourceIdentityRoot": { "$ref": "#/$defs/root" },
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"contract": "kungfu-buildchain-site-manifest",
|
|
4
|
-
"generatedAt": "2026-09-
|
|
5
|
-
"publishedAt": "2026-09-
|
|
4
|
+
"generatedAt": "2026-09-04T16:47:36.000Z",
|
|
5
|
+
"publishedAt": "2026-09-04T16:47:36.000Z",
|
|
6
6
|
"reproducible": true,
|
|
7
7
|
"timestampPolicy": "ci-injected",
|
|
8
8
|
"deterministicInputs": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"declared Buildchain surface manifest contract"
|
|
20
20
|
],
|
|
21
21
|
"sourceDateEpoch": "0",
|
|
22
|
-
"sourceRevision": "
|
|
22
|
+
"sourceRevision": "1fee4b59f8769bafec005c6b21b45ace7557c281",
|
|
23
23
|
"timestampPolicyDetails": {
|
|
24
24
|
"contract": "kungfu-buildchain-surface-timestamp-policy",
|
|
25
25
|
"timestampFields": [
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"package": {
|
|
39
39
|
"name": "@kungfu-tech/buildchain",
|
|
40
|
-
"version": "4.0.2-alpha.
|
|
40
|
+
"version": "4.0.2-alpha.32",
|
|
41
41
|
"versionSource": "package.json#version"
|
|
42
42
|
},
|
|
43
43
|
"entrypoint": "buildchain-site.json",
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
"path": "docs/node-api-reference.md",
|
|
254
254
|
"plane": "use",
|
|
255
255
|
"exists": true,
|
|
256
|
-
"digest": "sha256:
|
|
256
|
+
"digest": "sha256:359d5dd02044c10cc82ba8b76c9f290bc335ad0fd0567f3cb6f50ae64bebac13"
|
|
257
257
|
},
|
|
258
258
|
{
|
|
259
259
|
"id": "build-facts",
|
|
@@ -1926,7 +1926,7 @@
|
|
|
1926
1926
|
"status": "preview",
|
|
1927
1927
|
"owner": "buildchain-workflows",
|
|
1928
1928
|
"maturity": "preview",
|
|
1929
|
-
"introducedVersion": "4.0.2-alpha.
|
|
1929
|
+
"introducedVersion": "4.0.2-alpha.32",
|
|
1930
1930
|
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1931
1931
|
"deprecationReplacement": "",
|
|
1932
1932
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
@@ -1947,7 +1947,7 @@
|
|
|
1947
1947
|
"status": "preview",
|
|
1948
1948
|
"owner": "buildchain-workflows",
|
|
1949
1949
|
"maturity": "preview",
|
|
1950
|
-
"introducedVersion": "4.0.2-alpha.
|
|
1950
|
+
"introducedVersion": "4.0.2-alpha.32",
|
|
1951
1951
|
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1952
1952
|
"deprecationReplacement": "",
|
|
1953
1953
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
@@ -1968,7 +1968,7 @@
|
|
|
1968
1968
|
"status": "preview",
|
|
1969
1969
|
"owner": "buildchain-workflows",
|
|
1970
1970
|
"maturity": "preview",
|
|
1971
|
-
"introducedVersion": "4.0.2-alpha.
|
|
1971
|
+
"introducedVersion": "4.0.2-alpha.32",
|
|
1972
1972
|
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1973
1973
|
"deprecationReplacement": "",
|
|
1974
1974
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
@@ -2019,7 +2019,7 @@
|
|
|
2019
2019
|
"status": "preview",
|
|
2020
2020
|
"owner": "buildchain-workflows",
|
|
2021
2021
|
"maturity": "preview",
|
|
2022
|
-
"introducedVersion": "4.0.2-alpha.
|
|
2022
|
+
"introducedVersion": "4.0.2-alpha.32",
|
|
2023
2023
|
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2024
2024
|
"deprecationReplacement": "",
|
|
2025
2025
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|