@kungfu-tech/buildchain 3.0.6 → 3.0.7-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 +4 -2
- package/actions/promote-buildchain-ref/README.md +10 -0
- package/actions/release-tail/README.md +17 -0
- package/bin/buildchain.mjs +11 -0
- package/bin/internal/command-registry.mjs +2 -0
- package/contracts/auditable-demo-scenario-v1.schema.json +1 -1
- package/contracts/engineering-housekeeper-v1.schema.json +143 -0
- package/contracts/fixtures/engineering-housekeeper-v1/cases.json +68 -0
- package/contracts/fixtures/release-tail-capabilities-v1/kungfu-alpha.json +273 -0
- package/contracts/publication-rehearsal-capsule-v1.schema.json +173 -0
- package/contracts/release-tail-capabilities-v1.schema.json +199 -0
- package/contracts/release-tail-provider-bindings-v1.schema.json +56 -0
- package/dist/site/agent-index.json +3 -0
- package/dist/site/artifact-schemas.json +6 -0
- package/dist/site/buildchain-contract.json +42 -27
- package/dist/site/buildchain-site.json +384 -33
- package/dist/site/capability-registry.json +15 -12
- package/dist/site/cli-registry.json +102 -0
- package/dist/site/controller-registry.json +19 -3
- package/dist/site/kfd-claims.json +359 -17
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +53 -7
- package/dist/site/node-api-registry.json +5882 -3605
- package/dist/site/page-registry.json +348 -21
- package/dist/site/public-surface-audit.json +396 -16
- package/dist/site/publication-authority-registry.json +106 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +7 -0
- package/dist/site/schemas/publication-rehearsal-capsule-v1.schema.json +269 -0
- package/dist/site/schemas/release-tail-capabilities-v1.schema.json +353 -0
- package/dist/site/schemas/release-tail-provider-bindings-v1.schema.json +94 -0
- package/dist/site/site-manifest.json +35 -11
- package/dist/site/workflow-registry.json +204 -10
- package/docs/MAP.md +6 -2
- package/docs/auditable-demo.md +2 -2
- package/docs/cli-reference.md +136 -0
- package/docs/dev-delivery-warrant.md +49 -4
- package/docs/engineering-housekeeper.md +138 -0
- package/docs/lifecycle-protocol.md +4 -2
- package/docs/node-api-reference.md +495 -281
- package/docs/publication-rehearsal.md +94 -0
- package/docs/release-governance.md +17 -2
- package/docs/release-tail-contract.md +160 -0
- package/docs/release-tail-provider-plane.md +120 -0
- package/docs/reusable-build-surface.md +11 -0
- package/package.json +11 -3
- package/packages/core/artifact-signing.js +61 -0
- package/packages/core/buildchain-agent-manuals.js +3 -0
- package/packages/core/buildchain-config.js +66 -6
- package/packages/core/buildchain-kfd-claims.js +1 -1
- package/packages/core/buildchain-publication-authority.js +5 -0
- package/packages/core/controller-evidence.js +2 -1
- package/packages/core/dev-delivery-warrant-cancellation.js +1 -0
- package/packages/core/dev-delivery-warrant-shadow.js +502 -0
- package/packages/core/dev-delivery-warrant.js +15 -6
- package/packages/core/diagnostics.js +8 -3
- package/packages/core/engineering-housekeeper-github-client.js +222 -0
- package/packages/core/engineering-housekeeper-github.js +501 -0
- package/packages/core/engineering-housekeeper.js +259 -0
- package/packages/core/index.js +42 -0
- package/packages/core/kfd-gate.js +45 -15
- package/packages/core/paper-agent-entry.js +11 -5
- package/packages/core/paper-repository.js +1 -0
- package/packages/core/paper-scaffold-content.js +21 -0
- package/packages/core/paper.js +28 -2
- package/packages/core/publication-rehearsal-projection.js +173 -0
- package/packages/core/publication-rehearsal-runtime.js +921 -0
- package/packages/core/release-passport.js +130 -20
- package/packages/core/release-tail-compatibility.js +60 -0
- package/packages/core/release-tail-provider-adapters.js +461 -0
- package/packages/core/release-tail-provider-plane.js +1228 -0
- package/scripts/assemble-publication-artifact-admission.mjs +1 -1
- package/scripts/assemble-self-publication-admission.mjs +2 -2
- package/scripts/audit-publication-control-plane.mjs +1 -1
- package/scripts/auditable-demo-bundle-verification.mjs +2 -3
- package/scripts/auditable-demo-platform.mjs +2 -2
- package/scripts/auditable-demo-renditions.mjs +1 -1
- package/scripts/auditable-demo.mjs +2 -2
- package/scripts/build-contract-core.mjs +8 -3
- package/scripts/build-standalone-binary.mjs +14 -3
- package/scripts/buildchain-cli-help.mjs +13 -0
- package/scripts/check-core-mechanism-inventory.mjs +347 -0
- package/scripts/check-inventory.mjs +10 -8
- package/scripts/check-maintainability.mjs +9 -2
- package/scripts/check-release-tail-contract.mjs +435 -0
- package/scripts/dev-delivery-warrant.mjs +31 -4
- package/scripts/dev-pr-auto-merge.mjs +30 -4
- package/scripts/dev-pr-delivery-warrant.mjs +50 -0
- package/scripts/engineering-housekeeper-workflow.mjs +394 -0
- package/scripts/generate-channel-promotion-workflow.mjs +10 -8
- package/scripts/generate-site-bundle.mjs +47 -4
- package/scripts/init-repo.mjs +26 -2
- package/scripts/inspect-artifact-signing-requests.mjs +6 -0
- package/scripts/materialize-self-release-candidate-version.mjs +137 -0
- package/scripts/publication-commit-evidence.mjs +69 -23
- package/scripts/release-candidate-resolver.mjs +16 -10
- package/scripts/release-tail.mjs +159 -0
- package/scripts/resume-from-candidate-run.mjs +123 -9
- package/scripts/seal-artifact-signing-requests.mjs +6 -0
- package/scripts/site-capability-metadata.mjs +13 -0
- package/scripts/v4-architecture.mjs +600 -0
- package/scripts/web-surface-core.mjs +8 -2
- package/scripts/workflow-call-contract.mjs +184 -5
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"product": {
|
|
5
5
|
"name": "Buildchain",
|
|
6
6
|
"package": "@kungfu-tech/buildchain",
|
|
7
|
-
"version": "3.0.
|
|
7
|
+
"version": "3.0.7-alpha.1",
|
|
8
8
|
"repository": "https://github.com/kungfu-systems/buildchain"
|
|
9
9
|
},
|
|
10
10
|
"majorLine": "v3",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"retryable GitHub fallback fetches use a bounded attempt budget before exact source SHA and tree verification"
|
|
53
53
|
],
|
|
54
54
|
"breakingDigest": "sha256:dfbedd543ae0c067982b5c8c02d98dd2f7f7df88752be97fb330da6b0ba30faa",
|
|
55
|
-
"auditDigest": "sha256:
|
|
55
|
+
"auditDigest": "sha256:8ea77f06f35c5ea0eae0a06625e397c49dcf9863d05d05dcf4d2d80369f58dff"
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
"contractVersion": 1,
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"sha256:acd401cfc46450115a3763fd4b679d85f185e8757ebd52510d6262e1533df4cf"
|
|
194
194
|
],
|
|
195
195
|
"breakingDigest": "sha256:e60642aa298933d2c103284794921a6c340a50aa91ee528b06e58892a2a006bf",
|
|
196
|
-
"auditDigest": "sha256:
|
|
196
|
+
"auditDigest": "sha256:4ed6cce4c1a90f179bf9ba3bff4b08093dd80f11e7e271fcb6f1bd80b3cecdb8"
|
|
197
197
|
},
|
|
198
198
|
{
|
|
199
199
|
"contractVersion": 1,
|
|
@@ -249,7 +249,7 @@
|
|
|
249
249
|
"sha256:aa30f22e3af0a89841310bdbdc900844dd95a66974db173fa140a71bbd7e82c0"
|
|
250
250
|
],
|
|
251
251
|
"breakingDigest": "sha256:9db8dd07152855d03ff30f9c571438593c689d3e8139fa45431d000f548242f5",
|
|
252
|
-
"auditDigest": "sha256:
|
|
252
|
+
"auditDigest": "sha256:61a7d1f319232454d79c96b277f9feb5e0b8b7842f96985dc8bdf89e3a57e3fa"
|
|
253
253
|
},
|
|
254
254
|
{
|
|
255
255
|
"contractVersion": 1,
|
|
@@ -476,7 +476,7 @@
|
|
|
476
476
|
"sha256:a59f0910e6df842e7699139472e5dd69ac2fdd7f7213bf2cb346d1d622556874"
|
|
477
477
|
],
|
|
478
478
|
"breakingDigest": "sha256:6147c0a8d5c36bfaa6021871574e1fc28192a3f1b8cfdae4d24ef3059ac1ebda",
|
|
479
|
-
"auditDigest": "sha256:
|
|
479
|
+
"auditDigest": "sha256:b86906f63640ffdbae3fcd9eec4c4b234c8e8e6e906b7857d576b9d1cf5c78be"
|
|
480
480
|
},
|
|
481
481
|
{
|
|
482
482
|
"contractVersion": 1,
|
|
@@ -591,7 +591,7 @@
|
|
|
591
591
|
"release-state SHA is recorded as a durable audit entrance"
|
|
592
592
|
],
|
|
593
593
|
"breakingDigest": "sha256:b627e1b2ece9b6049517a942c5139e342e6077cdd3d8962d61cef8481b1f70ad",
|
|
594
|
-
"auditDigest": "sha256:
|
|
594
|
+
"auditDigest": "sha256:dfebb115f842e83a189868c3ef06fa72e5e8043327e5f1c7d5d918f87cd2c74e"
|
|
595
595
|
},
|
|
596
596
|
{
|
|
597
597
|
"contractVersion": 1,
|
|
@@ -616,7 +616,7 @@
|
|
|
616
616
|
"KFD self contract witnesses record source/artifact hashes, self-hosting boundary, and responsibility state"
|
|
617
617
|
],
|
|
618
618
|
"breakingDigest": "sha256:f46c1f67b94957ad956cf70db59a73fd5690bd67c91edf9c2d0eb8f3d1e3cf8d",
|
|
619
|
-
"auditDigest": "sha256:
|
|
619
|
+
"auditDigest": "sha256:0ee7f76d04f9b77a63ec2cc12cec8e804da47b8ef81075982feb351346ac3d5b"
|
|
620
620
|
},
|
|
621
621
|
{
|
|
622
622
|
"contractVersion": 1,
|
|
@@ -640,7 +640,7 @@
|
|
|
640
640
|
"prose-only public claims downgrade the release trust passport audit"
|
|
641
641
|
],
|
|
642
642
|
"breakingDigest": "sha256:f0b636eb925ddbf45ff1a8872454ab7b4dd98857cac12bb75217830130e62a16",
|
|
643
|
-
"auditDigest": "sha256:
|
|
643
|
+
"auditDigest": "sha256:dfebb115f842e83a189868c3ef06fa72e5e8043327e5f1c7d5d918f87cd2c74e"
|
|
644
644
|
},
|
|
645
645
|
{
|
|
646
646
|
"contractVersion": 1,
|
|
@@ -669,7 +669,7 @@
|
|
|
669
669
|
"KFD-3 passports expose releaseStatus, witness hashes, declared capability verification, reverse audit boundary, residual risk, and responsibility state"
|
|
670
670
|
],
|
|
671
671
|
"breakingDigest": "sha256:33654f3444c893754aacc42dde3051f0a371bd17c6ef7c657c579a07159cd7c1",
|
|
672
|
-
"auditDigest": "sha256:
|
|
672
|
+
"auditDigest": "sha256:0ee7f76d04f9b77a63ec2cc12cec8e804da47b8ef81075982feb351346ac3d5b"
|
|
673
673
|
},
|
|
674
674
|
{
|
|
675
675
|
"contractVersion": 1,
|
|
@@ -700,7 +700,7 @@
|
|
|
700
700
|
"README badge block checks and writes are generated from machine-readable repository facts"
|
|
701
701
|
],
|
|
702
702
|
"breakingDigest": "sha256:90a73892b2d6c214048448d5f45df75639bdf7b7e8fefd9c596e04b087407bcc",
|
|
703
|
-
"auditDigest": "sha256:
|
|
703
|
+
"auditDigest": "sha256:e4d2246720efbd74c0cca5adb59160568ba55e41a04b9d752a52edec28ca39be"
|
|
704
704
|
},
|
|
705
705
|
{
|
|
706
706
|
"contractVersion": 1,
|
|
@@ -790,7 +790,7 @@
|
|
|
790
790
|
"manual entries carry source file digests so downstream sites and agents can detect stale hand-written documentation"
|
|
791
791
|
],
|
|
792
792
|
"breakingDigest": "sha256:7d0d2819e3a3e72989d9c57b5efe9d0bc0a79bc0f2c82a0c7b9d6c5a211a91f2",
|
|
793
|
-
"auditDigest": "sha256:
|
|
793
|
+
"auditDigest": "sha256:6489e53ab9e207a89b8282de6d9e220fb0790282f03df9ef05a422d4ce864050"
|
|
794
794
|
},
|
|
795
795
|
{
|
|
796
796
|
"contractVersion": 1,
|
|
@@ -812,7 +812,7 @@
|
|
|
812
812
|
"agents can discover supported Node APIs without importing internal file paths"
|
|
813
813
|
],
|
|
814
814
|
"breakingDigest": "sha256:48f925608d3e2131d90936b07dc2a30341204cae3e6e785c0f77d61ad755c945",
|
|
815
|
-
"auditDigest": "sha256:
|
|
815
|
+
"auditDigest": "sha256:c1efa246a44ed993579047f8427f68c5ce8cb8d64b7c2df3eddd444c19d910aa"
|
|
816
816
|
},
|
|
817
817
|
{
|
|
818
818
|
"contractVersion": 1,
|
|
@@ -863,7 +863,7 @@
|
|
|
863
863
|
"controllerDescriptor": {
|
|
864
864
|
"contract": "buildchain.controller-descriptor/v1",
|
|
865
865
|
"digest": "sha256:373723a73d188194d389dee04c394d3b79cb0c016a370f2f5d0f60979a02ed48",
|
|
866
|
-
"registryDigest": "sha256:
|
|
866
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
867
867
|
"inputClassifications": {
|
|
868
868
|
"buildchain-ref": {
|
|
869
869
|
"classification": "included",
|
|
@@ -1045,8 +1045,8 @@
|
|
|
1045
1045
|
],
|
|
1046
1046
|
"controllerDescriptor": {
|
|
1047
1047
|
"contract": "buildchain.controller-descriptor/v1",
|
|
1048
|
-
"digest": "sha256:
|
|
1049
|
-
"registryDigest": "sha256:
|
|
1048
|
+
"digest": "sha256:f986e79241d831f027a0955a35c918f946989176c76555e20f156ed31fb10c94",
|
|
1049
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
1050
1050
|
"inputClassifications": {
|
|
1051
1051
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN": {
|
|
1052
1052
|
"classification": "redacted",
|
|
@@ -1441,7 +1441,7 @@
|
|
|
1441
1441
|
"missing receipts are non-qualifying and must not be represented as a successful controller run"
|
|
1442
1442
|
],
|
|
1443
1443
|
"breakingDigest": "sha256:6b8d38e92b2c67b5bc83fae0a3fd95bfa47582fbc176e6cdeebe7630a57534cb",
|
|
1444
|
-
"auditDigest": "sha256:
|
|
1444
|
+
"auditDigest": "sha256:8ea77f06f35c5ea0eae0a06625e397c49dcf9863d05d05dcf4d2d80369f58dff"
|
|
1445
1445
|
},
|
|
1446
1446
|
{
|
|
1447
1447
|
"contractVersion": 1,
|
|
@@ -1581,7 +1581,7 @@
|
|
|
1581
1581
|
"controllerDescriptor": {
|
|
1582
1582
|
"contract": "buildchain.controller-descriptor/v1",
|
|
1583
1583
|
"digest": "sha256:48545554883888862984cdf1b6b4b56341531cdd6192600782a76b92ad22fd36",
|
|
1584
|
-
"registryDigest": "sha256:
|
|
1584
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
1585
1585
|
"inputClassifications": {
|
|
1586
1586
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN": {
|
|
1587
1587
|
"classification": "redacted",
|
|
@@ -2054,7 +2054,7 @@
|
|
|
2054
2054
|
"controllerDescriptor": {
|
|
2055
2055
|
"contract": "buildchain.controller-descriptor/v1",
|
|
2056
2056
|
"digest": "sha256:8e42956a2c10fa109500e72b97994f06b3d22a19cc63a46f66410b2e81706e9d",
|
|
2057
|
-
"registryDigest": "sha256:
|
|
2057
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
2058
2058
|
"inputClassifications": {
|
|
2059
2059
|
"artifact-name": {
|
|
2060
2060
|
"classification": "included",
|
|
@@ -2271,7 +2271,7 @@
|
|
|
2271
2271
|
"controllerDescriptor": {
|
|
2272
2272
|
"contract": "buildchain.controller-descriptor/v1",
|
|
2273
2273
|
"digest": "sha256:c5274b37f04d0054559fdc8698c51bd0f0d8ae470baf163e9caa7699aa970575",
|
|
2274
|
-
"registryDigest": "sha256:
|
|
2274
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
2275
2275
|
"inputClassifications": {
|
|
2276
2276
|
"artifact-path": {
|
|
2277
2277
|
"classification": "digest-only",
|
|
@@ -2515,7 +2515,7 @@
|
|
|
2515
2515
|
"controllerDescriptor": {
|
|
2516
2516
|
"contract": "buildchain.controller-descriptor/v1",
|
|
2517
2517
|
"digest": "sha256:6b132790b9798e8a5dfbe095701d8e024c160a08bc7c4bd477ee79feef7a9cfd",
|
|
2518
|
-
"registryDigest": "sha256:
|
|
2518
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
2519
2519
|
"inputClassifications": {
|
|
2520
2520
|
"artifact-name": {
|
|
2521
2521
|
"classification": "included",
|
|
@@ -2697,7 +2697,7 @@
|
|
|
2697
2697
|
"controllerDescriptor": {
|
|
2698
2698
|
"contract": "buildchain.controller-descriptor/v1",
|
|
2699
2699
|
"digest": "sha256:6d71409659fbf8543c7e520b0c493d8afe86bdf60286b860bb917f0041ebc173",
|
|
2700
|
-
"registryDigest": "sha256:
|
|
2700
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
2701
2701
|
"inputClassifications": {
|
|
2702
2702
|
"artifact-name": {
|
|
2703
2703
|
"classification": "included",
|
|
@@ -2927,6 +2927,7 @@
|
|
|
2927
2927
|
"buildchain-ref",
|
|
2928
2928
|
"buildchain-repository",
|
|
2929
2929
|
"channel",
|
|
2930
|
+
"declarative-release-tail",
|
|
2930
2931
|
"dry-run",
|
|
2931
2932
|
"github-artifact-attestation-environment",
|
|
2932
2933
|
"github-artifact-attestation-policy-json",
|
|
@@ -2949,12 +2950,14 @@
|
|
|
2949
2950
|
"promotion-shell-sha",
|
|
2950
2951
|
"promotion-target-ref",
|
|
2951
2952
|
"publication-admission-json",
|
|
2953
|
+
"publication-authority-workflow-path",
|
|
2952
2954
|
"publication-auto-admission",
|
|
2953
2955
|
"publication-auto-no-gate",
|
|
2954
2956
|
"publication-commit-command",
|
|
2955
2957
|
"publication-commit-evidence-path",
|
|
2956
2958
|
"publication-consumer-predicate-id",
|
|
2957
2959
|
"publication-consumer-qualification-command",
|
|
2960
|
+
"publication-consumer-qualification-controller-sha",
|
|
2958
2961
|
"publication-control-plane-audit-json",
|
|
2959
2962
|
"publication-expected-json",
|
|
2960
2963
|
"publication-gate-aggregate-json",
|
|
@@ -3025,8 +3028,8 @@
|
|
|
3025
3028
|
],
|
|
3026
3029
|
"controllerDescriptor": {
|
|
3027
3030
|
"contract": "buildchain.controller-descriptor/v1",
|
|
3028
|
-
"digest": "sha256:
|
|
3029
|
-
"registryDigest": "sha256:
|
|
3031
|
+
"digest": "sha256:83bc2f7d57ad3500e0b2983314aa5fdaa0dff1f78ef011af94cde760b86a010f",
|
|
3032
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
3030
3033
|
"inputClassifications": {
|
|
3031
3034
|
"BUILDCHAIN_ISSUE_APP_ID": {
|
|
3032
3035
|
"classification": "redacted",
|
|
@@ -3116,6 +3119,10 @@
|
|
|
3116
3119
|
"classification": "included",
|
|
3117
3120
|
"source": "workflow-call-input"
|
|
3118
3121
|
},
|
|
3122
|
+
"declarative-release-tail": {
|
|
3123
|
+
"classification": "included",
|
|
3124
|
+
"source": "workflow-call-input"
|
|
3125
|
+
},
|
|
3119
3126
|
"dry-run": {
|
|
3120
3127
|
"classification": "included",
|
|
3121
3128
|
"source": "workflow-call-input"
|
|
@@ -3204,6 +3211,10 @@
|
|
|
3204
3211
|
"classification": "digest-only",
|
|
3205
3212
|
"source": "workflow-call-input"
|
|
3206
3213
|
},
|
|
3214
|
+
"publication-authority-workflow-path": {
|
|
3215
|
+
"classification": "digest-only",
|
|
3216
|
+
"source": "workflow-call-input"
|
|
3217
|
+
},
|
|
3207
3218
|
"publication-auto-admission": {
|
|
3208
3219
|
"classification": "included",
|
|
3209
3220
|
"source": "workflow-call-input"
|
|
@@ -3228,6 +3239,10 @@
|
|
|
3228
3239
|
"classification": "digest-only",
|
|
3229
3240
|
"source": "workflow-call-input"
|
|
3230
3241
|
},
|
|
3242
|
+
"publication-consumer-qualification-controller-sha": {
|
|
3243
|
+
"classification": "included",
|
|
3244
|
+
"source": "workflow-call-input"
|
|
3245
|
+
},
|
|
3231
3246
|
"publication-control-plane-audit-json": {
|
|
3232
3247
|
"classification": "digest-only",
|
|
3233
3248
|
"source": "workflow-call-input"
|
|
@@ -3505,7 +3520,7 @@
|
|
|
3505
3520
|
"missing receipts are non-qualifying and must not be represented as a successful controller run"
|
|
3506
3521
|
],
|
|
3507
3522
|
"breakingDigest": "sha256:015d8de793adbd4c539416be7d7512e18cc92097e629b0203fa06d2c183e98bd",
|
|
3508
|
-
"auditDigest": "sha256:
|
|
3523
|
+
"auditDigest": "sha256:61a7d1f319232454d79c96b277f9feb5e0b8b7842f96985dc8bdf89e3a57e3fa"
|
|
3509
3524
|
},
|
|
3510
3525
|
{
|
|
3511
3526
|
"contractVersion": 1,
|
|
@@ -3570,7 +3585,7 @@
|
|
|
3570
3585
|
"controllerDescriptor": {
|
|
3571
3586
|
"contract": "buildchain.controller-descriptor/v1",
|
|
3572
3587
|
"digest": "sha256:660579b5561e8e33375a3f3b1fefbb8a5bd8241a55ba43374d786fb772c24a12",
|
|
3573
|
-
"registryDigest": "sha256:
|
|
3588
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
3574
3589
|
"inputClassifications": {
|
|
3575
3590
|
"agent-work-context-json": {
|
|
3576
3591
|
"classification": "digest-only",
|
|
@@ -3705,7 +3720,7 @@
|
|
|
3705
3720
|
"controllerDescriptor": {
|
|
3706
3721
|
"contract": "buildchain.controller-descriptor/v1",
|
|
3707
3722
|
"digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555",
|
|
3708
|
-
"registryDigest": "sha256:
|
|
3723
|
+
"registryDigest": "sha256:e9f5716c5298730bcab51a9e2f2316df8b4a7cec7ce609a7a8808928a48edd1e",
|
|
3709
3724
|
"inputClassifications": {}
|
|
3710
3725
|
},
|
|
3711
3726
|
"guarantees": [
|
|
@@ -3719,5 +3734,5 @@
|
|
|
3719
3734
|
}
|
|
3720
3735
|
],
|
|
3721
3736
|
"compatibilityDigest": "sha256:80cfdf1786019217c439810f1a80d2866bf8f7ef35a6fa569e1a687fb2bf4cbe",
|
|
3722
|
-
"contractDigest": "sha256:
|
|
3737
|
+
"contractDigest": "sha256:8e565f9ac5146d5dceafc3da6b267147fb412937db979bf35a0429966da82197"
|
|
3723
3738
|
}
|