@kungfu-tech/buildchain 3.0.2 → 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.
Files changed (127) hide show
  1. package/AGENTS.md +1 -1
  2. package/CONTRIBUTING.md +1 -1
  3. package/README.md +27 -1
  4. package/actions/promote-buildchain-ref/README.md +90 -19
  5. package/actions/report-buildchain-issue/README.md +20 -2
  6. package/actions/run-lifecycle/README.md +5 -0
  7. package/actions/validate-config/README.md +19 -1
  8. package/bin/buildchain.mjs +56 -2
  9. package/bin/internal/command-registry.mjs +82 -0
  10. package/bin/internal/trust-release-cli.mjs +1 -0
  11. package/contracts/auditable-demo-media-profiles-v1.json +116 -1
  12. package/contracts/buildchain-v2-residuals-v1.json +146 -0
  13. package/contracts/evidence/auditable-demo-responsive-web-delivery-v1.json +143 -0
  14. package/contracts/evidence/auditable-demo-web-delivery-v1.json +7 -3
  15. package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/complete-transcript.txt +2 -0
  16. package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/public-projection.json +16 -0
  17. package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/scene.json +12 -0
  18. package/dist/site/buildchain-contract.json +188 -46
  19. package/dist/site/buildchain-site.json +181 -90
  20. package/dist/site/capability-registry.json +5 -5
  21. package/dist/site/cli-registry.json +860 -98
  22. package/dist/site/controller-registry.json +118 -5
  23. package/dist/site/kfd-claims.json +233 -19
  24. package/dist/site/kfd-upstream-aggregate.json +1 -1
  25. package/dist/site/manual-registry.json +20 -20
  26. package/dist/site/node-api-registry.json +374 -59
  27. package/dist/site/page-registry.json +156 -65
  28. package/dist/site/public-surface-audit.json +231 -22
  29. package/dist/site/publication-registry.json +4 -4
  30. package/dist/site/release-provenance.json +3 -0
  31. package/dist/site/site-manifest.json +24 -24
  32. package/dist/site/workflow-registry.json +575 -79
  33. package/docs/MAP.md +22 -4
  34. package/docs/auditable-demo.md +54 -13
  35. package/docs/aws-us-elastic-runner-burst-plane.md +381 -0
  36. package/docs/cli.md +119 -12
  37. package/docs/consumer-issue-reporting.md +20 -2
  38. package/docs/dev-alpha-candidate-patrol.md +24 -10
  39. package/docs/github-governance-authority.md +24 -31
  40. package/docs/lifecycle-protocol.md +20 -2
  41. package/docs/migration-inventory.md +24 -5
  42. package/docs/observed-evidence-patrol.md +28 -12
  43. package/docs/ownership.md +19 -1
  44. package/docs/publication-artifacts.md +158 -18
  45. package/docs/publication-authority.md +4 -4
  46. package/docs/publish-transaction.md +78 -31
  47. package/docs/release-candidate.md +24 -0
  48. package/docs/release-flow.md +50 -32
  49. package/docs/release-governance.md +39 -32
  50. package/docs/release-passport.md +4 -0
  51. package/docs/release-propagation.md +57 -12
  52. package/docs/reusable-build-surface.md +218 -90
  53. package/docs/runtime-train-validation.md +20 -2
  54. package/docs/shifu-gate-profiles.md +7 -1
  55. package/docs/stable-candidate-patrol.md +6 -6
  56. package/docs/toolkit-observability.md +22 -0
  57. package/docs/versioning.md +46 -24
  58. package/docs/web-surface-deployments.md +82 -1
  59. package/package.json +7 -5
  60. package/packages/core/README.md +60 -4
  61. package/packages/core/artifact-signing.js +1 -0
  62. package/packages/core/buildchain-contract.js +9 -4
  63. package/packages/core/cache-evidence.js +1 -0
  64. package/packages/core/controller-evidence.js +2 -0
  65. package/packages/core/diagnostics.js +105 -30
  66. package/packages/core/github-governance-authority.js +25 -17
  67. package/packages/core/index.js +40 -0
  68. package/packages/core/paper.js +3226 -0
  69. package/packages/core/public-surface-audit.js +3 -0
  70. package/packages/core/publication-artifact.js +1 -6
  71. package/packages/core/publication-authority.js +1 -0
  72. package/packages/core/publication-control-plane-audit.js +28 -0
  73. package/packages/core/publication-reproducibility.js +947 -0
  74. package/packages/core/publication-sealed-bundle.js +190 -0
  75. package/packages/core/publish-transaction.js +147 -17
  76. package/packages/core/release-candidate.js +234 -0
  77. package/packages/core/release-passport.js +519 -228
  78. package/packages/core/release-propagation.js +175 -1
  79. package/packages/core/stable-release-gate.js +4 -1
  80. package/scripts/artifact-signing-delegation.mjs +268 -0
  81. package/scripts/audit-github-governance.mjs +32 -13
  82. package/scripts/audit-publication-control-plane.mjs +17 -8
  83. package/scripts/auditable-demo.mjs +266 -7
  84. package/scripts/aws-codebuild-toolchain.mjs +285 -0
  85. package/scripts/aws-macos-jit-core.mjs +378 -0
  86. package/scripts/aws-macos-jit.mjs +123 -0
  87. package/scripts/aws-runner-burst-core.mjs +248 -0
  88. package/scripts/aws-runner-burst.mjs +79 -0
  89. package/scripts/aws-windows-jit-core.mjs +374 -0
  90. package/scripts/aws-windows-jit.mjs +121 -0
  91. package/scripts/build-contract-core.mjs +69 -6
  92. package/scripts/build-standalone-binary.mjs +23 -0
  93. package/scripts/buildchain-contract-lock.mjs +1 -1
  94. package/scripts/buildchain-patrol.mjs +1 -1
  95. package/scripts/check-internal-architecture.mjs +69 -2
  96. package/scripts/check-inventory.mjs +70 -2
  97. package/scripts/check-javascript-syntax.mjs +31 -0
  98. package/scripts/check-maintainability.mjs +371 -0
  99. package/scripts/compiler-cache-evidence.mjs +221 -0
  100. package/scripts/dev-alpha-candidate-patrol.mjs +288 -43
  101. package/scripts/dispatch-artifact-signing-authority.mjs +7 -1
  102. package/scripts/finalize-native-artifact-signing-result.mjs +185 -31
  103. package/scripts/gate-profile-core.mjs +6 -1
  104. package/scripts/generate-channel-promotion-workflow.mjs +3 -12
  105. package/scripts/generate-release-candidate-passport.mjs +4 -0
  106. package/scripts/generate-site-bundle.mjs +84 -18
  107. package/scripts/import-artifact-signing-results.mjs +64 -5
  108. package/scripts/inspect-artifact-signing-requests.mjs +52 -14
  109. package/scripts/maintainability-metrics.mjs +339 -0
  110. package/scripts/npm-publish-transaction.mjs +57 -6
  111. package/scripts/observed-evidence.mjs +151 -33
  112. package/scripts/paper.mjs +645 -0
  113. package/scripts/promotion-channel-router.mjs +16 -4
  114. package/scripts/publication-reproducibility.mjs +62 -0
  115. package/scripts/reconcile-github-governance.mjs +8 -1
  116. package/scripts/release-propagation.mjs +39 -0
  117. package/scripts/resolve-artifact-signing-upload-route.mjs +55 -0
  118. package/scripts/resolve-build-contract.mjs +6 -0
  119. package/scripts/route-offline-runners.mjs +236 -0
  120. package/scripts/run-candidate-body-prefix-renderer.mjs +187 -0
  121. package/scripts/run-lifecycle-core.mjs +62 -1
  122. package/scripts/runtime-ref-core.mjs +36 -4
  123. package/scripts/seal-artifact-signing-requests.mjs +64 -12
  124. package/scripts/stable-candidate-qualification.mjs +50 -0
  125. package/scripts/verify-artifact-signing-results.mjs +26 -1
  126. package/scripts/web-surface-core.mjs +272 -86
  127. package/scripts/web-surface-production-decision.mjs +19 -3
@@ -4,7 +4,7 @@
4
4
  "product": {
5
5
  "name": "Buildchain",
6
6
  "package": "@kungfu-tech/buildchain",
7
- "version": "3.0.2",
7
+ "version": "3.0.3-alpha.1",
8
8
  "repository": "https://github.com/kungfu-systems/buildchain"
9
9
  },
10
10
  "majorLine": "v3",
@@ -26,7 +26,7 @@
26
26
  "release-candidate-artifact"
27
27
  ],
28
28
  "breakingDefaults": {
29
- "buildchainRefDefault": "workflow-shell-ref-or-v2",
29
+ "buildchainRefDefault": "workflow-shell-ref-or-v3",
30
30
  "promoteOnlyHeavyBuildPolicy": "pr-stage-only"
31
31
  },
32
32
  "optionalInputs": [
@@ -51,8 +51,8 @@
51
51
  "contract drift is checked before heavy build jobs for stable floating refs",
52
52
  "retryable GitHub fallback fetches use a bounded attempt budget before exact source SHA and tree verification"
53
53
  ],
54
- "breakingDigest": "sha256:a6a35370d6b0d0f46e1b2712dcc01961fe53c2febde95409a27a485c10a36650",
55
- "auditDigest": "sha256:5ada21e27d49afb2718bb687fa3dc17ffd1042665f3c00c18935ca4e46584fae"
54
+ "breakingDigest": "sha256:dfbedd543ae0c067982b5c8c02d98dd2f7f7df88752be97fb330da6b0ba30faa",
55
+ "auditDigest": "sha256:8d0ef9c8048a107dc6fb418d93d9a799e27bf8f94dc008cbe4001255c54004f8"
56
56
  },
57
57
  {
58
58
  "contractVersion": 1,
@@ -91,7 +91,7 @@
91
91
  "alpha and stable channel selections use separate consumer contract locks by default"
92
92
  ],
93
93
  "breakingDigest": "sha256:c4597dfa89e1a58f1023905092b849644f5c080abf150aeba9c7e1cd5ed43962",
94
- "auditDigest": "sha256:6f7a097f70558ddff5867e3aaf6be0a0a56eb1838232eebe3ec6e7d071591746"
94
+ "auditDigest": "sha256:752ef03f5cbfb4a74e21081a8a09d2e292c255af25776eb1d20b317317608425"
95
95
  },
96
96
  {
97
97
  "contractVersion": 1,
@@ -131,6 +131,8 @@
131
131
  "release-passport-kfd-3-artifact-verify-command",
132
132
  "release-passport-invariant-passport-jsons",
133
133
  "release-passport-invariant-passport-command",
134
+ "release-passport-evidence-jsons",
135
+ "release-passport-attachment-command",
134
136
  "github-artifact-attestation-policy-json",
135
137
  "github-artifact-attestation-environment",
136
138
  "github-artifact-attestation-retention-days",
@@ -175,7 +177,7 @@
175
177
  "GitHub Release passport and evidence publication is delegated to promote-buildchain-ref after the semver release transaction completes"
176
178
  ],
177
179
  "breakingDigest": "sha256:acd401cfc46450115a3763fd4b679d85f185e8757ebd52510d6262e1533df4cf",
178
- "auditDigest": "sha256:68f3ad7a1d880a26be48263d9d1d12c38ff89beb08e4f744509b1ca196a889c9"
180
+ "auditDigest": "sha256:96a41b4a1d03b01e5fe3d25d0d13df32880a24586a1efeeeeb754eeb0d96e1cd"
179
181
  },
180
182
  {
181
183
  "contractVersion": 1,
@@ -217,7 +219,7 @@
217
219
  "promotion reuses PR-stage release-candidate artifacts and does not run the heavy native build matrix"
218
220
  ],
219
221
  "breakingDigest": "sha256:aa30f22e3af0a89841310bdbdc900844dd95a66974db173fa140a71bbd7e82c0",
220
- "auditDigest": "sha256:54bf2db92237cad97da1dc740780330e6175b97352523db732c8650560f1a9fd"
222
+ "auditDigest": "sha256:83074ab14eaa59d14b411740668c77298da824bcf801c99aaa33d97ec6c8232d"
221
223
  },
222
224
  {
223
225
  "contractVersion": 1,
@@ -235,7 +237,7 @@
235
237
  "web-surface-manifest-json"
236
238
  ],
237
239
  "breakingDefaults": {
238
- "buildchainRefDefault": "workflow-shell-ref-or-v2",
240
+ "buildchainRefDefault": "workflow-shell-ref-or-v3",
239
241
  "contractCompatibilityPolicy": "major-compatible",
240
242
  "breakingDriftPolicy": "fail-closed-before-build"
241
243
  },
@@ -260,8 +262,8 @@
260
262
  "effective channel and preview alias are injected before caller build and verify commands",
261
263
  "channel-aware artifact host facts are checked against the deploy plan before adapter side effects"
262
264
  ],
263
- "breakingDigest": "sha256:da569f90374e878948e3d5160ed9929338ce0572473ca8ee54867b0fe1aaeace",
264
- "auditDigest": "sha256:6277559c749bcc9ae6c737b068b44c478e796377273acc9fc22ab9804be409d1"
265
+ "breakingDigest": "sha256:27f0cb9c7d97288850d215be8696b323471c41fd1cdf3a2ff3ebf21f62541960",
266
+ "auditDigest": "sha256:b54c067c31c4c76da44d63fff8945229f7afab262f9fc9131915abeadca56e4f"
265
267
  },
266
268
  {
267
269
  "contractVersion": 1,
@@ -319,7 +321,7 @@
319
321
  "media qualification does not claim browser playback, responsive layout, reduced-motion behavior, accessibility, or production deployment"
320
322
  ],
321
323
  "breakingDigest": "sha256:425f8d3d1ba205dd6fe35a20f1dc6dad7d7c563872283e3af79fea4d5c475692",
322
- "auditDigest": "sha256:d043897d3d2bd242a83a362fccac408b4bd38e1e2fb50e7cae6a2145a6c0bd51"
324
+ "auditDigest": "sha256:38353cc5dc5520e6de84e387abafc6086a4b236e18be6521b00d43ad651582e4"
323
325
  },
324
326
  {
325
327
  "contractVersion": 1,
@@ -353,6 +355,8 @@
353
355
  "release-passport-kfd-3-artifact-verify-command",
354
356
  "release-passport-invariant-passport-jsons",
355
357
  "release-passport-invariant-passport-command",
358
+ "release-passport-evidence-jsons",
359
+ "release-passport-attachment-command",
356
360
  "release-passport-github-artifact-attestation-policy-jsons",
357
361
  "github-release",
358
362
  "github-release-title",
@@ -391,7 +395,7 @@
391
395
  "sha256:a59f0910e6df842e7699139472e5dd69ac2fdd7f7213bf2cb346d1d622556874"
392
396
  ],
393
397
  "breakingDigest": "sha256:6147c0a8d5c36bfaa6021871574e1fc28192a3f1b8cfdae4d24ef3059ac1ebda",
394
- "auditDigest": "sha256:d1a4803f908b87c66ab6e9a5dca935366192fbda0bd6c23d784c9e037afb89be"
398
+ "auditDigest": "sha256:aa8231b2ba3574663f4a03882fdccecd792e04979bd9a52adac6b558c8a10081"
395
399
  },
396
400
  {
397
401
  "contractVersion": 1,
@@ -447,7 +451,7 @@
447
451
  "temporary keychain and API key material are cleaned in both main and post phases"
448
452
  ],
449
453
  "breakingDigest": "sha256:61866985864205770c70cbe14c3c60f479512a32c0b007b5fd6d8d65132ff8be",
450
- "auditDigest": "sha256:efbc4a3641ab7e7137da5a197f5a9414c40a070bf75c6bf9fcb98ddcbf621e73"
454
+ "auditDigest": "sha256:60c44e35de1788c4c4c2529cb491914054df0b604539758e230ff31ad6dfdab2"
451
455
  },
452
456
  {
453
457
  "contractVersion": 1,
@@ -506,7 +510,7 @@
506
510
  "release-state SHA is recorded as a durable audit entrance"
507
511
  ],
508
512
  "breakingDigest": "sha256:b627e1b2ece9b6049517a942c5139e342e6077cdd3d8962d61cef8481b1f70ad",
509
- "auditDigest": "sha256:aad90c2b39ce3fd7d2d4df5833f388c3090f5eeaecfd97d03276d375eed9459b"
513
+ "auditDigest": "sha256:f177e3a60a1463db9a83b04a00f5cf0a015d68281da0d545245760856f6dfaf0"
510
514
  },
511
515
  {
512
516
  "contractVersion": 1,
@@ -555,7 +559,7 @@
555
559
  "prose-only public claims downgrade the release trust passport audit"
556
560
  ],
557
561
  "breakingDigest": "sha256:f0b636eb925ddbf45ff1a8872454ab7b4dd98857cac12bb75217830130e62a16",
558
- "auditDigest": "sha256:aad90c2b39ce3fd7d2d4df5833f388c3090f5eeaecfd97d03276d375eed9459b"
562
+ "auditDigest": "sha256:f177e3a60a1463db9a83b04a00f5cf0a015d68281da0d545245760856f6dfaf0"
559
563
  },
560
564
  {
561
565
  "contractVersion": 1,
@@ -615,7 +619,7 @@
615
619
  "README badge block checks and writes are generated from machine-readable repository facts"
616
620
  ],
617
621
  "breakingDigest": "sha256:90a73892b2d6c214048448d5f45df75639bdf7b7e8fefd9c596e04b087407bcc",
618
- "auditDigest": "sha256:4afc2879c3ede97d4123ec2536209b57ecb077f658a09f748e5ae088b1c92bc8"
622
+ "auditDigest": "sha256:d05fb5cd9c99ee3765b83727b96d9fea15ab166443e91744da88cabd11b214a0"
619
623
  },
620
624
  {
621
625
  "contractVersion": 1,
@@ -705,7 +709,7 @@
705
709
  "manual entries carry source file digests so downstream sites and agents can detect stale hand-written documentation"
706
710
  ],
707
711
  "breakingDigest": "sha256:7d0d2819e3a3e72989d9c57b5efe9d0bc0a79bc0f2c82a0c7b9d6c5a211a91f2",
708
- "auditDigest": "sha256:63522fa4397a62566c0f24de10d0fd91bf040c98410b5ccd1cdcf4b4d4756549"
712
+ "auditDigest": "sha256:a1b7fd11b698523b408f4395cd2fc766596cca7ec1723ea48291a509e9352f09"
709
713
  },
710
714
  {
711
715
  "contractVersion": 1,
@@ -727,7 +731,7 @@
727
731
  "agents can discover supported Node APIs without importing internal file paths"
728
732
  ],
729
733
  "breakingDigest": "sha256:48f925608d3e2131d90936b07dc2a30341204cae3e6e785c0f77d61ad755c945",
730
- "auditDigest": "sha256:4d201b7021ab28d7999f6ce88b4aacae5eb57e187d220e10a1e3e5ae5544a7d8"
734
+ "auditDigest": "sha256:74658c9b6795f7ba88421e13e1ddfdd3e25884b35d680a5b8ba1cf699f09c2a4"
731
735
  },
732
736
  {
733
737
  "contractVersion": 1,
@@ -778,7 +782,7 @@
778
782
  "controllerDescriptor": {
779
783
  "contract": "buildchain.controller-descriptor/v1",
780
784
  "digest": "sha256:373723a73d188194d389dee04c394d3b79cb0c016a370f2f5d0f60979a02ed48",
781
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
785
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
782
786
  "inputClassifications": {
783
787
  "buildchain-ref": {
784
788
  "classification": "included",
@@ -817,7 +821,7 @@
817
821
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
818
822
  ],
819
823
  "breakingDigest": "sha256:d4bd0f2a1921bfed71a4d9104d45934555bde74a5c189f93ad79f37074c02b87",
820
- "auditDigest": "sha256:aa1727de29ad42d50ccc6e6cb8923a7b532da0f6ce6e53372d63801a120de65e"
824
+ "auditDigest": "sha256:bb008ca3b34f02ad6ee7596eefd596d181d4f50b634c00aa80137c9e4e8da11c"
821
825
  },
822
826
  {
823
827
  "contractVersion": 1,
@@ -842,12 +846,14 @@
842
846
  "resolve-runtime",
843
847
  "resolve-source",
844
848
  "build",
849
+ "signing-finalization",
845
850
  "verify",
846
851
  "aggregate"
847
852
  ],
848
853
  "capabilities": [
849
854
  "source-lock",
850
855
  "lifecycle-build",
856
+ "artifact-signing-finalization",
851
857
  "credential-island",
852
858
  "lifecycle-verify",
853
859
  "artifact-admission"
@@ -869,6 +875,7 @@
869
875
  "BUILDCHAIN_MACOS_NOTARY_API_KEY_ID",
870
876
  "BUILDCHAIN_MACOS_NOTARY_API_KEY_P8_BASE64",
871
877
  "BUILDCHAIN_PROMOTION_TOKEN",
878
+ "artifact-compression-level",
872
879
  "artifact-name",
873
880
  "artifact-name-template",
874
881
  "artifact-paths",
@@ -880,7 +887,11 @@
880
887
  "artifact-relay-s3-role-arn",
881
888
  "artifact-relay-s3-upload-role-arn",
882
889
  "artifact-retention-days",
890
+ "artifact-signing-request-upload-no-proxy",
883
891
  "artifact-transfer-mode",
892
+ "aws-codebuild-project",
893
+ "aws-ec2-macos-runner-label",
894
+ "aws-ec2-windows-runner-label",
884
895
  "build-command",
885
896
  "buildchain-contract-compatibility-policy",
886
897
  "buildchain-contract-drift-issue-mode",
@@ -898,6 +909,9 @@
898
909
  "checkout-cache-mode",
899
910
  "checkout-cache-reference-repository-template",
900
911
  "checkout-cache-timeout-seconds",
912
+ "compiler-cache-platforms-json",
913
+ "compiler-cache-provider",
914
+ "compiler-cache-required",
901
915
  "control-runner-json",
902
916
  "credential-island-caller-owned",
903
917
  "credential-island-environment",
@@ -924,6 +938,7 @@
924
938
  "publish-registry",
925
939
  "publish-source-ref",
926
940
  "release-candidate",
941
+ "release-candidate-family-evidence-json",
927
942
  "requested-parallelism",
928
943
  "require-build",
929
944
  "require-install",
@@ -934,6 +949,7 @@
934
949
  "rustup-dist-server",
935
950
  "rustup-update-root",
936
951
  "sample-process-tree",
952
+ "self-hosted-offline-fallback",
937
953
  "setup-node",
938
954
  "setup-rust",
939
955
  "shifu-cache-profile-digest",
@@ -944,8 +960,8 @@
944
960
  ],
945
961
  "controllerDescriptor": {
946
962
  "contract": "buildchain.controller-descriptor/v1",
947
- "digest": "sha256:146718143cc50e48ac57154aade4a4b06a8df4e036708a150233098d3c1cb6f7",
948
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
963
+ "digest": "sha256:2e4c9e9af2162de2333c9b57bffcff77a76e9ed384b9f001ab8ef63d527197f9",
964
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
949
965
  "inputClassifications": {
950
966
  "BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN": {
951
967
  "classification": "redacted",
@@ -983,6 +999,10 @@
983
999
  "classification": "redacted",
984
1000
  "source": "workflow-call-secret"
985
1001
  },
1002
+ "artifact-compression-level": {
1003
+ "classification": "included",
1004
+ "source": "workflow-call-input"
1005
+ },
986
1006
  "artifact-name": {
987
1007
  "classification": "included",
988
1008
  "source": "workflow-call-input"
@@ -1027,10 +1047,26 @@
1027
1047
  "classification": "included",
1028
1048
  "source": "workflow-call-input"
1029
1049
  },
1050
+ "artifact-signing-request-upload-no-proxy": {
1051
+ "classification": "included",
1052
+ "source": "workflow-call-input"
1053
+ },
1030
1054
  "artifact-transfer-mode": {
1031
1055
  "classification": "included",
1032
1056
  "source": "workflow-call-input"
1033
1057
  },
1058
+ "aws-codebuild-project": {
1059
+ "classification": "included",
1060
+ "source": "workflow-call-input"
1061
+ },
1062
+ "aws-ec2-macos-runner-label": {
1063
+ "classification": "digest-only",
1064
+ "source": "workflow-call-input"
1065
+ },
1066
+ "aws-ec2-windows-runner-label": {
1067
+ "classification": "digest-only",
1068
+ "source": "workflow-call-input"
1069
+ },
1034
1070
  "build-command": {
1035
1071
  "classification": "digest-only",
1036
1072
  "source": "workflow-call-input"
@@ -1099,6 +1135,18 @@
1099
1135
  "classification": "digest-only",
1100
1136
  "source": "workflow-call-input"
1101
1137
  },
1138
+ "compiler-cache-platforms-json": {
1139
+ "classification": "digest-only",
1140
+ "source": "workflow-call-input"
1141
+ },
1142
+ "compiler-cache-provider": {
1143
+ "classification": "included",
1144
+ "source": "workflow-call-input"
1145
+ },
1146
+ "compiler-cache-required": {
1147
+ "classification": "included",
1148
+ "source": "workflow-call-input"
1149
+ },
1102
1150
  "control-runner-json": {
1103
1151
  "classification": "digest-only",
1104
1152
  "source": "workflow-call-input"
@@ -1203,6 +1251,10 @@
1203
1251
  "classification": "included",
1204
1252
  "source": "workflow-call-input"
1205
1253
  },
1254
+ "release-candidate-family-evidence-json": {
1255
+ "classification": "digest-only",
1256
+ "source": "workflow-call-input"
1257
+ },
1206
1258
  "requested-parallelism": {
1207
1259
  "classification": "included",
1208
1260
  "source": "workflow-call-input"
@@ -1243,6 +1295,10 @@
1243
1295
  "classification": "included",
1244
1296
  "source": "workflow-call-input"
1245
1297
  },
1298
+ "self-hosted-offline-fallback": {
1299
+ "classification": "included",
1300
+ "source": "workflow-call-input"
1301
+ },
1246
1302
  "setup-node": {
1247
1303
  "classification": "included",
1248
1304
  "source": "workflow-call-input"
@@ -1274,7 +1330,8 @@
1274
1330
  }
1275
1331
  },
1276
1332
  "compatibleBreakingDigests": [
1277
- "sha256:e264a79f9f399038c2fcfd21e4168c68c2e1485ee5c651c02242a02b622ac2be"
1333
+ "sha256:e264a79f9f399038c2fcfd21e4168c68c2e1485ee5c651c02242a02b622ac2be",
1334
+ "sha256:30745921541e9b0f70475bb2178c2559f6aef248f6680670ccd44d8c5a69a6b1"
1278
1335
  ],
1279
1336
  "guarantees": [
1280
1337
  "plans bind exact consumer source SHA, exact Buildchain runtime SHA, and the runtime contract digest",
@@ -1282,8 +1339,8 @@
1282
1339
  "redacted input values are never serialized and digest-only input values are never emitted in plaintext",
1283
1340
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
1284
1341
  ],
1285
- "breakingDigest": "sha256:30745921541e9b0f70475bb2178c2559f6aef248f6680670ccd44d8c5a69a6b1",
1286
- "auditDigest": "sha256:5ada21e27d49afb2718bb687fa3dc17ffd1042665f3c00c18935ca4e46584fae"
1342
+ "breakingDigest": "sha256:6b8d38e92b2c67b5bc83fae0a3fd95bfa47582fbc176e6cdeebe7630a57534cb",
1343
+ "auditDigest": "sha256:8d0ef9c8048a107dc6fb418d93d9a799e27bf8f94dc008cbe4001255c54004f8"
1287
1344
  },
1288
1345
  {
1289
1346
  "contractVersion": 1,
@@ -1330,6 +1387,7 @@
1330
1387
  "BUILDCHAIN_MACOS_NOTARY_API_KEY_ID",
1331
1388
  "BUILDCHAIN_MACOS_NOTARY_API_KEY_P8_BASE64",
1332
1389
  "BUILDCHAIN_PROMOTION_TOKEN",
1390
+ "artifact-compression-level",
1333
1391
  "artifact-name",
1334
1392
  "artifact-name-template",
1335
1393
  "artifact-paths",
@@ -1341,7 +1399,11 @@
1341
1399
  "artifact-relay-s3-role-arn",
1342
1400
  "artifact-relay-s3-upload-role-arn",
1343
1401
  "artifact-retention-days",
1402
+ "artifact-signing-request-upload-no-proxy",
1344
1403
  "artifact-transfer-mode",
1404
+ "aws-codebuild-project",
1405
+ "aws-ec2-macos-runner-label",
1406
+ "aws-ec2-windows-runner-label",
1345
1407
  "build-command",
1346
1408
  "buildchain-alpha-contract-lock-path",
1347
1409
  "buildchain-channel",
@@ -1362,6 +1424,9 @@
1362
1424
  "checkout-cache-mode",
1363
1425
  "checkout-cache-reference-repository-template",
1364
1426
  "checkout-cache-timeout-seconds",
1427
+ "compiler-cache-platforms-json",
1428
+ "compiler-cache-provider",
1429
+ "compiler-cache-required",
1365
1430
  "control-runner-json",
1366
1431
  "credential-island-caller-owned",
1367
1432
  "credential-island-environment",
@@ -1388,6 +1453,7 @@
1388
1453
  "publish-registry",
1389
1454
  "publish-source-ref",
1390
1455
  "release-candidate",
1456
+ "release-candidate-family-evidence-json",
1391
1457
  "requested-parallelism",
1392
1458
  "require-build",
1393
1459
  "require-install",
@@ -1398,6 +1464,7 @@
1398
1464
  "rustup-dist-server",
1399
1465
  "rustup-update-root",
1400
1466
  "sample-process-tree",
1467
+ "self-hosted-offline-fallback",
1401
1468
  "setup-node",
1402
1469
  "setup-rust",
1403
1470
  "shifu-cache-profile-digest",
@@ -1408,8 +1475,8 @@
1408
1475
  ],
1409
1476
  "controllerDescriptor": {
1410
1477
  "contract": "buildchain.controller-descriptor/v1",
1411
- "digest": "sha256:55b3189412e7da7769a8de60bd1ba4cf52d726d8b79c0a720598e49742aa72a0",
1412
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
1478
+ "digest": "sha256:105eed3eb8f772d4ed93d43e7da404d849b92eafab1b461c7a9b7cb94a8a6b3b",
1479
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
1413
1480
  "inputClassifications": {
1414
1481
  "BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN": {
1415
1482
  "classification": "redacted",
@@ -1447,6 +1514,10 @@
1447
1514
  "classification": "redacted",
1448
1515
  "source": "workflow-call-secret"
1449
1516
  },
1517
+ "artifact-compression-level": {
1518
+ "classification": "included",
1519
+ "source": "workflow-call-input"
1520
+ },
1450
1521
  "artifact-name": {
1451
1522
  "classification": "included",
1452
1523
  "source": "workflow-call-input"
@@ -1491,10 +1562,26 @@
1491
1562
  "classification": "included",
1492
1563
  "source": "workflow-call-input"
1493
1564
  },
1565
+ "artifact-signing-request-upload-no-proxy": {
1566
+ "classification": "included",
1567
+ "source": "workflow-call-input"
1568
+ },
1494
1569
  "artifact-transfer-mode": {
1495
1570
  "classification": "included",
1496
1571
  "source": "workflow-call-input"
1497
1572
  },
1573
+ "aws-codebuild-project": {
1574
+ "classification": "included",
1575
+ "source": "workflow-call-input"
1576
+ },
1577
+ "aws-ec2-macos-runner-label": {
1578
+ "classification": "digest-only",
1579
+ "source": "workflow-call-input"
1580
+ },
1581
+ "aws-ec2-windows-runner-label": {
1582
+ "classification": "digest-only",
1583
+ "source": "workflow-call-input"
1584
+ },
1498
1585
  "build-command": {
1499
1586
  "classification": "digest-only",
1500
1587
  "source": "workflow-call-input"
@@ -1575,6 +1662,18 @@
1575
1662
  "classification": "digest-only",
1576
1663
  "source": "workflow-call-input"
1577
1664
  },
1665
+ "compiler-cache-platforms-json": {
1666
+ "classification": "digest-only",
1667
+ "source": "workflow-call-input"
1668
+ },
1669
+ "compiler-cache-provider": {
1670
+ "classification": "included",
1671
+ "source": "workflow-call-input"
1672
+ },
1673
+ "compiler-cache-required": {
1674
+ "classification": "included",
1675
+ "source": "workflow-call-input"
1676
+ },
1578
1677
  "control-runner-json": {
1579
1678
  "classification": "digest-only",
1580
1679
  "source": "workflow-call-input"
@@ -1679,6 +1778,10 @@
1679
1778
  "classification": "included",
1680
1779
  "source": "workflow-call-input"
1681
1780
  },
1781
+ "release-candidate-family-evidence-json": {
1782
+ "classification": "digest-only",
1783
+ "source": "workflow-call-input"
1784
+ },
1682
1785
  "requested-parallelism": {
1683
1786
  "classification": "included",
1684
1787
  "source": "workflow-call-input"
@@ -1719,6 +1822,10 @@
1719
1822
  "classification": "included",
1720
1823
  "source": "workflow-call-input"
1721
1824
  },
1825
+ "self-hosted-offline-fallback": {
1826
+ "classification": "included",
1827
+ "source": "workflow-call-input"
1828
+ },
1722
1829
  "setup-node": {
1723
1830
  "classification": "included",
1724
1831
  "source": "workflow-call-input"
@@ -1756,7 +1863,7 @@
1756
1863
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
1757
1864
  ],
1758
1865
  "breakingDigest": "sha256:d40dd05d7e07473d4b2dc1b62fbb0ed6f06449b4d3a7c44a2e8014313e3c0273",
1759
- "auditDigest": "sha256:6f7a097f70558ddff5867e3aaf6be0a0a56eb1838232eebe3ec6e7d071591746"
1866
+ "auditDigest": "sha256:752ef03f5cbfb4a74e21081a8a09d2e292c255af25776eb1d20b317317608425"
1760
1867
  },
1761
1868
  {
1762
1869
  "contractVersion": 1,
@@ -1826,7 +1933,7 @@
1826
1933
  "controllerDescriptor": {
1827
1934
  "contract": "buildchain.controller-descriptor/v1",
1828
1935
  "digest": "sha256:8e42956a2c10fa109500e72b97994f06b3d22a19cc63a46f66410b2e81706e9d",
1829
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
1936
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
1830
1937
  "inputClassifications": {
1831
1938
  "artifact-name": {
1832
1939
  "classification": "included",
@@ -1957,7 +2064,7 @@
1957
2064
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
1958
2065
  ],
1959
2066
  "breakingDigest": "sha256:5f1868478b7ccd9fb79aea76bc771289d2ca6bd2dccd1abf57575426f1eae5fb",
1960
- "auditDigest": "sha256:7b4b93c66fbe4bc0933a3e2514d1d07c5955a4c088286a2172f20af9fe00375b"
2067
+ "auditDigest": "sha256:b1da0c381cfa2d9ed8d39857b2ef12b1652f9c6be43e76a6944122de9b3f7481"
1961
2068
  },
1962
2069
  {
1963
2070
  "contractVersion": 1,
@@ -2043,7 +2150,7 @@
2043
2150
  "controllerDescriptor": {
2044
2151
  "contract": "buildchain.controller-descriptor/v1",
2045
2152
  "digest": "sha256:c5274b37f04d0054559fdc8698c51bd0f0d8ae470baf163e9caa7699aa970575",
2046
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
2153
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
2047
2154
  "inputClassifications": {
2048
2155
  "artifact-path": {
2049
2156
  "classification": "digest-only",
@@ -2222,7 +2329,7 @@
2222
2329
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
2223
2330
  ],
2224
2331
  "breakingDigest": "sha256:f14825324a16b51c2e9ed708ebe64e1932e05b6d5e0866f83aea8439decb4a27",
2225
- "auditDigest": "sha256:6277559c749bcc9ae6c737b068b44c478e796377273acc9fc22ab9804be409d1"
2332
+ "auditDigest": "sha256:b54c067c31c4c76da44d63fff8945229f7afab262f9fc9131915abeadca56e4f"
2226
2333
  },
2227
2334
  {
2228
2335
  "contractVersion": 1,
@@ -2287,7 +2394,7 @@
2287
2394
  "controllerDescriptor": {
2288
2395
  "contract": "buildchain.controller-descriptor/v1",
2289
2396
  "digest": "sha256:6b132790b9798e8a5dfbe095701d8e024c160a08bc7c4bd477ee79feef7a9cfd",
2290
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
2397
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
2291
2398
  "inputClassifications": {
2292
2399
  "artifact-name": {
2293
2400
  "classification": "included",
@@ -2382,7 +2489,7 @@
2382
2489
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
2383
2490
  ],
2384
2491
  "breakingDigest": "sha256:3f76502666069c2727d23efcfdb08fb80f89ced1955a69e29f11525ae88aca1d",
2385
- "auditDigest": "sha256:f83405748e500d31a237240438f7f410c1bb2b4ef39ab7323131fa54f38c1a59"
2492
+ "auditDigest": "sha256:2cf66d8c40760900284c8417622b11120602a29016a55347a2ee709aafe4b3d5"
2386
2493
  },
2387
2494
  {
2388
2495
  "contractVersion": 1,
@@ -2469,7 +2576,7 @@
2469
2576
  "controllerDescriptor": {
2470
2577
  "contract": "buildchain.controller-descriptor/v1",
2471
2578
  "digest": "sha256:6d71409659fbf8543c7e520b0c493d8afe86bdf60286b860bb917f0041ebc173",
2472
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
2579
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
2473
2580
  "inputClassifications": {
2474
2581
  "artifact-name": {
2475
2582
  "classification": "included",
@@ -2632,7 +2739,7 @@
2632
2739
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
2633
2740
  ],
2634
2741
  "breakingDigest": "sha256:0eb318df455ef9cb737a7c2515a2411b685d34ed0bde7b5f5b173a7a42513114",
2635
- "auditDigest": "sha256:fd939f9dcce745f3e1b8063b68715460cb8e1af6d2b813a96b37a741740122b9"
2742
+ "auditDigest": "sha256:7467fb0651dae2f5463f8dd07e3c28690f7a2aa63b9560810f8e3e0f4a49a970"
2636
2743
  },
2637
2744
  {
2638
2745
  "contractVersion": 1,
@@ -2749,11 +2856,17 @@
2749
2856
  "publish-transaction-override",
2750
2857
  "release-activation-command",
2751
2858
  "release-activation-receipt-set-path",
2859
+ "release-candidate-family-assignment-id",
2860
+ "release-candidate-family-evidence-required",
2861
+ "release-candidate-family-evidence-root",
2862
+ "release-candidate-family-initiative-id",
2752
2863
  "release-candidate-workflow-file",
2753
2864
  "release-candidate-workflow-name",
2754
2865
  "release-passport",
2866
+ "release-passport-attachment-command",
2755
2867
  "release-passport-buildchain-self-kfd",
2756
2868
  "release-passport-evidence-command",
2869
+ "release-passport-evidence-jsons",
2757
2870
  "release-passport-evidence-path",
2758
2871
  "release-passport-impact-json",
2759
2872
  "release-passport-invariant-passport-command",
@@ -2778,8 +2891,8 @@
2778
2891
  ],
2779
2892
  "controllerDescriptor": {
2780
2893
  "contract": "buildchain.controller-descriptor/v1",
2781
- "digest": "sha256:00baae93d9ed75129fdaed6fcc33285e515b8c7de84816831a39e660941dd7ae",
2782
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
2894
+ "digest": "sha256:f54bccee97644d190b450e4ed810b516af64ed5d265ea76cd541a11cbbd51cdb",
2895
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
2783
2896
  "inputClassifications": {
2784
2897
  "BUILDCHAIN_ISSUE_APP_ID": {
2785
2898
  "classification": "redacted",
@@ -3069,6 +3182,22 @@
3069
3182
  "classification": "digest-only",
3070
3183
  "source": "workflow-call-input"
3071
3184
  },
3185
+ "release-candidate-family-assignment-id": {
3186
+ "classification": "included",
3187
+ "source": "workflow-call-input"
3188
+ },
3189
+ "release-candidate-family-evidence-required": {
3190
+ "classification": "included",
3191
+ "source": "workflow-call-input"
3192
+ },
3193
+ "release-candidate-family-evidence-root": {
3194
+ "classification": "included",
3195
+ "source": "workflow-call-input"
3196
+ },
3197
+ "release-candidate-family-initiative-id": {
3198
+ "classification": "included",
3199
+ "source": "workflow-call-input"
3200
+ },
3072
3201
  "release-candidate-workflow-file": {
3073
3202
  "classification": "included",
3074
3203
  "source": "workflow-call-input"
@@ -3081,6 +3210,10 @@
3081
3210
  "classification": "included",
3082
3211
  "source": "workflow-call-input"
3083
3212
  },
3213
+ "release-passport-attachment-command": {
3214
+ "classification": "digest-only",
3215
+ "source": "workflow-call-input"
3216
+ },
3084
3217
  "release-passport-buildchain-self-kfd": {
3085
3218
  "classification": "included",
3086
3219
  "source": "workflow-call-input"
@@ -3089,6 +3222,10 @@
3089
3222
  "classification": "digest-only",
3090
3223
  "source": "workflow-call-input"
3091
3224
  },
3225
+ "release-passport-evidence-jsons": {
3226
+ "classification": "digest-only",
3227
+ "source": "workflow-call-input"
3228
+ },
3092
3229
  "release-passport-evidence-path": {
3093
3230
  "classification": "digest-only",
3094
3231
  "source": "workflow-call-input"
@@ -3182,7 +3319,7 @@
3182
3319
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
3183
3320
  ],
3184
3321
  "breakingDigest": "sha256:015d8de793adbd4c539416be7d7512e18cc92097e629b0203fa06d2c183e98bd",
3185
- "auditDigest": "sha256:54bf2db92237cad97da1dc740780330e6175b97352523db732c8650560f1a9fd"
3322
+ "auditDigest": "sha256:83074ab14eaa59d14b411740668c77298da824bcf801c99aaa33d97ec6c8232d"
3186
3323
  },
3187
3324
  {
3188
3325
  "contractVersion": 1,
@@ -3229,6 +3366,7 @@
3229
3366
  "downstream-prepare-command",
3230
3367
  "downstream-repository",
3231
3368
  "downstream-target",
3369
+ "downstream-update-command",
3232
3370
  "downstream-verify-command",
3233
3371
  "dry-run",
3234
3372
  "graph-json",
@@ -3242,8 +3380,8 @@
3242
3380
  ],
3243
3381
  "controllerDescriptor": {
3244
3382
  "contract": "buildchain.controller-descriptor/v1",
3245
- "digest": "sha256:f97656a8df0758c8e404d5b7c387529256a1ec45d1748f8efb6847a3256b1216",
3246
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
3383
+ "digest": "sha256:aff7a9f6bcf96d7a9d406e490868288f3acef104e53eddddc5782b8a2b5b4fa5",
3384
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
3247
3385
  "inputClassifications": {
3248
3386
  "buildchain-ref": {
3249
3387
  "classification": "included",
@@ -3273,6 +3411,10 @@
3273
3411
  "classification": "included",
3274
3412
  "source": "workflow-call-input"
3275
3413
  },
3414
+ "downstream-update-command": {
3415
+ "classification": "digest-only",
3416
+ "source": "workflow-call-input"
3417
+ },
3276
3418
  "downstream-verify-command": {
3277
3419
  "classification": "digest-only",
3278
3420
  "source": "workflow-call-input"
@@ -3322,7 +3464,7 @@
3322
3464
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
3323
3465
  ],
3324
3466
  "breakingDigest": "sha256:d7a1f15990ce8bd13149474888232c7d4451dd2a49bebf4d4ce1336695da430e",
3325
- "auditDigest": "sha256:43fd4da155c701d4c5078373c1f47b50bebc6a46556b8db5e3c4d502c113fa95"
3467
+ "auditDigest": "sha256:9304ed3bc65ab5a0082554889796201fd8d2f4f290a4137ca92905f5ff696e52"
3326
3468
  },
3327
3469
  {
3328
3470
  "contractVersion": 1,
@@ -3366,7 +3508,7 @@
3366
3508
  "controllerDescriptor": {
3367
3509
  "contract": "buildchain.controller-descriptor/v1",
3368
3510
  "digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555",
3369
- "registryDigest": "sha256:c637b908f2be506f3bd56a7e41995450c4d7011f3badc232712884e4fb7039b4",
3511
+ "registryDigest": "sha256:3564f3c38f8c070280ea9cf5dee810d466b40e72ce80104b15776365dfdf9b60",
3370
3512
  "inputClassifications": {}
3371
3513
  },
3372
3514
  "guarantees": [
@@ -3376,9 +3518,9 @@
3376
3518
  "missing receipts are non-qualifying and must not be represented as a successful controller run"
3377
3519
  ],
3378
3520
  "breakingDigest": "sha256:7c18fdd3df180db9e1f043a2286ef3f02fae60b84e42b76cd50da9cfeb77883d",
3379
- "auditDigest": "sha256:e07a5db56a71bd0ac79c81f12619938055361bf0a0ed8e5891f88ca1c51f1c93"
3521
+ "auditDigest": "sha256:d07482cd66413a2fb3781a3b76f960b8151b6231841799647fe237820de2fde6"
3380
3522
  }
3381
3523
  ],
3382
- "compatibilityDigest": "sha256:9770baa99ba374e9dbd743ca9624a72137513b8c4e65af1fbf2160cb3ef51d9d",
3383
- "contractDigest": "sha256:352b63ea24a156f7de288cbb6aae794fbda61de0912720851e9dcbbcc3cb64bc"
3524
+ "compatibilityDigest": "sha256:61af7d0871220bc0909008bdc571905ad500cccf853e7841bc5d462a34b2d436",
3525
+ "contractDigest": "sha256:a4093c16e292085ad013b11424a4432c3fa6c22ec0d9cd9fe412ec8a42359a7c"
3384
3526
  }