@kungfu-tech/buildchain 2.12.7-alpha.2 → 2.12.7-alpha.21
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/actions/promote-buildchain-ref/README.md +5 -1
- package/dist/site/buildchain-contract.json +53 -23
- package/dist/site/buildchain-site.json +16 -16
- package/dist/site/capability-registry.json +1 -1
- package/dist/site/controller-registry.json +27 -3
- package/dist/site/kfd-claims.json +63 -9
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +2 -2
- package/dist/site/node-api-registry.json +6 -6
- package/dist/site/page-registry.json +10 -10
- package/dist/site/public-surface-audit.json +74 -10
- package/dist/site/publication-authority-registry.json +25 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +6 -6
- package/dist/site/workflow-registry.json +74 -7
- package/docs/publication-artifacts.md +30 -20
- package/docs/publication-authority.md +21 -9
- package/docs/release-candidate.md +19 -0
- package/docs/shifu-gate-profiles.md +6 -0
- package/package.json +1 -1
- package/packages/core/buildchain-publication-authority.js +1 -0
- package/packages/core/controller-evidence.js +1 -1
- package/packages/core/index.js +7 -0
- package/packages/core/publication-artifact-candidate.js +128 -0
- package/packages/core/publication-authority.js +41 -2
- package/packages/core/publication-control-plane-audit.js +3 -1
- package/scripts/assemble-publication-artifact-admission.mjs +190 -0
- package/scripts/assemble-self-publication-admission.mjs +19 -9
- package/scripts/audit-publication-control-plane.mjs +5 -2
- package/scripts/check-inventory.mjs +3 -0
- package/scripts/locked-source-checkout.mjs +22 -2
- package/scripts/publication-artifact-candidate.mjs +122 -0
- package/scripts/workflow-friction-report.mjs +13 -2
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
22
22
|
"path": "dist/site/public-surface-audit.json",
|
|
23
23
|
"status": "passed",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "8815fc5abfe516e247a7024a367be5e3144fbe49196b7ec251dba4598bfc59ea",
|
|
25
25
|
"summary": {
|
|
26
26
|
"cliCommandCount": 79,
|
|
27
|
-
"workflowCount":
|
|
27
|
+
"workflowCount": 47,
|
|
28
28
|
"actionCount": 4,
|
|
29
29
|
"sitePageCount": 49,
|
|
30
30
|
"docCommandRefCount": 246,
|
|
@@ -225,10 +225,10 @@
|
|
|
225
225
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
226
226
|
"path": "dist/site/public-surface-audit.json",
|
|
227
227
|
"status": "passed",
|
|
228
|
-
"sha256": "
|
|
228
|
+
"sha256": "8815fc5abfe516e247a7024a367be5e3144fbe49196b7ec251dba4598bfc59ea",
|
|
229
229
|
"summary": {
|
|
230
230
|
"cliCommandCount": 79,
|
|
231
|
-
"workflowCount":
|
|
231
|
+
"workflowCount": 47,
|
|
232
232
|
"actionCount": 4,
|
|
233
233
|
"sitePageCount": 49,
|
|
234
234
|
"docCommandRefCount": 246,
|
|
@@ -2642,17 +2642,22 @@
|
|
|
2642
2642
|
"visibility": "public",
|
|
2643
2643
|
"participantFacing": true,
|
|
2644
2644
|
"public": true,
|
|
2645
|
-
"inputCount":
|
|
2645
|
+
"inputCount": 29,
|
|
2646
2646
|
"inputs": [
|
|
2647
2647
|
"admission-json",
|
|
2648
|
+
"authority-workflow-path",
|
|
2648
2649
|
"auto-admission",
|
|
2650
|
+
"auto-admission-kind",
|
|
2651
|
+
"auto-no-gate",
|
|
2649
2652
|
"buildchain-ref",
|
|
2650
2653
|
"buildchain-repository",
|
|
2651
2654
|
"control-plane-audit-json",
|
|
2652
2655
|
"dry-run",
|
|
2656
|
+
"evidence-controller-artifact",
|
|
2653
2657
|
"evidence-manifest-pattern",
|
|
2654
2658
|
"evidence-passport-artifact",
|
|
2655
2659
|
"evidence-payload-pattern",
|
|
2660
|
+
"evidence-publication-artifact",
|
|
2656
2661
|
"evidence-repository",
|
|
2657
2662
|
"evidence-run-id",
|
|
2658
2663
|
"evidence-summary-artifact",
|
|
@@ -2661,7 +2666,9 @@
|
|
|
2661
2666
|
"package-name",
|
|
2662
2667
|
"product",
|
|
2663
2668
|
"publication-target",
|
|
2669
|
+
"publication-version",
|
|
2664
2670
|
"publisher-workflow-path",
|
|
2671
|
+
"required-status-check",
|
|
2665
2672
|
"runner-provenance-json",
|
|
2666
2673
|
"source-sha",
|
|
2667
2674
|
"target-ref",
|
|
@@ -3300,6 +3307,46 @@
|
|
|
3300
3307
|
"inputs": [],
|
|
3301
3308
|
"reverseAuditSource": ".github/workflows"
|
|
3302
3309
|
},
|
|
3310
|
+
{
|
|
3311
|
+
"id": "workflow:paper-release-sealed",
|
|
3312
|
+
"name": "workflow:paper-release-sealed",
|
|
3313
|
+
"kind": "workflow",
|
|
3314
|
+
"sourcePath": ".github/workflows/paper-release-sealed.yml",
|
|
3315
|
+
"evidencePath": ".github/workflows/paper-release-sealed.yml",
|
|
3316
|
+
"availability": "shipped",
|
|
3317
|
+
"visibility": "public",
|
|
3318
|
+
"participantFacing": true,
|
|
3319
|
+
"public": true,
|
|
3320
|
+
"inputCount": 25,
|
|
3321
|
+
"inputs": [
|
|
3322
|
+
"artifact-name",
|
|
3323
|
+
"artifact-paths",
|
|
3324
|
+
"artifact-retention-days",
|
|
3325
|
+
"branch-protection-bypass-apps",
|
|
3326
|
+
"branch-protection-bypass-teams",
|
|
3327
|
+
"branch-protection-bypass-users",
|
|
3328
|
+
"buildchain-contract-lock-path",
|
|
3329
|
+
"buildchain-ref",
|
|
3330
|
+
"buildchain-repository",
|
|
3331
|
+
"dry-run",
|
|
3332
|
+
"github-release",
|
|
3333
|
+
"github-release-notes",
|
|
3334
|
+
"github-release-title",
|
|
3335
|
+
"package-name",
|
|
3336
|
+
"publish-dist-tag",
|
|
3337
|
+
"publisher-workflow-path",
|
|
3338
|
+
"release-passport-impact-json",
|
|
3339
|
+
"release-passport-output-dir",
|
|
3340
|
+
"release-passport-product-name",
|
|
3341
|
+
"required-status-check",
|
|
3342
|
+
"target-ref",
|
|
3343
|
+
"target-sha",
|
|
3344
|
+
"toolchain-type",
|
|
3345
|
+
"verify-command",
|
|
3346
|
+
"working-directory"
|
|
3347
|
+
],
|
|
3348
|
+
"reverseAuditSource": ".github/workflows"
|
|
3349
|
+
},
|
|
3303
3350
|
{
|
|
3304
3351
|
"id": "workflow:paper-release",
|
|
3305
3352
|
"name": "workflow:paper-release",
|
|
@@ -3427,7 +3474,7 @@
|
|
|
3427
3474
|
"visibility": "public",
|
|
3428
3475
|
"participantFacing": true,
|
|
3429
3476
|
"public": true,
|
|
3430
|
-
"inputCount":
|
|
3477
|
+
"inputCount": 21,
|
|
3431
3478
|
"inputs": [
|
|
3432
3479
|
"artifact-name",
|
|
3433
3480
|
"artifact-paths",
|
|
@@ -3439,7 +3486,11 @@
|
|
|
3439
3486
|
"buildchain-ref",
|
|
3440
3487
|
"buildchain-repository",
|
|
3441
3488
|
"node-version",
|
|
3489
|
+
"package-name",
|
|
3490
|
+
"prepare-paper-package",
|
|
3491
|
+
"publish-dist-tag",
|
|
3442
3492
|
"setup-node",
|
|
3493
|
+
"target-ref",
|
|
3443
3494
|
"toolchain-command",
|
|
3444
3495
|
"toolchain-digest",
|
|
3445
3496
|
"toolchain-image",
|
|
@@ -3459,7 +3510,7 @@
|
|
|
3459
3510
|
"visibility": "public",
|
|
3460
3511
|
"participantFacing": true,
|
|
3461
3512
|
"public": true,
|
|
3462
|
-
"inputCount":
|
|
3513
|
+
"inputCount": 56,
|
|
3463
3514
|
"inputs": [
|
|
3464
3515
|
"allow-repository",
|
|
3465
3516
|
"artifact-name",
|
|
@@ -3480,6 +3531,7 @@
|
|
|
3480
3531
|
"package-manager",
|
|
3481
3532
|
"publication-admission-json",
|
|
3482
3533
|
"publication-auto-admission",
|
|
3534
|
+
"publication-auto-no-gate",
|
|
3483
3535
|
"publication-control-plane-audit-json",
|
|
3484
3536
|
"publication-expected-json",
|
|
3485
3537
|
"publication-gate-aggregate-json",
|
|
@@ -3671,16 +3723,18 @@
|
|
|
3671
3723
|
"visibility": "public",
|
|
3672
3724
|
"participantFacing": true,
|
|
3673
3725
|
"public": true,
|
|
3674
|
-
"inputCount":
|
|
3726
|
+
"inputCount": 54,
|
|
3675
3727
|
"inputs": [
|
|
3676
3728
|
"allow-repository",
|
|
3677
3729
|
"branch-protection-bypass-apps",
|
|
3678
3730
|
"branch-protection-bypass-teams",
|
|
3679
3731
|
"branch-protection-bypass-users",
|
|
3680
3732
|
"dry-run",
|
|
3733
|
+
"expected-publication-version",
|
|
3681
3734
|
"generated-ref-update-token",
|
|
3682
3735
|
"generated-status-check-token",
|
|
3683
3736
|
"github-release",
|
|
3737
|
+
"github-release-artifact-paths",
|
|
3684
3738
|
"github-release-notes",
|
|
3685
3739
|
"github-release-title",
|
|
3686
3740
|
"promote-only-release-candidate",
|
|
@@ -4532,6 +4586,6 @@
|
|
|
4532
4586
|
}
|
|
4533
4587
|
}
|
|
4534
4588
|
],
|
|
4535
|
-
"publicSurfaceCount":
|
|
4589
|
+
"publicSurfaceCount": 296
|
|
4536
4590
|
}
|
|
4537
4591
|
}
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"title": "Sealed publication authority",
|
|
66
66
|
"path": "docs/publication-authority.md",
|
|
67
67
|
"plane": "verify",
|
|
68
|
-
"digest": "sha256:
|
|
68
|
+
"digest": "sha256:05bc22c7e5885e591bc121fc43f588e5d49ccf0a8de6a642811c1d0d03dcee1e",
|
|
69
69
|
"capabilityGroup": "release-passport-trust",
|
|
70
70
|
"audience": [
|
|
71
71
|
"release-operator",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"title": "Release Candidate Passport",
|
|
80
80
|
"path": "docs/release-candidate.md",
|
|
81
81
|
"plane": "verify",
|
|
82
|
-
"digest": "sha256:
|
|
82
|
+
"digest": "sha256:6a20c6e3e483327d5ccbe70271f7fb4752731bd0523eeddb96f27b2b6ebf1cf8",
|
|
83
83
|
"capabilityGroup": "reusable-build",
|
|
84
84
|
"audience": [
|
|
85
85
|
"release-operator",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"specifier": "@kungfu-tech/buildchain",
|
|
9
9
|
"export": ".",
|
|
10
10
|
"target": "./packages/core/index.js",
|
|
11
|
-
"digest": "sha256:
|
|
11
|
+
"digest": "sha256:07013ab68f7947772ec5bee502f97bae4b2c2f87235188f2f28f6fbb2dc5cb23",
|
|
12
12
|
"summary": "Root toolkit export for Buildchain's public Node API.",
|
|
13
13
|
"capabilityGroup": "api-cli-reference",
|
|
14
14
|
"audience": [
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"specifier": "@kungfu-tech/buildchain/core",
|
|
48
48
|
"export": "./core",
|
|
49
49
|
"target": "./packages/core/index.js",
|
|
50
|
-
"digest": "sha256:
|
|
50
|
+
"digest": "sha256:07013ab68f7947772ec5bee502f97bae4b2c2f87235188f2f28f6fbb2dc5cb23",
|
|
51
51
|
"summary": "Alias for the root public toolkit export.",
|
|
52
52
|
"capabilityGroup": "api-cli-reference",
|
|
53
53
|
"audience": [
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"specifier": "@kungfu-tech/buildchain/controller-evidence",
|
|
87
87
|
"export": "./controller-evidence",
|
|
88
88
|
"target": "./packages/core/controller-evidence.js",
|
|
89
|
-
"digest": "sha256:
|
|
89
|
+
"digest": "sha256:3c9cf557ee0e2e4376335bb7d0e61b6e8c9a1d8699962dd8a1e7adc529e13f89",
|
|
90
90
|
"summary": "Project-independent controller descriptors, source/runtime-bound plans, receipts, aggregates, and validation APIs.",
|
|
91
91
|
"capabilityGroup": "reusable-build",
|
|
92
92
|
"audience": [
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
"specifier": "@kungfu-tech/buildchain/publication-authority",
|
|
243
243
|
"export": "./publication-authority",
|
|
244
244
|
"target": "./packages/core/publication-authority.js",
|
|
245
|
-
"digest": "sha256:
|
|
245
|
+
"digest": "sha256:3c95bd9d7abc5048fb7b456e411c08f2875fe1cf65940fa3e50689acb6781a0c",
|
|
246
246
|
"summary": "Sealed publication authority registry, runner provenance, control-plane audit, admission, and independent verification APIs.",
|
|
247
247
|
"capabilityGroup": "release-passport-trust",
|
|
248
248
|
"audience": [
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
"specifier": "@kungfu-tech/buildchain/publication-control-plane-audit",
|
|
256
256
|
"export": "./publication-control-plane-audit",
|
|
257
257
|
"target": "./packages/core/publication-control-plane-audit.js",
|
|
258
|
-
"digest": "sha256:
|
|
258
|
+
"digest": "sha256:58baa05440b86259812f370aa9645ba26a4df8e986dd57598412b479589286dc",
|
|
259
259
|
"summary": "Read-only publication control-plane snapshot evaluation APIs.",
|
|
260
260
|
"capabilityGroup": "release-passport-trust",
|
|
261
261
|
"audience": [
|
|
@@ -268,7 +268,7 @@
|
|
|
268
268
|
"specifier": "@kungfu-tech/buildchain/buildchain-publication-authority",
|
|
269
269
|
"export": "./buildchain-publication-authority",
|
|
270
270
|
"target": "./packages/core/buildchain-publication-authority.js",
|
|
271
|
-
"digest": "sha256:
|
|
271
|
+
"digest": "sha256:48c5f4cb70cacb75e85b579db686a09f56d1372b8bdfeba112a3ade01524d3f5",
|
|
272
272
|
"summary": "Buildchain-owned closed-world publication authority descriptor registry.",
|
|
273
273
|
"capabilityGroup": "release-passport-trust",
|
|
274
274
|
"audience": [
|