@kungfu-tech/buildchain 3.0.3-alpha.0 → 3.0.3-alpha.1
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/AGENTS.md +1 -1
- package/CONTRIBUTING.md +1 -1
- package/README.md +27 -1
- package/actions/promote-buildchain-ref/README.md +90 -19
- package/actions/report-buildchain-issue/README.md +19 -1
- package/actions/run-lifecycle/README.md +5 -0
- package/actions/validate-config/README.md +19 -1
- package/bin/buildchain.mjs +56 -2
- package/bin/internal/command-registry.mjs +82 -0
- package/bin/internal/trust-release-cli.mjs +1 -0
- package/contracts/auditable-demo-media-profiles-v1.json +116 -1
- package/contracts/buildchain-v2-residuals-v1.json +0 -45
- package/contracts/evidence/auditable-demo-responsive-web-delivery-v1.json +143 -0
- package/contracts/evidence/auditable-demo-web-delivery-v1.json +7 -3
- package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/complete-transcript.txt +2 -0
- package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/public-projection.json +16 -0
- package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/scene.json +12 -0
- package/dist/site/buildchain-contract.json +161 -42
- package/dist/site/buildchain-site.json +175 -84
- package/dist/site/capability-registry.json +5 -5
- package/dist/site/cli-registry.json +860 -98
- package/dist/site/controller-registry.json +97 -5
- package/dist/site/kfd-claims.json +228 -19
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +20 -20
- package/dist/site/node-api-registry.json +370 -55
- package/dist/site/page-registry.json +150 -59
- package/dist/site/public-surface-audit.json +226 -22
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +3 -0
- package/dist/site/site-manifest.json +24 -24
- package/dist/site/workflow-registry.json +570 -79
- package/docs/MAP.md +22 -4
- package/docs/auditable-demo.md +35 -12
- package/docs/aws-us-elastic-runner-burst-plane.md +381 -0
- package/docs/cli.md +119 -12
- package/docs/consumer-issue-reporting.md +19 -1
- package/docs/github-governance-authority.md +2 -2
- package/docs/lifecycle-protocol.md +20 -2
- package/docs/migration-inventory.md +24 -5
- package/docs/ownership.md +19 -1
- package/docs/publication-artifacts.md +158 -18
- package/docs/publication-authority.md +4 -4
- package/docs/publish-transaction.md +78 -31
- package/docs/release-candidate.md +24 -0
- package/docs/release-flow.md +50 -32
- package/docs/release-governance.md +31 -31
- package/docs/release-passport.md +4 -0
- package/docs/release-propagation.md +57 -12
- package/docs/reusable-build-surface.md +95 -27
- package/docs/runtime-train-validation.md +20 -2
- package/docs/stable-candidate-patrol.md +6 -6
- package/docs/toolkit-observability.md +22 -0
- package/docs/versioning.md +6 -4
- package/docs/web-surface-deployments.md +62 -0
- package/package.json +7 -5
- package/packages/core/README.md +60 -4
- package/packages/core/buildchain-contract.js +8 -4
- package/packages/core/cache-evidence.js +1 -0
- package/packages/core/diagnostics.js +105 -30
- package/packages/core/index.js +40 -0
- package/packages/core/paper.js +3226 -0
- package/packages/core/public-surface-audit.js +3 -0
- package/packages/core/publication-artifact.js +1 -6
- package/packages/core/publication-authority.js +1 -0
- package/packages/core/publication-reproducibility.js +947 -0
- package/packages/core/publication-sealed-bundle.js +190 -0
- package/packages/core/publish-transaction.js +147 -17
- package/packages/core/release-candidate.js +234 -0
- package/packages/core/release-passport.js +483 -201
- package/packages/core/release-propagation.js +175 -1
- package/scripts/auditable-demo.mjs +119 -5
- package/scripts/aws-codebuild-toolchain.mjs +285 -0
- package/scripts/aws-macos-jit-core.mjs +378 -0
- package/scripts/aws-macos-jit.mjs +123 -0
- package/scripts/aws-runner-burst-core.mjs +248 -0
- package/scripts/aws-runner-burst.mjs +79 -0
- package/scripts/aws-windows-jit-core.mjs +374 -0
- package/scripts/aws-windows-jit.mjs +121 -0
- package/scripts/build-contract-core.mjs +69 -6
- package/scripts/build-standalone-binary.mjs +23 -0
- package/scripts/buildchain-contract-lock.mjs +1 -1
- package/scripts/check-internal-architecture.mjs +69 -2
- package/scripts/check-inventory.mjs +69 -2
- package/scripts/check-javascript-syntax.mjs +31 -0
- package/scripts/check-maintainability.mjs +371 -0
- package/scripts/compiler-cache-evidence.mjs +221 -0
- package/scripts/dev-alpha-candidate-patrol.mjs +268 -43
- package/scripts/finalize-native-artifact-signing-result.mjs +75 -4
- package/scripts/generate-channel-promotion-workflow.mjs +3 -12
- package/scripts/generate-release-candidate-passport.mjs +4 -0
- package/scripts/generate-site-bundle.mjs +84 -18
- package/scripts/import-artifact-signing-results.mjs +64 -5
- package/scripts/inspect-artifact-signing-requests.mjs +7 -0
- package/scripts/maintainability-metrics.mjs +339 -0
- package/scripts/npm-publish-transaction.mjs +57 -6
- package/scripts/paper.mjs +645 -0
- package/scripts/promotion-channel-router.mjs +16 -4
- package/scripts/publication-reproducibility.mjs +62 -0
- package/scripts/release-propagation.mjs +39 -0
- package/scripts/resolve-build-contract.mjs +6 -0
- package/scripts/route-offline-runners.mjs +236 -0
- package/scripts/run-lifecycle-core.mjs +62 -1
- package/scripts/runtime-ref-core.mjs +23 -2
- package/scripts/seal-artifact-signing-requests.mjs +13 -6
- package/scripts/stable-candidate-qualification.mjs +42 -0
- package/scripts/web-surface-core.mjs +272 -86
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
},
|
|
15
15
|
"runtimeContract": {
|
|
16
16
|
"contract": "kungfu-buildchain-runtime-contract-world",
|
|
17
|
-
"compatibilityDigest": "sha256:
|
|
17
|
+
"compatibilityDigest": "sha256:61af7d0871220bc0909008bdc571905ad500cccf853e7841bc5d462a34b2d436",
|
|
18
18
|
"majorLine": "v3"
|
|
19
19
|
},
|
|
20
20
|
"publicSurfaceReverseAudit": {
|
|
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": "98c799afb5f2ad4491e674327546563046e5c74605a3be732e51e5c581dfc9cd",
|
|
25
25
|
"summary": {
|
|
26
|
-
"cliCommandCount":
|
|
26
|
+
"cliCommandCount": 107,
|
|
27
27
|
"workflowCount": 57,
|
|
28
28
|
"actionCount": 6,
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
29
|
+
"sitePageCount": 60,
|
|
30
|
+
"docCommandRefCount": 311,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -228,13 +228,13 @@
|
|
|
228
228
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
229
229
|
"path": "dist/site/public-surface-audit.json",
|
|
230
230
|
"status": "passed",
|
|
231
|
-
"sha256": "
|
|
231
|
+
"sha256": "98c799afb5f2ad4491e674327546563046e5c74605a3be732e51e5c581dfc9cd",
|
|
232
232
|
"summary": {
|
|
233
|
-
"cliCommandCount":
|
|
233
|
+
"cliCommandCount": 107,
|
|
234
234
|
"workflowCount": 57,
|
|
235
235
|
"actionCount": 6,
|
|
236
|
-
"sitePageCount":
|
|
237
|
-
"docCommandRefCount":
|
|
236
|
+
"sitePageCount": 60,
|
|
237
|
+
"docCommandRefCount": 311,
|
|
238
238
|
"failureCount": 0
|
|
239
239
|
},
|
|
240
240
|
"auditBoundary": {
|
|
@@ -1436,6 +1436,42 @@
|
|
|
1436
1436
|
"public": true,
|
|
1437
1437
|
"packageExport": "./publication-package"
|
|
1438
1438
|
},
|
|
1439
|
+
{
|
|
1440
|
+
"id": "export:./publication-reproducibility",
|
|
1441
|
+
"name": "@kungfu-tech/buildchain/publication-reproducibility",
|
|
1442
|
+
"kind": "package-export",
|
|
1443
|
+
"sourcePath": "packages/core/publication-reproducibility.js",
|
|
1444
|
+
"evidencePath": "packages/core/publication-reproducibility.js",
|
|
1445
|
+
"availability": "shipped",
|
|
1446
|
+
"visibility": "public",
|
|
1447
|
+
"participantFacing": true,
|
|
1448
|
+
"public": true,
|
|
1449
|
+
"packageExport": "./publication-reproducibility"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"id": "export:./publication-sealed-bundle",
|
|
1453
|
+
"name": "@kungfu-tech/buildchain/publication-sealed-bundle",
|
|
1454
|
+
"kind": "package-export",
|
|
1455
|
+
"sourcePath": "packages/core/publication-sealed-bundle.js",
|
|
1456
|
+
"evidencePath": "packages/core/publication-sealed-bundle.js",
|
|
1457
|
+
"availability": "shipped",
|
|
1458
|
+
"visibility": "public",
|
|
1459
|
+
"participantFacing": true,
|
|
1460
|
+
"public": true,
|
|
1461
|
+
"packageExport": "./publication-sealed-bundle"
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"id": "export:./paper",
|
|
1465
|
+
"name": "@kungfu-tech/buildchain/paper",
|
|
1466
|
+
"kind": "package-export",
|
|
1467
|
+
"sourcePath": "packages/core/paper.js",
|
|
1468
|
+
"evidencePath": "packages/core/paper.js",
|
|
1469
|
+
"availability": "shipped",
|
|
1470
|
+
"visibility": "public",
|
|
1471
|
+
"participantFacing": true,
|
|
1472
|
+
"public": true,
|
|
1473
|
+
"packageExport": "./paper"
|
|
1474
|
+
},
|
|
1439
1475
|
{
|
|
1440
1476
|
"id": "export:./publication-authority",
|
|
1441
1477
|
"name": "@kungfu-tech/buildchain/publication-authority",
|
|
@@ -2668,6 +2704,114 @@
|
|
|
2668
2704
|
"public": true,
|
|
2669
2705
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2670
2706
|
},
|
|
2707
|
+
{
|
|
2708
|
+
"id": "cli:paper",
|
|
2709
|
+
"name": "buildchain paper",
|
|
2710
|
+
"kind": "cli-command",
|
|
2711
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2712
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2713
|
+
"availability": "shipped",
|
|
2714
|
+
"visibility": "public",
|
|
2715
|
+
"participantFacing": true,
|
|
2716
|
+
"public": true,
|
|
2717
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2718
|
+
},
|
|
2719
|
+
{
|
|
2720
|
+
"id": "cli:paper-alpha",
|
|
2721
|
+
"name": "buildchain paper alpha [--cwd <dir>] [--source-ref <ref>] [--target-ref <ref>]",
|
|
2722
|
+
"kind": "cli-command",
|
|
2723
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2724
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2725
|
+
"availability": "shipped",
|
|
2726
|
+
"visibility": "public",
|
|
2727
|
+
"participantFacing": true,
|
|
2728
|
+
"public": true,
|
|
2729
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
"id": "cli:paper-bootstrap-npm",
|
|
2733
|
+
"name": "buildchain paper bootstrap npm [--cwd <dir>] [--execute]",
|
|
2734
|
+
"kind": "cli-command",
|
|
2735
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2736
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2737
|
+
"availability": "shipped",
|
|
2738
|
+
"visibility": "public",
|
|
2739
|
+
"participantFacing": true,
|
|
2740
|
+
"public": true,
|
|
2741
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2742
|
+
},
|
|
2743
|
+
{
|
|
2744
|
+
"id": "cli:paper-build",
|
|
2745
|
+
"name": "buildchain paper build [--cwd <dir>] [--execute] [--json]",
|
|
2746
|
+
"kind": "cli-command",
|
|
2747
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2748
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2749
|
+
"availability": "shipped",
|
|
2750
|
+
"visibility": "public",
|
|
2751
|
+
"participantFacing": true,
|
|
2752
|
+
"public": true,
|
|
2753
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
"id": "cli:paper-migrate",
|
|
2757
|
+
"name": "buildchain paper migrate [--cwd <dir>] [--write] [--json]",
|
|
2758
|
+
"kind": "cli-command",
|
|
2759
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2760
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2761
|
+
"availability": "shipped",
|
|
2762
|
+
"visibility": "public",
|
|
2763
|
+
"participantFacing": true,
|
|
2764
|
+
"public": true,
|
|
2765
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
"id": "cli:paper-preflight",
|
|
2769
|
+
"name": "buildchain paper preflight [--cwd <dir>] [--offline] [--json]",
|
|
2770
|
+
"kind": "cli-command",
|
|
2771
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2772
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2773
|
+
"availability": "shipped",
|
|
2774
|
+
"visibility": "public",
|
|
2775
|
+
"participantFacing": true,
|
|
2776
|
+
"public": true,
|
|
2777
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2778
|
+
},
|
|
2779
|
+
{
|
|
2780
|
+
"id": "cli:paper-resume",
|
|
2781
|
+
"name": "buildchain paper resume [--cwd <dir>] [--buildchain-ref <ref>] [--execute] [--json]",
|
|
2782
|
+
"kind": "cli-command",
|
|
2783
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2784
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2785
|
+
"availability": "shipped",
|
|
2786
|
+
"visibility": "public",
|
|
2787
|
+
"participantFacing": true,
|
|
2788
|
+
"public": true,
|
|
2789
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"id": "cli:paper-scaffold",
|
|
2793
|
+
"name": "buildchain paper scaffold --package <name> --repository <owner/repo> [--write] [--json]",
|
|
2794
|
+
"kind": "cli-command",
|
|
2795
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2796
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2797
|
+
"availability": "shipped",
|
|
2798
|
+
"visibility": "public",
|
|
2799
|
+
"participantFacing": true,
|
|
2800
|
+
"public": true,
|
|
2801
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2802
|
+
},
|
|
2803
|
+
{
|
|
2804
|
+
"id": "cli:paper-status",
|
|
2805
|
+
"name": "buildchain paper status [--cwd <dir>] [--json]",
|
|
2806
|
+
"kind": "cli-command",
|
|
2807
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2808
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2809
|
+
"availability": "shipped",
|
|
2810
|
+
"visibility": "public",
|
|
2811
|
+
"participantFacing": true,
|
|
2812
|
+
"public": true,
|
|
2813
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2814
|
+
},
|
|
2671
2815
|
{
|
|
2672
2816
|
"id": "cli:portable-cache",
|
|
2673
2817
|
"name": "buildchain portable-cache plan --manifest <file-or-json> [--output <file>]",
|
|
@@ -2728,6 +2872,18 @@
|
|
|
2728
2872
|
"public": true,
|
|
2729
2873
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2730
2874
|
},
|
|
2875
|
+
{
|
|
2876
|
+
"id": "cli:publication-artifact-reproducibility",
|
|
2877
|
+
"name": "buildchain publication-artifact reproducibility [--cwd <dir>] [--source-sha <sha>]",
|
|
2878
|
+
"kind": "cli-command",
|
|
2879
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2880
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2881
|
+
"availability": "shipped",
|
|
2882
|
+
"visibility": "public",
|
|
2883
|
+
"participantFacing": true,
|
|
2884
|
+
"public": true,
|
|
2885
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2886
|
+
},
|
|
2731
2887
|
{
|
|
2732
2888
|
"id": "cli:publish-source",
|
|
2733
2889
|
"name": "buildchain publish-source <lock|manifest|verify-lock|verify-channel-ref|validate-anchored-release> ...",
|
|
@@ -2990,8 +3146,9 @@
|
|
|
2990
3146
|
"visibility": "public",
|
|
2991
3147
|
"participantFacing": true,
|
|
2992
3148
|
"public": true,
|
|
2993
|
-
"inputCount":
|
|
3149
|
+
"inputCount": 11,
|
|
2994
3150
|
"inputs": [
|
|
3151
|
+
"adapter-arguments-json",
|
|
2995
3152
|
"adapter-path",
|
|
2996
3153
|
"artifact-retention-days",
|
|
2997
3154
|
"buildchain-repository",
|
|
@@ -3045,7 +3202,7 @@
|
|
|
3045
3202
|
"visibility": "public",
|
|
3046
3203
|
"participantFacing": true,
|
|
3047
3204
|
"public": true,
|
|
3048
|
-
"inputCount":
|
|
3205
|
+
"inputCount": 82,
|
|
3049
3206
|
"inputs": [
|
|
3050
3207
|
"artifact-compression-level",
|
|
3051
3208
|
"artifact-name",
|
|
@@ -3061,6 +3218,9 @@
|
|
|
3061
3218
|
"artifact-retention-days",
|
|
3062
3219
|
"artifact-signing-request-upload-no-proxy",
|
|
3063
3220
|
"artifact-transfer-mode",
|
|
3221
|
+
"aws-codebuild-project",
|
|
3222
|
+
"aws-ec2-macos-runner-label",
|
|
3223
|
+
"aws-ec2-windows-runner-label",
|
|
3064
3224
|
"build-command",
|
|
3065
3225
|
"buildchain-contract-compatibility-policy",
|
|
3066
3226
|
"buildchain-contract-drift-issue-mode",
|
|
@@ -3078,6 +3238,9 @@
|
|
|
3078
3238
|
"checkout-cache-mode",
|
|
3079
3239
|
"checkout-cache-reference-repository-template",
|
|
3080
3240
|
"checkout-cache-timeout-seconds",
|
|
3241
|
+
"compiler-cache-platforms-json",
|
|
3242
|
+
"compiler-cache-provider",
|
|
3243
|
+
"compiler-cache-required",
|
|
3081
3244
|
"control-runner-json",
|
|
3082
3245
|
"credential-island-caller-owned",
|
|
3083
3246
|
"credential-island-environment",
|
|
@@ -3104,6 +3267,7 @@
|
|
|
3104
3267
|
"publish-registry",
|
|
3105
3268
|
"publish-source-ref",
|
|
3106
3269
|
"release-candidate",
|
|
3270
|
+
"release-candidate-family-evidence-json",
|
|
3107
3271
|
"requested-parallelism",
|
|
3108
3272
|
"require-build",
|
|
3109
3273
|
"require-install",
|
|
@@ -3114,6 +3278,7 @@
|
|
|
3114
3278
|
"rustup-dist-server",
|
|
3115
3279
|
"rustup-update-root",
|
|
3116
3280
|
"sample-process-tree",
|
|
3281
|
+
"self-hosted-offline-fallback",
|
|
3117
3282
|
"setup-node",
|
|
3118
3283
|
"setup-rust",
|
|
3119
3284
|
"shifu-cache-profile-digest",
|
|
@@ -3241,7 +3406,7 @@
|
|
|
3241
3406
|
"visibility": "public",
|
|
3242
3407
|
"participantFacing": true,
|
|
3243
3408
|
"public": true,
|
|
3244
|
-
"inputCount":
|
|
3409
|
+
"inputCount": 94,
|
|
3245
3410
|
"inputs": [
|
|
3246
3411
|
"allow-repository",
|
|
3247
3412
|
"artifact-name",
|
|
@@ -3305,11 +3470,17 @@
|
|
|
3305
3470
|
"publish-transaction-override",
|
|
3306
3471
|
"release-activation-command",
|
|
3307
3472
|
"release-activation-receipt-set-path",
|
|
3473
|
+
"release-candidate-family-assignment-id",
|
|
3474
|
+
"release-candidate-family-evidence-required",
|
|
3475
|
+
"release-candidate-family-evidence-root",
|
|
3476
|
+
"release-candidate-family-initiative-id",
|
|
3308
3477
|
"release-candidate-workflow-file",
|
|
3309
3478
|
"release-candidate-workflow-name",
|
|
3310
3479
|
"release-passport",
|
|
3480
|
+
"release-passport-attachment-command",
|
|
3311
3481
|
"release-passport-buildchain-self-kfd",
|
|
3312
3482
|
"release-passport-evidence-command",
|
|
3483
|
+
"release-passport-evidence-jsons",
|
|
3313
3484
|
"release-passport-evidence-path",
|
|
3314
3485
|
"release-passport-impact-json",
|
|
3315
3486
|
"release-passport-invariant-passport-command",
|
|
@@ -3725,7 +3896,7 @@
|
|
|
3725
3896
|
"visibility": "public",
|
|
3726
3897
|
"participantFacing": true,
|
|
3727
3898
|
"public": true,
|
|
3728
|
-
"inputCount":
|
|
3899
|
+
"inputCount": 85,
|
|
3729
3900
|
"inputs": [
|
|
3730
3901
|
"artifact-compression-level",
|
|
3731
3902
|
"artifact-name",
|
|
@@ -3741,6 +3912,9 @@
|
|
|
3741
3912
|
"artifact-retention-days",
|
|
3742
3913
|
"artifact-signing-request-upload-no-proxy",
|
|
3743
3914
|
"artifact-transfer-mode",
|
|
3915
|
+
"aws-codebuild-project",
|
|
3916
|
+
"aws-ec2-macos-runner-label",
|
|
3917
|
+
"aws-ec2-windows-runner-label",
|
|
3744
3918
|
"build-command",
|
|
3745
3919
|
"buildchain-alpha-contract-lock-path",
|
|
3746
3920
|
"buildchain-channel",
|
|
@@ -3761,6 +3935,9 @@
|
|
|
3761
3935
|
"checkout-cache-mode",
|
|
3762
3936
|
"checkout-cache-reference-repository-template",
|
|
3763
3937
|
"checkout-cache-timeout-seconds",
|
|
3938
|
+
"compiler-cache-platforms-json",
|
|
3939
|
+
"compiler-cache-provider",
|
|
3940
|
+
"compiler-cache-required",
|
|
3764
3941
|
"control-runner-json",
|
|
3765
3942
|
"credential-island-caller-owned",
|
|
3766
3943
|
"credential-island-environment",
|
|
@@ -3787,6 +3964,7 @@
|
|
|
3787
3964
|
"publish-registry",
|
|
3788
3965
|
"publish-source-ref",
|
|
3789
3966
|
"release-candidate",
|
|
3967
|
+
"release-candidate-family-evidence-json",
|
|
3790
3968
|
"requested-parallelism",
|
|
3791
3969
|
"require-build",
|
|
3792
3970
|
"require-install",
|
|
@@ -3797,6 +3975,7 @@
|
|
|
3797
3975
|
"rustup-dist-server",
|
|
3798
3976
|
"rustup-update-root",
|
|
3799
3977
|
"sample-process-tree",
|
|
3978
|
+
"self-hosted-offline-fallback",
|
|
3800
3979
|
"setup-node",
|
|
3801
3980
|
"setup-rust",
|
|
3802
3981
|
"shifu-cache-profile-digest",
|
|
@@ -3982,7 +4161,7 @@
|
|
|
3982
4161
|
"visibility": "public",
|
|
3983
4162
|
"participantFacing": true,
|
|
3984
4163
|
"public": true,
|
|
3985
|
-
"inputCount":
|
|
4164
|
+
"inputCount": 13,
|
|
3986
4165
|
"inputs": [
|
|
3987
4166
|
"alpha-workflow-path",
|
|
3988
4167
|
"buildchain-ref",
|
|
@@ -3993,6 +4172,7 @@
|
|
|
3993
4172
|
"max-age-seconds",
|
|
3994
4173
|
"pull-request-body-prefix",
|
|
3995
4174
|
"pull-request-body-prefix-renderer",
|
|
4175
|
+
"reactivation-authorized",
|
|
3996
4176
|
"settlement-authorized",
|
|
3997
4177
|
"source-branch",
|
|
3998
4178
|
"target-branch"
|
|
@@ -4330,7 +4510,7 @@
|
|
|
4330
4510
|
"visibility": "public",
|
|
4331
4511
|
"participantFacing": true,
|
|
4332
4512
|
"public": true,
|
|
4333
|
-
"inputCount":
|
|
4513
|
+
"inputCount": 86,
|
|
4334
4514
|
"inputs": [
|
|
4335
4515
|
"allow-repository",
|
|
4336
4516
|
"artifact-name",
|
|
@@ -4386,11 +4566,17 @@
|
|
|
4386
4566
|
"publish-transaction-override",
|
|
4387
4567
|
"release-activation-command",
|
|
4388
4568
|
"release-activation-receipt-set-path",
|
|
4569
|
+
"release-candidate-family-assignment-id",
|
|
4570
|
+
"release-candidate-family-evidence-required",
|
|
4571
|
+
"release-candidate-family-evidence-root",
|
|
4572
|
+
"release-candidate-family-initiative-id",
|
|
4389
4573
|
"release-candidate-workflow-file",
|
|
4390
4574
|
"release-candidate-workflow-name",
|
|
4391
4575
|
"release-passport",
|
|
4576
|
+
"release-passport-attachment-command",
|
|
4392
4577
|
"release-passport-buildchain-self-kfd",
|
|
4393
4578
|
"release-passport-evidence-command",
|
|
4579
|
+
"release-passport-evidence-jsons",
|
|
4394
4580
|
"release-passport-evidence-path",
|
|
4395
4581
|
"release-passport-impact-json",
|
|
4396
4582
|
"release-passport-invariant-passport-command",
|
|
@@ -4472,7 +4658,7 @@
|
|
|
4472
4658
|
"visibility": "public",
|
|
4473
4659
|
"participantFacing": true,
|
|
4474
4660
|
"public": true,
|
|
4475
|
-
"inputCount":
|
|
4661
|
+
"inputCount": 17,
|
|
4476
4662
|
"inputs": [
|
|
4477
4663
|
"buildchain-ref",
|
|
4478
4664
|
"buildchain-repository",
|
|
@@ -4481,6 +4667,7 @@
|
|
|
4481
4667
|
"downstream-prepare-command",
|
|
4482
4668
|
"downstream-repository",
|
|
4483
4669
|
"downstream-target",
|
|
4670
|
+
"downstream-update-command",
|
|
4484
4671
|
"downstream-verify-command",
|
|
4485
4672
|
"dry-run",
|
|
4486
4673
|
"graph-json",
|
|
@@ -4617,8 +4804,9 @@
|
|
|
4617
4804
|
"visibility": "public",
|
|
4618
4805
|
"participantFacing": true,
|
|
4619
4806
|
"public": true,
|
|
4620
|
-
"inputCount":
|
|
4807
|
+
"inputCount": 21,
|
|
4621
4808
|
"inputs": [
|
|
4809
|
+
"artifact-id",
|
|
4622
4810
|
"artifact-name",
|
|
4623
4811
|
"artifact-relative-output",
|
|
4624
4812
|
"artifact-stem",
|
|
@@ -4652,7 +4840,7 @@
|
|
|
4652
4840
|
"visibility": "public",
|
|
4653
4841
|
"participantFacing": true,
|
|
4654
4842
|
"public": true,
|
|
4655
|
-
"inputCount":
|
|
4843
|
+
"inputCount": 76,
|
|
4656
4844
|
"inputs": [
|
|
4657
4845
|
"allow-repository",
|
|
4658
4846
|
"branch-protection-bypass-apps",
|
|
@@ -4681,6 +4869,8 @@
|
|
|
4681
4869
|
"publish-package-set-order",
|
|
4682
4870
|
"publish-rematerialize-on-resume",
|
|
4683
4871
|
"publish-required-artifacts-json",
|
|
4872
|
+
"publish-sealed-bundle-manifest",
|
|
4873
|
+
"publish-sealed-bundle-root",
|
|
4684
4874
|
"publish-source-locked",
|
|
4685
4875
|
"publish-source-ref",
|
|
4686
4876
|
"publish-source-sha",
|
|
@@ -4689,12 +4879,19 @@
|
|
|
4689
4879
|
"publish-transaction-override",
|
|
4690
4880
|
"reconciliation-workspace",
|
|
4691
4881
|
"release-candidate-build-summary-path",
|
|
4882
|
+
"release-candidate-family-assignment-id",
|
|
4883
|
+
"release-candidate-family-evidence-required",
|
|
4884
|
+
"release-candidate-family-evidence-root",
|
|
4885
|
+
"release-candidate-family-initiative-id",
|
|
4692
4886
|
"release-candidate-passport-path",
|
|
4693
4887
|
"release-candidate-version",
|
|
4694
4888
|
"release-material-sha",
|
|
4695
4889
|
"release-passport",
|
|
4890
|
+
"release-passport-attachment-command",
|
|
4696
4891
|
"release-passport-build-summary-path",
|
|
4697
4892
|
"release-passport-buildchain-self-kfd",
|
|
4893
|
+
"release-passport-evidence-command",
|
|
4894
|
+
"release-passport-evidence-jsons",
|
|
4698
4895
|
"release-passport-github-artifact-attestation-policy-jsons",
|
|
4699
4896
|
"release-passport-impact-json",
|
|
4700
4897
|
"release-passport-invariant-passport-command",
|
|
@@ -5088,6 +5285,18 @@
|
|
|
5088
5285
|
"public": true,
|
|
5089
5286
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5090
5287
|
},
|
|
5288
|
+
{
|
|
5289
|
+
"id": "site-page:manual:aws-us-elastic-runner-burst-plane",
|
|
5290
|
+
"name": "site-page:manual:aws-us-elastic-runner-burst-plane",
|
|
5291
|
+
"kind": "site-page",
|
|
5292
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
5293
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
5294
|
+
"availability": "shipped",
|
|
5295
|
+
"visibility": "public",
|
|
5296
|
+
"participantFacing": true,
|
|
5297
|
+
"public": true,
|
|
5298
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5299
|
+
},
|
|
5091
5300
|
{
|
|
5092
5301
|
"id": "site-page:manual:binary-distribution",
|
|
5093
5302
|
"name": "site-page:manual:binary-distribution",
|
|
@@ -5715,6 +5924,6 @@
|
|
|
5715
5924
|
}
|
|
5716
5925
|
}
|
|
5717
5926
|
],
|
|
5718
|
-
"publicSurfaceCount":
|
|
5927
|
+
"publicSurfaceCount": 379
|
|
5719
5928
|
}
|
|
5720
5929
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"title": "Buildchain documentation map",
|
|
10
10
|
"path": "docs/MAP.md",
|
|
11
11
|
"plane": "use",
|
|
12
|
-
"digest": "sha256:
|
|
12
|
+
"digest": "sha256:430eed733bfcbebd853da9c60a687822dab73689d7fb9ad2e9a760af279415e5",
|
|
13
13
|
"capabilityGroup": "getting-started",
|
|
14
14
|
"audience": [
|
|
15
15
|
"agent",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"title": "Auditable demo artifact pipeline",
|
|
24
24
|
"path": "docs/auditable-demo.md",
|
|
25
25
|
"plane": "verify",
|
|
26
|
-
"digest": "sha256:
|
|
26
|
+
"digest": "sha256:4b3e529060ba54a439a86159a4dc0fc7fb43c8456a90e4b32579c86b20bc6bab",
|
|
27
27
|
"capabilityGroup": "reusable-build",
|
|
28
28
|
"audience": [
|
|
29
29
|
"consumer",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"title": "Release Passport protocol",
|
|
51
51
|
"path": "docs/release-passport.md",
|
|
52
52
|
"plane": "verify",
|
|
53
|
-
"digest": "sha256:
|
|
53
|
+
"digest": "sha256:e1ca1d470de4faeb9f7f0a57228aebbc166d0c96d03a5603fc576ad955c497a4",
|
|
54
54
|
"capabilityGroup": "release-passport-trust",
|
|
55
55
|
"audience": [
|
|
56
56
|
"release-operator",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"title": "Sealed publication authority",
|
|
94
94
|
"path": "docs/publication-authority.md",
|
|
95
95
|
"plane": "verify",
|
|
96
|
-
"digest": "sha256:
|
|
96
|
+
"digest": "sha256:6c91ee89d1ed5c0c570806684738916876556b2f1bcbf4be4f73f30ff89e98a4",
|
|
97
97
|
"capabilityGroup": "release-passport-trust",
|
|
98
98
|
"audience": [
|
|
99
99
|
"release-operator",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"title": "GitHub governance authority",
|
|
108
108
|
"path": "docs/github-governance-authority.md",
|
|
109
109
|
"plane": "verify",
|
|
110
|
-
"digest": "sha256:
|
|
110
|
+
"digest": "sha256:197ae7a949817f60f46b67b060731df14d0343d9daecd7d6eacfae9a526b6a12",
|
|
111
111
|
"capabilityGroup": "governance-versioning",
|
|
112
112
|
"audience": [
|
|
113
113
|
"maintainer",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"title": "Release Candidate Passport",
|
|
123
123
|
"path": "docs/release-candidate.md",
|
|
124
124
|
"plane": "verify",
|
|
125
|
-
"digest": "sha256:
|
|
125
|
+
"digest": "sha256:fbcffddf1e2c50502186b7ba557e29f96be59a1da6d438aabd4d1f9ce32b5915",
|
|
126
126
|
"capabilityGroup": "reusable-build",
|
|
127
127
|
"audience": [
|
|
128
128
|
"release-operator",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"title": "Release propagation",
|
|
137
137
|
"path": "docs/release-propagation.md",
|
|
138
138
|
"plane": "use",
|
|
139
|
-
"digest": "sha256:
|
|
139
|
+
"digest": "sha256:aea013d923a8d419fc76e99a81765f281640dd95141d32ae415b8572604e9d32",
|
|
140
140
|
"capabilityGroup": "site-and-propagation",
|
|
141
141
|
"audience": [
|
|
142
142
|
"release-operator",
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"title": "Consumer issue reporting",
|
|
193
193
|
"path": "docs/consumer-issue-reporting.md",
|
|
194
194
|
"plane": "use",
|
|
195
|
-
"digest": "sha256:
|
|
195
|
+
"digest": "sha256:324342b10e69ca5ce6d04a267fb5fc2a6b52e674f6252eec2121557c5542f729",
|
|
196
196
|
"capabilityGroup": "observability-diagnostics",
|
|
197
197
|
"audience": [
|
|
198
198
|
"consumer",
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
"title": "Toolkit observability",
|
|
221
221
|
"path": "docs/toolkit-observability.md",
|
|
222
222
|
"plane": "use",
|
|
223
|
-
"digest": "sha256:
|
|
223
|
+
"digest": "sha256:1a08331cdca2b48e622ecbb799a7465a59cc4a779dd73d36f559f9bc1b98578c",
|
|
224
224
|
"capabilityGroup": "observability-diagnostics",
|
|
225
225
|
"audience": [
|
|
226
226
|
"developer",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"title": "Migration inventory",
|
|
249
249
|
"path": "docs/migration-inventory.md",
|
|
250
250
|
"plane": "verify",
|
|
251
|
-
"digest": "sha256:
|
|
251
|
+
"digest": "sha256:25d896711f4efebffa9a8960b7eb97438d9fd4892aa08bef0339026e83a53bdf",
|
|
252
252
|
"capabilityGroup": "governance-versioning",
|
|
253
253
|
"audience": [
|
|
254
254
|
"maintainer",
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
"title": "Ownership",
|
|
263
263
|
"path": "docs/ownership.md",
|
|
264
264
|
"plane": "why",
|
|
265
|
-
"digest": "sha256:
|
|
265
|
+
"digest": "sha256:91a1b59f0f71067c58ffd685a23b29e14a4d6fe33c1a44f8708b7d0512e4baa5",
|
|
266
266
|
"capabilityGroup": "governance-versioning",
|
|
267
267
|
"audience": [
|
|
268
268
|
"maintainer"
|
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
"title": "CLI and npm package",
|
|
290
290
|
"path": "docs/cli.md",
|
|
291
291
|
"plane": "use",
|
|
292
|
-
"digest": "sha256:
|
|
292
|
+
"digest": "sha256:60c6b00e0dbf60f0b7ba8c3c549027925d94a6bdf8a2af3f8e35d24ef1dd50ba",
|
|
293
293
|
"capabilityGroup": "api-cli-reference",
|
|
294
294
|
"audience": [
|
|
295
295
|
"agent",
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
"title": "Lifecycle protocol",
|
|
347
347
|
"path": "docs/lifecycle-protocol.md",
|
|
348
348
|
"plane": "use",
|
|
349
|
-
"digest": "sha256:
|
|
349
|
+
"digest": "sha256:4b7a8efe1d22751ded069f46a23490db70cda9e9e14641acab600ab781245b19",
|
|
350
350
|
"capabilityGroup": "reusable-build",
|
|
351
351
|
"audience": [
|
|
352
352
|
"consumer",
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
"title": "Reusable build surface",
|
|
361
361
|
"path": "docs/reusable-build-surface.md",
|
|
362
362
|
"plane": "use",
|
|
363
|
-
"digest": "sha256:
|
|
363
|
+
"digest": "sha256:8908e1f1589537ac8ef82ee1dacdd24072ca871e3e245825669e7cfbdebd2e3d",
|
|
364
364
|
"capabilityGroup": "reusable-build",
|
|
365
365
|
"audience": [
|
|
366
366
|
"consumer",
|
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
"title": "Publish transaction",
|
|
375
375
|
"path": "docs/publish-transaction.md",
|
|
376
376
|
"plane": "verify",
|
|
377
|
-
"digest": "sha256:
|
|
377
|
+
"digest": "sha256:9b830727e5b0d2192c937f19106c11ea5064dde77e30d290825f343df47f291b",
|
|
378
378
|
"capabilityGroup": "release-passport-trust",
|
|
379
379
|
"audience": [
|
|
380
380
|
"release-operator"
|
|
@@ -387,7 +387,7 @@
|
|
|
387
387
|
"title": "Release governance",
|
|
388
388
|
"path": "docs/release-governance.md",
|
|
389
389
|
"plane": "why",
|
|
390
|
-
"digest": "sha256:
|
|
390
|
+
"digest": "sha256:60ec90d3294818d3c53e403312801a8ab47be7c0f34810002676fbfcdbceaa60",
|
|
391
391
|
"capabilityGroup": "governance-versioning",
|
|
392
392
|
"audience": [
|
|
393
393
|
"maintainer",
|
|
@@ -401,7 +401,7 @@
|
|
|
401
401
|
"title": "Release flow",
|
|
402
402
|
"path": "docs/release-flow.md",
|
|
403
403
|
"plane": "verify",
|
|
404
|
-
"digest": "sha256:
|
|
404
|
+
"digest": "sha256:bac959565c36cf39c3cd30dfce00dbbb59b73ed21b852a8f24a6cae281cb5f05",
|
|
405
405
|
"capabilityGroup": "governance-versioning",
|
|
406
406
|
"audience": [
|
|
407
407
|
"release-operator",
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
"title": "Runtime train validation",
|
|
416
416
|
"path": "docs/runtime-train-validation.md",
|
|
417
417
|
"plane": "verify",
|
|
418
|
-
"digest": "sha256:
|
|
418
|
+
"digest": "sha256:1a4ce3fc2c150f88bc4d32123a108478ba5d73d0d69b8a95bf0d6670e32618a0",
|
|
419
419
|
"capabilityGroup": "governance-versioning",
|
|
420
420
|
"audience": [
|
|
421
421
|
"maintainer",
|
|
@@ -429,7 +429,7 @@
|
|
|
429
429
|
"title": "Versioning",
|
|
430
430
|
"path": "docs/versioning.md",
|
|
431
431
|
"plane": "why",
|
|
432
|
-
"digest": "sha256:
|
|
432
|
+
"digest": "sha256:5dd27f3c4a412a23093e5d33746a5d5d40353625c8ffe89a961978fc5de9c03e",
|
|
433
433
|
"capabilityGroup": "governance-versioning",
|
|
434
434
|
"audience": [
|
|
435
435
|
"maintainer"
|
|
@@ -442,7 +442,7 @@
|
|
|
442
442
|
"title": "Web surface deployments",
|
|
443
443
|
"path": "docs/web-surface-deployments.md",
|
|
444
444
|
"plane": "use",
|
|
445
|
-
"digest": "sha256:
|
|
445
|
+
"digest": "sha256:484e896746d2f4cca4f9f18d29c14784ec20143c12affc3dbb9ccfbf8f221b55",
|
|
446
446
|
"capabilityGroup": "site-and-propagation",
|
|
447
447
|
"audience": [
|
|
448
448
|
"site",
|