@kungfu-tech/buildchain 3.0.5 → 3.0.6-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/README.md +31 -0
- package/actions/macos-credential-island/README.md +8 -0
- package/bin/buildchain.mjs +1 -1
- package/contracts/auditable-demo-media-profiles-v1.json +61 -0
- package/contracts/auditable-demo-scenario-v1.schema.json +164 -0
- package/contracts/evidence/auditable-demo-responsive-web-delivery-v1.json +3 -3
- package/contracts/evidence/auditable-demo-web-delivery-v1.json +3 -3
- package/dist/site/buildchain-contract.json +107 -26
- package/dist/site/buildchain-site.json +126 -49
- package/dist/site/capability-registry.json +3 -3
- package/dist/site/cli-registry.json +9 -3
- package/dist/site/controller-registry.json +27 -3
- package/dist/site/kfd-claims.json +103 -16
- package/dist/site/kfd-upstream-aggregate.json +9 -9
- package/dist/site/manual-registry.json +10 -9
- package/dist/site/node-api-registry.json +540 -31
- package/dist/site/page-registry.json +110 -29
- package/dist/site/public-surface-audit.json +186 -12
- package/dist/site/publication-authority-registry.json +62 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +13 -13
- package/dist/site/workflow-registry.json +120 -5
- package/docs/MAP.md +5 -1
- package/docs/auditable-demo.md +90 -7
- package/docs/aws-us-elastic-runner-burst-plane.md +181 -16
- package/docs/cli-reference.md +35 -2
- package/docs/dev-alpha-candidate-patrol.md +14 -5
- package/docs/dev-qualification-patrol.md +108 -0
- package/docs/node-api-reference.md +123 -72
- package/docs/publish-transaction.md +7 -5
- package/docs/release-flow.md +4 -0
- package/docs/release-governance.md +47 -1
- package/docs/release-propagation.md +93 -0
- package/docs/reusable-build-surface.md +53 -12
- package/docs/stable-candidate-patrol.md +5 -2
- package/package.json +3 -2
- package/packages/core/buildchain-contract.js +36 -1
- package/packages/core/buildchain-publication-authority.js +3 -0
- package/packages/core/public-surface-audit.js +4 -35
- package/packages/core/release-propagation-agent-entry.js +185 -0
- package/packages/core/release-propagation-pickup.js +387 -0
- package/packages/core/release-propagation-push.js +293 -0
- package/packages/core/release-propagation-release.js +61 -18
- package/packages/core/release-propagation-stage-evidence.js +36 -0
- package/packages/core/release-propagation-work.js +8 -4
- package/packages/core/release-propagation.js +27 -2
- package/packages/core/workflow-call-contract.js +308 -0
- package/packages/core/workflow-yaml-contract.js +272 -0
- package/scripts/artifact-signing-controller-core.mjs +525 -0
- package/scripts/artifact-signing-controller.mjs +302 -0
- package/scripts/artifact-signing-delegation.mjs +51 -3
- package/scripts/auditable-demo-platform.mjs +564 -0
- package/scripts/auditable-demo-renditions.mjs +7 -2
- package/scripts/auditable-demo-transport-smoke.mjs +176 -0
- package/scripts/auditable-demo.mjs +27 -21
- package/scripts/aws-macos-jit-controller-core.mjs +389 -0
- package/scripts/aws-macos-jit-controller-runtime.mjs +82 -0
- package/scripts/aws-macos-jit-controller.mjs +558 -0
- package/scripts/aws-macos-jit-job-controller.mjs +401 -0
- package/scripts/aws-windows-jit-campaign-core.mjs +295 -0
- package/scripts/aws-windows-jit-campaign.mjs +202 -0
- package/scripts/aws-windows-jit-controller-core.mjs +20 -2
- package/scripts/aws-windows-jit-controller.mjs +185 -109
- package/scripts/aws-windows-jit-core.mjs +21 -3
- package/scripts/aws-windows-jit.mjs +2 -0
- package/scripts/build-standalone-binary.mjs +6 -0
- package/scripts/buildchain-cli-help.mjs +2 -1
- package/scripts/capture-package-release-propagation.mjs +24 -1
- package/scripts/check-inventory.mjs +6 -0
- package/scripts/compiler-cache-evidence.mjs +90 -7
- package/scripts/dev-alpha-candidate-patrol.mjs +80 -5
- package/scripts/dev-pr-auto-merge.mjs +15 -15
- package/scripts/dev-qualification-patrol.mjs +594 -0
- package/scripts/dispatch-artifact-signing-authority.mjs +310 -61
- package/scripts/finalize-native-artifact-signing-result.mjs +37 -15
- package/scripts/generate-site-bundle.mjs +5 -0
- package/scripts/inspect-artifact-signing-requests.mjs +12 -0
- package/scripts/locked-source-checkout.mjs +17 -3
- package/scripts/release-propagation.mjs +150 -2
- package/scripts/run-lifecycle-core.mjs +25 -0
- package/scripts/site-capability-metadata.mjs +1 -1
- package/scripts/stable-candidate-patrol.mjs +30 -4
- package/scripts/workflow-call-contract.mjs +133 -0
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
"status": "passed",
|
|
5
5
|
"summary": {
|
|
6
6
|
"cliCommandCount": 112,
|
|
7
|
-
"workflowCount":
|
|
7
|
+
"workflowCount": 60,
|
|
8
8
|
"actionCount": 6,
|
|
9
|
-
"sitePageCount":
|
|
10
|
-
"docCommandRefCount":
|
|
9
|
+
"sitePageCount": 64,
|
|
10
|
+
"docCommandRefCount": 830,
|
|
11
11
|
"failureCount": 0
|
|
12
12
|
},
|
|
13
13
|
"enumerated": {
|
|
@@ -490,7 +490,7 @@
|
|
|
490
490
|
{
|
|
491
491
|
"id": "release-propagation",
|
|
492
492
|
"source": "bin/buildchain.mjs",
|
|
493
|
-
"usage": "buildchain release-propagation <plan|write-lock> ..."
|
|
493
|
+
"usage": "buildchain release-propagation <plan|write-lock|work|entry|pickup> ..."
|
|
494
494
|
},
|
|
495
495
|
{
|
|
496
496
|
"id": "release-transaction",
|
|
@@ -677,6 +677,7 @@
|
|
|
677
677
|
"checkout-cache-mode",
|
|
678
678
|
"checkout-cache-reference-repository-template",
|
|
679
679
|
"checkout-cache-timeout-seconds",
|
|
680
|
+
"checkout-history-mode",
|
|
680
681
|
"compiler-cache-platforms-json",
|
|
681
682
|
"compiler-cache-provider",
|
|
682
683
|
"compiler-cache-required",
|
|
@@ -698,6 +699,8 @@
|
|
|
698
699
|
"linux-container-preset",
|
|
699
700
|
"node-version",
|
|
700
701
|
"platforms-json",
|
|
702
|
+
"pre-upload-transport-smoke-artifact-root",
|
|
703
|
+
"pre-upload-transport-smoke-scenario-path",
|
|
701
704
|
"process-sample-interval-ms",
|
|
702
705
|
"process-summary-path",
|
|
703
706
|
"publish-anchor-request-json",
|
|
@@ -726,7 +729,7 @@
|
|
|
726
729
|
"verify-command",
|
|
727
730
|
"working-directory"
|
|
728
731
|
],
|
|
729
|
-
"inputCount":
|
|
732
|
+
"inputCount": 85,
|
|
730
733
|
"secrets": [
|
|
731
734
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
732
735
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -799,6 +802,38 @@
|
|
|
799
802
|
"outputs": [],
|
|
800
803
|
"outputCount": 0
|
|
801
804
|
},
|
|
805
|
+
{
|
|
806
|
+
"id": ".declarative-auditable-demo",
|
|
807
|
+
"path": ".github/workflows/.declarative-auditable-demo.yml",
|
|
808
|
+
"reusable": true,
|
|
809
|
+
"inputs": [
|
|
810
|
+
"artifact-retention-days",
|
|
811
|
+
"binary-artifact-digest",
|
|
812
|
+
"binary-artifact-name",
|
|
813
|
+
"buildchain-repository",
|
|
814
|
+
"materialize",
|
|
815
|
+
"materialize-base-ref",
|
|
816
|
+
"media-profile",
|
|
817
|
+
"render-media",
|
|
818
|
+
"renderer-image",
|
|
819
|
+
"scenario-path",
|
|
820
|
+
"source-ref"
|
|
821
|
+
],
|
|
822
|
+
"inputCount": 11,
|
|
823
|
+
"secrets": [
|
|
824
|
+
"DEMO_UPDATE_TOKEN"
|
|
825
|
+
],
|
|
826
|
+
"secretCount": 1,
|
|
827
|
+
"outputs": [
|
|
828
|
+
"capture-artifact-digest",
|
|
829
|
+
"capture-artifact-name",
|
|
830
|
+
"evidence-artifact-digest",
|
|
831
|
+
"evidence-artifact-name",
|
|
832
|
+
"publication-pr-url",
|
|
833
|
+
"source-sha"
|
|
834
|
+
],
|
|
835
|
+
"outputCount": 6
|
|
836
|
+
},
|
|
802
837
|
{
|
|
803
838
|
"id": ".gate-profile",
|
|
804
839
|
"path": ".github/workflows/.gate-profile.yml",
|
|
@@ -1421,6 +1456,17 @@
|
|
|
1421
1456
|
"outputs": [],
|
|
1422
1457
|
"outputCount": 0
|
|
1423
1458
|
},
|
|
1459
|
+
{
|
|
1460
|
+
"id": "auditable-demo",
|
|
1461
|
+
"path": ".github/workflows/auditable-demo.yml",
|
|
1462
|
+
"reusable": false,
|
|
1463
|
+
"inputs": [],
|
|
1464
|
+
"inputCount": 0,
|
|
1465
|
+
"secrets": [],
|
|
1466
|
+
"secretCount": 0,
|
|
1467
|
+
"outputs": [],
|
|
1468
|
+
"outputCount": 0
|
|
1469
|
+
},
|
|
1424
1470
|
{
|
|
1425
1471
|
"id": "binary-distribution",
|
|
1426
1472
|
"path": ".github/workflows/binary-distribution.yml",
|
|
@@ -1496,6 +1542,7 @@
|
|
|
1496
1542
|
"checkout-cache-mode",
|
|
1497
1543
|
"checkout-cache-reference-repository-template",
|
|
1498
1544
|
"checkout-cache-timeout-seconds",
|
|
1545
|
+
"checkout-history-mode",
|
|
1499
1546
|
"compiler-cache-platforms-json",
|
|
1500
1547
|
"compiler-cache-provider",
|
|
1501
1548
|
"compiler-cache-required",
|
|
@@ -1517,6 +1564,8 @@
|
|
|
1517
1564
|
"linux-container-preset",
|
|
1518
1565
|
"node-version",
|
|
1519
1566
|
"platforms-json",
|
|
1567
|
+
"pre-upload-transport-smoke-artifact-root",
|
|
1568
|
+
"pre-upload-transport-smoke-scenario-path",
|
|
1520
1569
|
"process-sample-interval-ms",
|
|
1521
1570
|
"process-summary-path",
|
|
1522
1571
|
"publish-anchor-request-json",
|
|
@@ -1545,7 +1594,7 @@
|
|
|
1545
1594
|
"verify-command",
|
|
1546
1595
|
"working-directory"
|
|
1547
1596
|
],
|
|
1548
|
-
"inputCount":
|
|
1597
|
+
"inputCount": 88,
|
|
1549
1598
|
"secrets": [
|
|
1550
1599
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
1551
1600
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -1765,12 +1814,14 @@
|
|
|
1765
1814
|
"reusable": true,
|
|
1766
1815
|
"inputs": [
|
|
1767
1816
|
"alpha-workflow-path",
|
|
1817
|
+
"auto-merge",
|
|
1768
1818
|
"buildchain-ref",
|
|
1769
1819
|
"buildchain-repository",
|
|
1770
1820
|
"create-pull-request",
|
|
1771
1821
|
"dev-workflow-path",
|
|
1772
1822
|
"dry-run",
|
|
1773
1823
|
"max-age-seconds",
|
|
1824
|
+
"merge-method",
|
|
1774
1825
|
"pull-request-body-prefix",
|
|
1775
1826
|
"pull-request-body-prefix-renderer",
|
|
1776
1827
|
"reactivation-authorized",
|
|
@@ -1778,7 +1829,7 @@
|
|
|
1778
1829
|
"source-branch",
|
|
1779
1830
|
"target-branch"
|
|
1780
1831
|
],
|
|
1781
|
-
"inputCount":
|
|
1832
|
+
"inputCount": 15,
|
|
1782
1833
|
"secrets": [
|
|
1783
1834
|
"promotion-token"
|
|
1784
1835
|
],
|
|
@@ -1821,13 +1872,14 @@
|
|
|
1821
1872
|
"landing-mode",
|
|
1822
1873
|
"max-merges",
|
|
1823
1874
|
"merge-method",
|
|
1875
|
+
"queue-admission-context",
|
|
1824
1876
|
"ready-label",
|
|
1825
1877
|
"require-approval",
|
|
1826
1878
|
"required-status-checks",
|
|
1827
1879
|
"same-repository-only",
|
|
1828
1880
|
"target-branch"
|
|
1829
1881
|
],
|
|
1830
|
-
"inputCount":
|
|
1882
|
+
"inputCount": 14,
|
|
1831
1883
|
"secrets": [
|
|
1832
1884
|
"github-token"
|
|
1833
1885
|
],
|
|
@@ -1842,6 +1894,38 @@
|
|
|
1842
1894
|
],
|
|
1843
1895
|
"outputCount": 6
|
|
1844
1896
|
},
|
|
1897
|
+
{
|
|
1898
|
+
"id": "dev-qualification-patrol",
|
|
1899
|
+
"path": ".github/workflows/dev-qualification-patrol.yml",
|
|
1900
|
+
"reusable": true,
|
|
1901
|
+
"inputs": [
|
|
1902
|
+
"buildchain-ref",
|
|
1903
|
+
"buildchain-repository",
|
|
1904
|
+
"dev-workflow-path",
|
|
1905
|
+
"dispatch-inputs-json",
|
|
1906
|
+
"dry-run",
|
|
1907
|
+
"max-attempts",
|
|
1908
|
+
"mutation-authorized",
|
|
1909
|
+
"preflight-workflow-path",
|
|
1910
|
+
"priority-workflows-json",
|
|
1911
|
+
"source-branch"
|
|
1912
|
+
],
|
|
1913
|
+
"inputCount": 10,
|
|
1914
|
+
"secrets": [
|
|
1915
|
+
"qualification-token"
|
|
1916
|
+
],
|
|
1917
|
+
"secretCount": 1,
|
|
1918
|
+
"outputs": [
|
|
1919
|
+
"action",
|
|
1920
|
+
"active-run-id",
|
|
1921
|
+
"decision-root",
|
|
1922
|
+
"pending-sha",
|
|
1923
|
+
"reason",
|
|
1924
|
+
"source-sha",
|
|
1925
|
+
"state"
|
|
1926
|
+
],
|
|
1927
|
+
"outputCount": 7
|
|
1928
|
+
},
|
|
1845
1929
|
{
|
|
1846
1930
|
"id": "github-artifact-attestation",
|
|
1847
1931
|
"path": ".github/workflows/github-artifact-attestation.yml",
|
|
@@ -2445,6 +2529,7 @@
|
|
|
2445
2529
|
"hold",
|
|
2446
2530
|
"hold-reason",
|
|
2447
2531
|
"ledger-ref",
|
|
2532
|
+
"merge-method",
|
|
2448
2533
|
"minimum-soak-seconds",
|
|
2449
2534
|
"release-now",
|
|
2450
2535
|
"required-checks",
|
|
@@ -2452,7 +2537,7 @@
|
|
|
2452
2537
|
"revoked-versions",
|
|
2453
2538
|
"target-branch"
|
|
2454
2539
|
],
|
|
2455
|
-
"inputCount":
|
|
2540
|
+
"inputCount": 16,
|
|
2456
2541
|
"secrets": [
|
|
2457
2542
|
"approval-token",
|
|
2458
2543
|
"promotion-token"
|
|
@@ -2818,6 +2903,10 @@
|
|
|
2818
2903
|
"id": "manual:dev-alpha-candidate-patrol",
|
|
2819
2904
|
"category": "manual"
|
|
2820
2905
|
},
|
|
2906
|
+
{
|
|
2907
|
+
"id": "manual:dev-qualification-patrol",
|
|
2908
|
+
"category": "manual"
|
|
2909
|
+
},
|
|
2821
2910
|
{
|
|
2822
2911
|
"id": "manual:getting-started",
|
|
2823
2912
|
"category": "manual"
|
|
@@ -4031,6 +4120,11 @@
|
|
|
4031
4120
|
"path": "docs/lifecycle-protocol.md",
|
|
4032
4121
|
"command": "buildchain init --type infra-contract"
|
|
4033
4122
|
},
|
|
4123
|
+
{
|
|
4124
|
+
"id": "init",
|
|
4125
|
+
"path": "README.md",
|
|
4126
|
+
"command": "buildchain init --cwd"
|
|
4127
|
+
},
|
|
4034
4128
|
{
|
|
4035
4129
|
"id": "init",
|
|
4036
4130
|
"path": "README.md",
|
|
@@ -5291,6 +5385,11 @@
|
|
|
5291
5385
|
"path": "docs/kfd-support.md",
|
|
5292
5386
|
"command": "buildchain layout --cwd"
|
|
5293
5387
|
},
|
|
5388
|
+
{
|
|
5389
|
+
"id": "layout",
|
|
5390
|
+
"path": "README.md",
|
|
5391
|
+
"command": "buildchain layout --cwd"
|
|
5392
|
+
},
|
|
5294
5393
|
{
|
|
5295
5394
|
"id": "lifecycle",
|
|
5296
5395
|
"path": "docs/cli-reference.md",
|
|
@@ -6311,11 +6410,46 @@
|
|
|
6311
6410
|
"path": "docs/cli-reference.md",
|
|
6312
6411
|
"command": "buildchain release-propagation"
|
|
6313
6412
|
},
|
|
6413
|
+
{
|
|
6414
|
+
"id": "release-propagation",
|
|
6415
|
+
"path": "docs/cli-reference.md",
|
|
6416
|
+
"command": "buildchain release-propagation"
|
|
6417
|
+
},
|
|
6418
|
+
{
|
|
6419
|
+
"id": "release-propagation",
|
|
6420
|
+
"path": "docs/cli-reference.md",
|
|
6421
|
+
"command": "buildchain release-propagation"
|
|
6422
|
+
},
|
|
6423
|
+
{
|
|
6424
|
+
"id": "release-propagation",
|
|
6425
|
+
"path": "docs/cli-reference.md",
|
|
6426
|
+
"command": "buildchain release-propagation"
|
|
6427
|
+
},
|
|
6314
6428
|
{
|
|
6315
6429
|
"id": "release-propagation",
|
|
6316
6430
|
"path": "docs/cli-reference.md",
|
|
6317
6431
|
"command": "buildchain release-propagation --help"
|
|
6318
6432
|
},
|
|
6433
|
+
{
|
|
6434
|
+
"id": "release-propagation",
|
|
6435
|
+
"path": "docs/cli-reference.md",
|
|
6436
|
+
"command": "buildchain release-propagation entry"
|
|
6437
|
+
},
|
|
6438
|
+
{
|
|
6439
|
+
"id": "release-propagation",
|
|
6440
|
+
"path": "docs/cli-reference.md",
|
|
6441
|
+
"command": "buildchain release-propagation entry --help"
|
|
6442
|
+
},
|
|
6443
|
+
{
|
|
6444
|
+
"id": "release-propagation",
|
|
6445
|
+
"path": "docs/cli-reference.md",
|
|
6446
|
+
"command": "buildchain release-propagation pickup"
|
|
6447
|
+
},
|
|
6448
|
+
{
|
|
6449
|
+
"id": "release-propagation",
|
|
6450
|
+
"path": "docs/cli-reference.md",
|
|
6451
|
+
"command": "buildchain release-propagation pickup --help"
|
|
6452
|
+
},
|
|
6319
6453
|
{
|
|
6320
6454
|
"id": "release-propagation",
|
|
6321
6455
|
"path": "docs/cli-reference.md",
|
|
@@ -6326,6 +6460,16 @@
|
|
|
6326
6460
|
"path": "docs/cli-reference.md",
|
|
6327
6461
|
"command": "buildchain release-propagation plan --help"
|
|
6328
6462
|
},
|
|
6463
|
+
{
|
|
6464
|
+
"id": "release-propagation",
|
|
6465
|
+
"path": "docs/cli-reference.md",
|
|
6466
|
+
"command": "buildchain release-propagation work"
|
|
6467
|
+
},
|
|
6468
|
+
{
|
|
6469
|
+
"id": "release-propagation",
|
|
6470
|
+
"path": "docs/cli-reference.md",
|
|
6471
|
+
"command": "buildchain release-propagation work --help"
|
|
6472
|
+
},
|
|
6329
6473
|
{
|
|
6330
6474
|
"id": "release-propagation",
|
|
6331
6475
|
"path": "docs/cli-reference.md",
|
|
@@ -6351,6 +6495,21 @@
|
|
|
6351
6495
|
"path": "docs/release-propagation.md",
|
|
6352
6496
|
"command": "buildchain release-propagation receipt"
|
|
6353
6497
|
},
|
|
6498
|
+
{
|
|
6499
|
+
"id": "release-propagation",
|
|
6500
|
+
"path": "docs/release-propagation.md",
|
|
6501
|
+
"command": "buildchain release-propagation entry plan"
|
|
6502
|
+
},
|
|
6503
|
+
{
|
|
6504
|
+
"id": "release-propagation",
|
|
6505
|
+
"path": "docs/release-propagation.md",
|
|
6506
|
+
"command": "buildchain release-propagation entry plan"
|
|
6507
|
+
},
|
|
6508
|
+
{
|
|
6509
|
+
"id": "release-propagation",
|
|
6510
|
+
"path": "docs/release-propagation.md",
|
|
6511
|
+
"command": "buildchain release-propagation entry fault-matrix"
|
|
6512
|
+
},
|
|
6354
6513
|
{
|
|
6355
6514
|
"id": "release-propagation",
|
|
6356
6515
|
"path": "docs/release-propagation.md",
|
|
@@ -6391,6 +6550,16 @@
|
|
|
6391
6550
|
"path": "docs/release-propagation.md",
|
|
6392
6551
|
"command": "buildchain release-propagation work complete"
|
|
6393
6552
|
},
|
|
6553
|
+
{
|
|
6554
|
+
"id": "release-propagation",
|
|
6555
|
+
"path": "docs/release-propagation.md",
|
|
6556
|
+
"command": "buildchain release-propagation work push-plan"
|
|
6557
|
+
},
|
|
6558
|
+
{
|
|
6559
|
+
"id": "release-propagation",
|
|
6560
|
+
"path": "docs/release-propagation.md",
|
|
6561
|
+
"command": "buildchain release-propagation work push-branch"
|
|
6562
|
+
},
|
|
6394
6563
|
{
|
|
6395
6564
|
"id": "release-transaction",
|
|
6396
6565
|
"path": "docs/cli-reference.md",
|
|
@@ -6996,6 +7165,11 @@
|
|
|
6996
7165
|
"path": "docs/install.md",
|
|
6997
7166
|
"command": "buildchain version npx buildchain"
|
|
6998
7167
|
},
|
|
7168
|
+
{
|
|
7169
|
+
"id": "version",
|
|
7170
|
+
"path": "README.md",
|
|
7171
|
+
"command": "buildchain version"
|
|
7172
|
+
},
|
|
6999
7173
|
{
|
|
7000
7174
|
"id": "version",
|
|
7001
7175
|
"path": "README.md",
|
|
@@ -7027,9 +7201,9 @@
|
|
|
7027
7201
|
"cliRegistryPath": "dist/site/cli-registry.json",
|
|
7028
7202
|
"workflowRegistryPath": "dist/site/workflow-registry.json",
|
|
7029
7203
|
"pageRegistryPath": "dist/site/page-registry.json",
|
|
7030
|
-
"cliRegistryDigest": "
|
|
7031
|
-
"workflowRegistryDigest": "
|
|
7032
|
-
"pageRegistryDigest": "
|
|
7204
|
+
"cliRegistryDigest": "2012c52df8cd1c32f5cf2afbee6fa77e69818616d41ff984dad394af0523f266",
|
|
7205
|
+
"workflowRegistryDigest": "a367c2b909763495c24c10e97a00f5ddd99b811e820d9500fbc0bad9f5be1e0e",
|
|
7206
|
+
"pageRegistryDigest": "53eb6d70053abb17461aae81c323dbedab6d86a7f8edc3bb0f9b13b775694fd5"
|
|
7033
7207
|
},
|
|
7034
7208
|
"comparison": {
|
|
7035
7209
|
"missingCliRegistry": [],
|
|
@@ -44,6 +44,19 @@
|
|
|
44
44
|
"runnerPolicy": "unqualified",
|
|
45
45
|
"notes": ""
|
|
46
46
|
},
|
|
47
|
+
{
|
|
48
|
+
"workflowPath": ".github/workflows/.declarative-auditable-demo.yml",
|
|
49
|
+
"authorityClass": "governance-write",
|
|
50
|
+
"publicationCapable": false,
|
|
51
|
+
"capabilityIds": [],
|
|
52
|
+
"credentialMode": "none",
|
|
53
|
+
"publisherWorkflowMode": "fixed",
|
|
54
|
+
"publisherWorkflowPath": ".github/workflows/.declarative-auditable-demo.yml",
|
|
55
|
+
"environment": "",
|
|
56
|
+
"environmentMode": "fixed",
|
|
57
|
+
"runnerPolicy": "unqualified",
|
|
58
|
+
"notes": ""
|
|
59
|
+
},
|
|
47
60
|
{
|
|
48
61
|
"workflowPath": ".github/workflows/.publication-authority.yml",
|
|
49
62
|
"authorityClass": "evidence-publication",
|
|
@@ -180,6 +193,19 @@
|
|
|
180
193
|
"runnerPolicy": "unqualified",
|
|
181
194
|
"notes": ""
|
|
182
195
|
},
|
|
196
|
+
{
|
|
197
|
+
"workflowPath": ".github/workflows/auditable-demo.yml",
|
|
198
|
+
"authorityClass": "governance-write",
|
|
199
|
+
"publicationCapable": false,
|
|
200
|
+
"capabilityIds": [],
|
|
201
|
+
"credentialMode": "none",
|
|
202
|
+
"publisherWorkflowMode": "fixed",
|
|
203
|
+
"publisherWorkflowPath": ".github/workflows/auditable-demo.yml",
|
|
204
|
+
"environment": "",
|
|
205
|
+
"environmentMode": "fixed",
|
|
206
|
+
"runnerPolicy": "unqualified",
|
|
207
|
+
"notes": ""
|
|
208
|
+
},
|
|
183
209
|
{
|
|
184
210
|
"workflowPath": ".github/workflows/binary-distribution.yml",
|
|
185
211
|
"authorityClass": "evidence-publication",
|
|
@@ -362,6 +388,19 @@
|
|
|
362
388
|
"runnerPolicy": "unqualified",
|
|
363
389
|
"notes": ""
|
|
364
390
|
},
|
|
391
|
+
{
|
|
392
|
+
"workflowPath": ".github/workflows/dev-qualification-patrol.yml",
|
|
393
|
+
"authorityClass": "governance-write",
|
|
394
|
+
"publicationCapable": false,
|
|
395
|
+
"capabilityIds": [],
|
|
396
|
+
"credentialMode": "none",
|
|
397
|
+
"publisherWorkflowMode": "fixed",
|
|
398
|
+
"publisherWorkflowPath": ".github/workflows/dev-qualification-patrol.yml",
|
|
399
|
+
"environment": "",
|
|
400
|
+
"environmentMode": "fixed",
|
|
401
|
+
"runnerPolicy": "unqualified",
|
|
402
|
+
"notes": ""
|
|
403
|
+
},
|
|
365
404
|
{
|
|
366
405
|
"workflowPath": ".github/workflows/github-artifact-attestation.yml",
|
|
367
406
|
"authorityClass": "evidence-publication",
|
|
@@ -602,6 +641,14 @@
|
|
|
602
641
|
"signals": [],
|
|
603
642
|
"classified": false
|
|
604
643
|
},
|
|
644
|
+
{
|
|
645
|
+
"path": ".github/workflows/.declarative-auditable-demo.yml",
|
|
646
|
+
"signals": [
|
|
647
|
+
"write-permission",
|
|
648
|
+
"git-push"
|
|
649
|
+
],
|
|
650
|
+
"classified": true
|
|
651
|
+
},
|
|
605
652
|
{
|
|
606
653
|
"path": ".github/workflows/.gate-profile.yml",
|
|
607
654
|
"signals": [],
|
|
@@ -702,6 +749,13 @@
|
|
|
702
749
|
"signals": [],
|
|
703
750
|
"classified": false
|
|
704
751
|
},
|
|
752
|
+
{
|
|
753
|
+
"path": ".github/workflows/auditable-demo.yml",
|
|
754
|
+
"signals": [
|
|
755
|
+
"write-permission"
|
|
756
|
+
],
|
|
757
|
+
"classified": true
|
|
758
|
+
},
|
|
705
759
|
{
|
|
706
760
|
"path": ".github/workflows/binary-distribution.yml",
|
|
707
761
|
"signals": [
|
|
@@ -818,6 +872,13 @@
|
|
|
818
872
|
],
|
|
819
873
|
"classified": true
|
|
820
874
|
},
|
|
875
|
+
{
|
|
876
|
+
"path": ".github/workflows/dev-qualification-patrol.yml",
|
|
877
|
+
"signals": [
|
|
878
|
+
"write-permission"
|
|
879
|
+
],
|
|
880
|
+
"classified": true
|
|
881
|
+
},
|
|
821
882
|
{
|
|
822
883
|
"path": ".github/workflows/github-artifact-attestation.yml",
|
|
823
884
|
"signals": [
|
|
@@ -958,5 +1019,5 @@
|
|
|
958
1019
|
"classified": false
|
|
959
1020
|
}
|
|
960
1021
|
],
|
|
961
|
-
"registryDigest": "
|
|
1022
|
+
"registryDigest": "bb343f7253b9497e1c9aee3cea170dd5f33fd5e807ea1de805a0fdda5a904bcc"
|
|
962
1023
|
}
|
|
@@ -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-03T09:35:55.854Z",
|
|
5
|
+
"publishedAt": "2026-08-03T09:35:55.854Z",
|
|
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": "88a8b532ce69ee3def5926a42c9cd75e4809ae88",
|
|
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.
|
|
35
|
+
"version": "3.0.6-alpha.1",
|
|
36
36
|
"versionSource": "package.json#version"
|
|
37
37
|
},
|
|
38
38
|
"sourceKind": "package-site-bundle",
|
|
@@ -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-03T09:35:55.854Z",
|
|
5
|
+
"publishedAt": "2026-08-03T09:35:55.854Z",
|
|
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": "88a8b532ce69ee3def5926a42c9cd75e4809ae88",
|
|
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.
|
|
40
|
+
"version": "3.0.6-alpha.1",
|
|
41
41
|
"versionSource": "package.json#version"
|
|
42
42
|
},
|
|
43
43
|
"entrypoint": "buildchain-site.json",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"path": "docs/MAP.md",
|
|
54
54
|
"plane": "use",
|
|
55
55
|
"exists": true,
|
|
56
|
-
"digest": "sha256:
|
|
56
|
+
"digest": "sha256:0ea7f59030e5a087e3ff7e9eb591fec8d92c64399799e554aa1fa7ecb6a263ae"
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
"id": "getting-started",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"path": "docs/auditable-demo.md",
|
|
70
70
|
"plane": "verify",
|
|
71
71
|
"exists": true,
|
|
72
|
-
"digest": "sha256:
|
|
72
|
+
"digest": "sha256:7e1426d8200bd4e7a7e6684c872f47075cd37d0bddbb262ea3263eaad846b540"
|
|
73
73
|
},
|
|
74
74
|
{
|
|
75
75
|
"id": "install",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"path": "docs/release-propagation.md",
|
|
134
134
|
"plane": "use",
|
|
135
135
|
"exists": true,
|
|
136
|
-
"digest": "sha256:
|
|
136
|
+
"digest": "sha256:6e8417ff70db290ee6197f064ed9b7a7da3770738509fac06161dad05b3fca7f"
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
139
|
"id": "readme-badges",
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"path": "docs/cli-reference.md",
|
|
230
230
|
"plane": "use",
|
|
231
231
|
"exists": true,
|
|
232
|
-
"digest": "sha256:
|
|
232
|
+
"digest": "sha256:73d34a3b46ecfb772b806f0d79754772446fcc13d7f349b508a0c0212e97fcec"
|
|
233
233
|
},
|
|
234
234
|
{
|
|
235
235
|
"id": "node-api-reference",
|
|
@@ -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:ae49a589091d1ab91d29f2d6ac52cf2551a9d0b1f78350965b408f40fd219e29"
|
|
241
241
|
},
|
|
242
242
|
{
|
|
243
243
|
"id": "build-facts",
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
"path": "docs/reusable-build-surface.md",
|
|
278
278
|
"plane": "use",
|
|
279
279
|
"exists": true,
|
|
280
|
-
"digest": "sha256:
|
|
280
|
+
"digest": "sha256:fe06637d604101269b013163be558c1ecc842276e27f2b5abfb6eea39e98feb0"
|
|
281
281
|
},
|
|
282
282
|
{
|
|
283
283
|
"id": "publish-transaction",
|
|
@@ -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:3a9ef099d5d93d9b558c7b6a0aa4403dfcce1479ce5d6fc36ecb3e34cdd5bb6d"
|
|
289
289
|
},
|
|
290
290
|
{
|
|
291
291
|
"id": "release-governance",
|
|
@@ -293,7 +293,7 @@
|
|
|
293
293
|
"path": "docs/release-governance.md",
|
|
294
294
|
"plane": "why",
|
|
295
295
|
"exists": true,
|
|
296
|
-
"digest": "sha256:
|
|
296
|
+
"digest": "sha256:fc7f0add1afce775c327d50a1e269a7040865e65ca2441dbeb8d0373c5f8d5aa"
|
|
297
297
|
},
|
|
298
298
|
{
|
|
299
299
|
"id": "release-flow",
|
|
@@ -301,7 +301,7 @@
|
|
|
301
301
|
"path": "docs/release-flow.md",
|
|
302
302
|
"plane": "verify",
|
|
303
303
|
"exists": true,
|
|
304
|
-
"digest": "sha256:
|
|
304
|
+
"digest": "sha256:dc54b8a264489341984ca6157b07d1956e934366f937b7412a21df7f025d2d8d"
|
|
305
305
|
},
|
|
306
306
|
{
|
|
307
307
|
"id": "runtime-train-validation",
|