@kungfu-tech/buildchain 3.0.6-alpha.2 → 3.0.6-alpha.3
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/contracts/release-candidate-recovery-v1.schema.json +102 -0
- package/dist/site/buildchain-contract.json +100 -25
- package/dist/site/buildchain-site.json +23 -13
- package/dist/site/capability-registry.json +2 -2
- package/dist/site/controller-registry.json +38 -2
- package/dist/site/kfd-claims.json +52 -8
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +3 -3
- package/dist/site/node-api-registry.json +153 -13
- package/dist/site/page-registry.json +16 -6
- package/dist/site/public-surface-audit.json +42 -7
- package/dist/site/publication-authority-registry.json +6 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +1 -0
- package/dist/site/site-manifest.json +7 -7
- package/dist/site/workflow-registry.json +49 -4
- package/docs/node-api-reference.md +42 -23
- package/docs/publish-transaction.md +10 -1
- package/docs/release-candidate.md +87 -10
- package/package.json +2 -1
- package/packages/core/buildchain-contract.js +30 -2
- package/packages/core/index.js +7 -0
- package/packages/core/release-candidate-recovery.js +386 -0
- package/scripts/check-inventory.mjs +12 -2
- package/scripts/release-candidate-resolver.mjs +35 -3
- package/scripts/resume-from-candidate-run.mjs +498 -0
- package/scripts/site-capability-metadata.mjs +1 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"status": "passed",
|
|
5
5
|
"summary": {
|
|
6
6
|
"cliCommandCount": 112,
|
|
7
|
-
"workflowCount":
|
|
7
|
+
"workflowCount": 64,
|
|
8
8
|
"actionCount": 6,
|
|
9
9
|
"sitePageCount": 65,
|
|
10
10
|
"docCommandRefCount": 881,
|
|
@@ -1045,13 +1045,22 @@
|
|
|
1045
1045
|
"release-propagation-config-path",
|
|
1046
1046
|
"required-artifact-count",
|
|
1047
1047
|
"required-status-check",
|
|
1048
|
+
"resume-buildchain-runtime-sha",
|
|
1049
|
+
"resume-candidate-repository",
|
|
1050
|
+
"resume-candidate-run-id",
|
|
1051
|
+
"resume-expected-candidate-root",
|
|
1052
|
+
"resume-expected-candidate-runtime-sha",
|
|
1053
|
+
"resume-expected-source-tree",
|
|
1054
|
+
"resume-expected-workflow-file",
|
|
1055
|
+
"resume-expected-workflow-name",
|
|
1056
|
+
"resume-transaction-id",
|
|
1048
1057
|
"runner-preset",
|
|
1049
1058
|
"standalone-binary-distribution",
|
|
1050
1059
|
"target-ref",
|
|
1051
1060
|
"target-sha",
|
|
1052
1061
|
"trusted-publishing"
|
|
1053
1062
|
],
|
|
1054
|
-
"inputCount":
|
|
1063
|
+
"inputCount": 106,
|
|
1055
1064
|
"secrets": [
|
|
1056
1065
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
1057
1066
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -1084,10 +1093,13 @@
|
|
|
1084
1093
|
"publication-commit-evidence-path",
|
|
1085
1094
|
"publication-commit-payload-root",
|
|
1086
1095
|
"publication-commit-url",
|
|
1096
|
+
"release-candidate-action",
|
|
1087
1097
|
"release-candidate-artifact",
|
|
1098
|
+
"release-candidate-recovery-receipt-artifact",
|
|
1099
|
+
"release-candidate-recovery-root",
|
|
1088
1100
|
"release-propagation-work-artifact"
|
|
1089
1101
|
],
|
|
1090
|
-
"outputCount":
|
|
1102
|
+
"outputCount": 23
|
|
1091
1103
|
},
|
|
1092
1104
|
{
|
|
1093
1105
|
"id": ".release-docker",
|
|
@@ -1675,6 +1687,17 @@
|
|
|
1675
1687
|
"outputs": [],
|
|
1676
1688
|
"outputCount": 0
|
|
1677
1689
|
},
|
|
1690
|
+
{
|
|
1691
|
+
"id": "buildchain-candidate-recovery-dogfood-failure",
|
|
1692
|
+
"path": ".github/workflows/buildchain-candidate-recovery-dogfood-failure.yml",
|
|
1693
|
+
"reusable": false,
|
|
1694
|
+
"inputs": [],
|
|
1695
|
+
"inputCount": 0,
|
|
1696
|
+
"secrets": [],
|
|
1697
|
+
"secretCount": 0,
|
|
1698
|
+
"outputs": [],
|
|
1699
|
+
"outputCount": 0
|
|
1700
|
+
},
|
|
1678
1701
|
{
|
|
1679
1702
|
"id": "buildchain-dev-delivery",
|
|
1680
1703
|
"path": ".github/workflows/buildchain-dev-delivery.yml",
|
|
@@ -2444,13 +2467,22 @@
|
|
|
2444
2467
|
"release-propagation-config-path",
|
|
2445
2468
|
"required-artifact-count",
|
|
2446
2469
|
"required-status-check",
|
|
2470
|
+
"resume-buildchain-runtime-sha",
|
|
2471
|
+
"resume-candidate-repository",
|
|
2472
|
+
"resume-candidate-run-id",
|
|
2473
|
+
"resume-expected-candidate-root",
|
|
2474
|
+
"resume-expected-candidate-runtime-sha",
|
|
2475
|
+
"resume-expected-source-tree",
|
|
2476
|
+
"resume-expected-workflow-file",
|
|
2477
|
+
"resume-expected-workflow-name",
|
|
2478
|
+
"resume-transaction-id",
|
|
2447
2479
|
"runner-preset",
|
|
2448
2480
|
"standalone-binary-distribution",
|
|
2449
2481
|
"target-ref",
|
|
2450
2482
|
"target-sha",
|
|
2451
2483
|
"trusted-publishing"
|
|
2452
2484
|
],
|
|
2453
|
-
"inputCount":
|
|
2485
|
+
"inputCount": 98,
|
|
2454
2486
|
"secrets": [
|
|
2455
2487
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
2456
2488
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -2495,10 +2527,13 @@
|
|
|
2495
2527
|
"publication-commit-evidence-path",
|
|
2496
2528
|
"publication-commit-payload-root",
|
|
2497
2529
|
"publication-commit-url",
|
|
2530
|
+
"release-candidate-action",
|
|
2498
2531
|
"release-candidate-artifact",
|
|
2532
|
+
"release-candidate-recovery-receipt-artifact",
|
|
2533
|
+
"release-candidate-recovery-root",
|
|
2499
2534
|
"release-propagation-work-artifact"
|
|
2500
2535
|
],
|
|
2501
|
-
"outputCount":
|
|
2536
|
+
"outputCount": 35
|
|
2502
2537
|
},
|
|
2503
2538
|
{
|
|
2504
2539
|
"id": "release-governance-reconcile",
|
|
@@ -7568,8 +7603,8 @@
|
|
|
7568
7603
|
"workflowRegistryPath": "dist/site/workflow-registry.json",
|
|
7569
7604
|
"pageRegistryPath": "dist/site/page-registry.json",
|
|
7570
7605
|
"cliRegistryDigest": "2e7804e1fa8ef08bbe59fcf58908e47daef4dc145675fc9a989862671e40f993",
|
|
7571
|
-
"workflowRegistryDigest": "
|
|
7572
|
-
"pageRegistryDigest": "
|
|
7606
|
+
"workflowRegistryDigest": "1ab8b8d32f2ceb8dffad69d1f877f6ad6b37355dbe62c6ef5c0e6b9f4f197acb",
|
|
7607
|
+
"pageRegistryDigest": "5604707e51d06fa0b1739abb00d8d2db53fb3dda7d49d34ef558d63772f1fb84"
|
|
7573
7608
|
},
|
|
7574
7609
|
"comparison": {
|
|
7575
7610
|
"missingCliRegistry": [],
|
|
@@ -834,6 +834,11 @@
|
|
|
834
834
|
],
|
|
835
835
|
"classified": true
|
|
836
836
|
},
|
|
837
|
+
{
|
|
838
|
+
"path": ".github/workflows/buildchain-candidate-recovery-dogfood-failure.yml",
|
|
839
|
+
"signals": [],
|
|
840
|
+
"classified": false
|
|
841
|
+
},
|
|
837
842
|
{
|
|
838
843
|
"path": ".github/workflows/buildchain-dev-delivery.yml",
|
|
839
844
|
"signals": [
|
|
@@ -1079,5 +1084,5 @@
|
|
|
1079
1084
|
"classified": false
|
|
1080
1085
|
}
|
|
1081
1086
|
],
|
|
1082
|
-
"registryDigest": "
|
|
1087
|
+
"registryDigest": "fd4b5def78f58e64badfd6d9d4cce801cab3c15ae81aa89357ef02d15f7ad99d"
|
|
1083
1088
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"contract": "kungfu-buildchain-publication-release-registry",
|
|
4
|
-
"generatedAt": "2026-08-
|
|
5
|
-
"publishedAt": "2026-08-
|
|
4
|
+
"generatedAt": "2026-08-06T03:18:26.054Z",
|
|
5
|
+
"publishedAt": "2026-08-06T03:18:26.054Z",
|
|
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": "2e685b037b979732297210d74b480d5e061a7aa4",
|
|
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": "3.0.6-alpha.
|
|
35
|
+
"version": "3.0.6-alpha.3",
|
|
36
36
|
"versionSource": "package.json#version"
|
|
37
37
|
},
|
|
38
38
|
"sourceKind": "package-site-bundle",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"./github-governance-authority": "./packages/core/github-governance-authority.js",
|
|
49
49
|
"./kfd-gate": "./packages/core/kfd-gate.js",
|
|
50
50
|
"./release-candidate": "./packages/core/release-candidate.js",
|
|
51
|
+
"./release-candidate-recovery": "./packages/core/release-candidate-recovery.js",
|
|
51
52
|
"./stable-candidate-ledger": "./packages/core/stable-candidate-ledger.js",
|
|
52
53
|
"./release-passport": "./packages/core/release-passport.js",
|
|
53
54
|
"./release-passport-contract": "./packages/core/release-passport-contract.js",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"contract": "kungfu-buildchain-site-manifest",
|
|
4
|
-
"generatedAt": "2026-08-
|
|
5
|
-
"publishedAt": "2026-08-
|
|
4
|
+
"generatedAt": "2026-08-06T03:18:26.054Z",
|
|
5
|
+
"publishedAt": "2026-08-06T03:18:26.054Z",
|
|
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": "2e685b037b979732297210d74b480d5e061a7aa4",
|
|
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": "3.0.6-alpha.
|
|
40
|
+
"version": "3.0.6-alpha.3",
|
|
41
41
|
"versionSource": "package.json#version"
|
|
42
42
|
},
|
|
43
43
|
"entrypoint": "buildchain-site.json",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"path": "docs/release-candidate.md",
|
|
126
126
|
"plane": "verify",
|
|
127
127
|
"exists": true,
|
|
128
|
-
"digest": "sha256:
|
|
128
|
+
"digest": "sha256:71161bb57229fe6b66ca131189d3ff3f1dd1a8ca7f6894aa1f596827cb8167f3"
|
|
129
129
|
},
|
|
130
130
|
{
|
|
131
131
|
"id": "release-propagation",
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
"path": "docs/node-api-reference.md",
|
|
238
238
|
"plane": "use",
|
|
239
239
|
"exists": true,
|
|
240
|
-
"digest": "sha256:
|
|
240
|
+
"digest": "sha256:3fbfe0227cf929f0ddc2050605d071643cee0b302a4c31920b4f9047c923ae8c"
|
|
241
241
|
},
|
|
242
242
|
{
|
|
243
243
|
"id": "build-facts",
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
"path": "docs/publish-transaction.md",
|
|
286
286
|
"plane": "verify",
|
|
287
287
|
"exists": true,
|
|
288
|
-
"digest": "sha256:
|
|
288
|
+
"digest": "sha256:72466943bb459f6857f23ac6f92bcf4714dcd2f535c38a9f0e34864b36404e06"
|
|
289
289
|
},
|
|
290
290
|
{
|
|
291
291
|
"id": "release-governance",
|
|
@@ -544,13 +544,22 @@
|
|
|
544
544
|
"release-propagation-config-path",
|
|
545
545
|
"required-artifact-count",
|
|
546
546
|
"required-status-check",
|
|
547
|
+
"resume-buildchain-runtime-sha",
|
|
548
|
+
"resume-candidate-repository",
|
|
549
|
+
"resume-candidate-run-id",
|
|
550
|
+
"resume-expected-candidate-root",
|
|
551
|
+
"resume-expected-candidate-runtime-sha",
|
|
552
|
+
"resume-expected-source-tree",
|
|
553
|
+
"resume-expected-workflow-file",
|
|
554
|
+
"resume-expected-workflow-name",
|
|
555
|
+
"resume-transaction-id",
|
|
547
556
|
"runner-preset",
|
|
548
557
|
"standalone-binary-distribution",
|
|
549
558
|
"target-ref",
|
|
550
559
|
"target-sha",
|
|
551
560
|
"trusted-publishing"
|
|
552
561
|
],
|
|
553
|
-
"inputCount":
|
|
562
|
+
"inputCount": 106,
|
|
554
563
|
"secrets": [
|
|
555
564
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
556
565
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -583,10 +592,13 @@
|
|
|
583
592
|
"publication-commit-evidence-path",
|
|
584
593
|
"publication-commit-payload-root",
|
|
585
594
|
"publication-commit-url",
|
|
595
|
+
"release-candidate-action",
|
|
586
596
|
"release-candidate-artifact",
|
|
597
|
+
"release-candidate-recovery-receipt-artifact",
|
|
598
|
+
"release-candidate-recovery-root",
|
|
587
599
|
"release-propagation-work-artifact"
|
|
588
600
|
],
|
|
589
|
-
"outputCount":
|
|
601
|
+
"outputCount": 23,
|
|
590
602
|
"surface": "reusable-workflow",
|
|
591
603
|
"capabilityGroup": "api-cli-reference",
|
|
592
604
|
"status": "active",
|
|
@@ -1374,6 +1386,27 @@
|
|
|
1374
1386
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1375
1387
|
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1376
1388
|
},
|
|
1389
|
+
{
|
|
1390
|
+
"id": "buildchain-candidate-recovery-dogfood-failure",
|
|
1391
|
+
"path": ".github/workflows/buildchain-candidate-recovery-dogfood-failure.yml",
|
|
1392
|
+
"reusable": false,
|
|
1393
|
+
"inputs": [],
|
|
1394
|
+
"inputCount": 0,
|
|
1395
|
+
"secrets": [],
|
|
1396
|
+
"secretCount": 0,
|
|
1397
|
+
"outputs": [],
|
|
1398
|
+
"outputCount": 0,
|
|
1399
|
+
"surface": "repository-workflow",
|
|
1400
|
+
"capabilityGroup": "api-cli-reference",
|
|
1401
|
+
"status": "active",
|
|
1402
|
+
"owner": "buildchain-workflows",
|
|
1403
|
+
"maturity": "active",
|
|
1404
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
1405
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1406
|
+
"deprecationReplacement": "",
|
|
1407
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
1408
|
+
"nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
|
|
1409
|
+
},
|
|
1377
1410
|
{
|
|
1378
1411
|
"id": "buildchain-dev-delivery",
|
|
1379
1412
|
"path": ".github/workflows/buildchain-dev-delivery.yml",
|
|
@@ -2403,13 +2436,22 @@
|
|
|
2403
2436
|
"release-propagation-config-path",
|
|
2404
2437
|
"required-artifact-count",
|
|
2405
2438
|
"required-status-check",
|
|
2439
|
+
"resume-buildchain-runtime-sha",
|
|
2440
|
+
"resume-candidate-repository",
|
|
2441
|
+
"resume-candidate-run-id",
|
|
2442
|
+
"resume-expected-candidate-root",
|
|
2443
|
+
"resume-expected-candidate-runtime-sha",
|
|
2444
|
+
"resume-expected-source-tree",
|
|
2445
|
+
"resume-expected-workflow-file",
|
|
2446
|
+
"resume-expected-workflow-name",
|
|
2447
|
+
"resume-transaction-id",
|
|
2406
2448
|
"runner-preset",
|
|
2407
2449
|
"standalone-binary-distribution",
|
|
2408
2450
|
"target-ref",
|
|
2409
2451
|
"target-sha",
|
|
2410
2452
|
"trusted-publishing"
|
|
2411
2453
|
],
|
|
2412
|
-
"inputCount":
|
|
2454
|
+
"inputCount": 98,
|
|
2413
2455
|
"secrets": [
|
|
2414
2456
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
2415
2457
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -2454,10 +2496,13 @@
|
|
|
2454
2496
|
"publication-commit-evidence-path",
|
|
2455
2497
|
"publication-commit-payload-root",
|
|
2456
2498
|
"publication-commit-url",
|
|
2499
|
+
"release-candidate-action",
|
|
2457
2500
|
"release-candidate-artifact",
|
|
2501
|
+
"release-candidate-recovery-receipt-artifact",
|
|
2502
|
+
"release-candidate-recovery-root",
|
|
2458
2503
|
"release-propagation-work-artifact"
|
|
2459
2504
|
],
|
|
2460
|
-
"outputCount":
|
|
2505
|
+
"outputCount": 35,
|
|
2461
2506
|
"surface": "release-governance",
|
|
2462
2507
|
"capabilityGroup": "reusable-build",
|
|
2463
2508
|
"status": "active",
|