@kungfu-tech/buildchain 3.0.6 → 3.0.7-alpha.0
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/release-tail/README.md +17 -0
- package/bin/buildchain.mjs +11 -0
- package/bin/internal/command-registry.mjs +2 -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 +35 -20
- package/dist/site/buildchain-site.json +307 -17
- package/dist/site/capability-registry.json +12 -9
- package/dist/site/cli-registry.json +102 -0
- package/dist/site/controller-registry.json +14 -2
- package/dist/site/kfd-claims.json +247 -16
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +48 -3
- package/dist/site/node-api-registry.json +3108 -1409
- package/dist/site/page-registry.json +275 -9
- package/dist/site/public-surface-audit.json +304 -15
- package/dist/site/publication-authority-registry.json +26 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +5 -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 +31 -7
- package/dist/site/workflow-registry.json +86 -9
- package/docs/MAP.md +5 -2
- package/docs/cli-reference.md +136 -0
- package/docs/node-api-reference.md +233 -84
- package/docs/publication-rehearsal.md +94 -0
- package/docs/release-tail-contract.md +160 -0
- package/docs/release-tail-provider-plane.md +120 -0
- package/package.json +8 -3
- package/packages/core/buildchain-agent-manuals.js +3 -0
- package/packages/core/buildchain-kfd-claims.js +1 -1
- package/packages/core/buildchain-publication-authority.js +1 -0
- package/packages/core/index.js +39 -0
- 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 +909 -0
- 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 +1 -1
- package/scripts/buildchain-cli-help.mjs +13 -0
- package/scripts/check-core-mechanism-inventory.mjs +347 -0
- package/scripts/check-inventory.mjs +8 -8
- package/scripts/check-maintainability.mjs +9 -2
- package/scripts/check-release-tail-contract.mjs +435 -0
- package/scripts/generate-channel-promotion-workflow.mjs +10 -8
- package/scripts/generate-site-bundle.mjs +24 -0
- package/scripts/init-repo.mjs +26 -2
- package/scripts/materialize-self-release-candidate-version.mjs +131 -0
- package/scripts/release-tail.mjs +159 -0
- package/scripts/site-capability-metadata.mjs +11 -0
- package/scripts/v4-architecture.mjs +600 -0
- package/scripts/workflow-call-contract.mjs +184 -5
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://buildchain.kungfu.ai/contracts/release-tail-capabilities-v1.schema.json",
|
|
4
|
+
"title": "Buildchain release-tail capability declaration",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"contract",
|
|
9
|
+
"schemaVersion",
|
|
10
|
+
"transactionPolicy",
|
|
11
|
+
"subject",
|
|
12
|
+
"capabilities"
|
|
13
|
+
],
|
|
14
|
+
"properties": {
|
|
15
|
+
"contract": {
|
|
16
|
+
"const": "kungfu-buildchain-release-tail-capabilities"
|
|
17
|
+
},
|
|
18
|
+
"schemaVersion": {
|
|
19
|
+
"const": 1
|
|
20
|
+
},
|
|
21
|
+
"transactionPolicy": {
|
|
22
|
+
"const": "buildchain.release-tail/v1"
|
|
23
|
+
},
|
|
24
|
+
"subject": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"additionalProperties": false,
|
|
27
|
+
"required": ["repository", "sourceSha", "version", "tag", "channel"],
|
|
28
|
+
"properties": {
|
|
29
|
+
"repository": { "type": "string", "minLength": 1 },
|
|
30
|
+
"sourceSha": { "type": "string", "pattern": "^[0-9a-f]{40}$" },
|
|
31
|
+
"version": { "type": "string", "minLength": 1 },
|
|
32
|
+
"tag": { "type": "string", "minLength": 1 },
|
|
33
|
+
"channel": { "enum": ["alpha", "release", "stable"] }
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"capabilities": {
|
|
37
|
+
"type": "array",
|
|
38
|
+
"minItems": 1,
|
|
39
|
+
"items": { "$ref": "#/$defs/capability" }
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"$defs": {
|
|
43
|
+
"root": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"pattern": "^sha256:[0-9a-f]{64}$"
|
|
46
|
+
},
|
|
47
|
+
"capability": {
|
|
48
|
+
"type": "object",
|
|
49
|
+
"additionalProperties": false,
|
|
50
|
+
"required": [
|
|
51
|
+
"id",
|
|
52
|
+
"executor",
|
|
53
|
+
"adapter",
|
|
54
|
+
"artifactRoles",
|
|
55
|
+
"destination",
|
|
56
|
+
"channelPolicy",
|
|
57
|
+
"activationPolicy",
|
|
58
|
+
"readbackPredicates",
|
|
59
|
+
"effect",
|
|
60
|
+
"observation",
|
|
61
|
+
"receipt",
|
|
62
|
+
"operationIdentity",
|
|
63
|
+
"idempotency",
|
|
64
|
+
"retry",
|
|
65
|
+
"evidenceRequirements"
|
|
66
|
+
],
|
|
67
|
+
"properties": {
|
|
68
|
+
"id": {
|
|
69
|
+
"enum": [
|
|
70
|
+
"artifact.publish",
|
|
71
|
+
"signed-channel.commit",
|
|
72
|
+
"release.activate",
|
|
73
|
+
"released-evidence.synthesize"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
"executor": { "enum": ["buildchain-core", "provider-adapter"] },
|
|
77
|
+
"adapter": { "type": "string", "minLength": 1 },
|
|
78
|
+
"artifactRoles": {
|
|
79
|
+
"type": "array",
|
|
80
|
+
"items": {
|
|
81
|
+
"type": "object",
|
|
82
|
+
"additionalProperties": false,
|
|
83
|
+
"required": ["role", "root"],
|
|
84
|
+
"properties": {
|
|
85
|
+
"role": { "type": "string", "minLength": 1 },
|
|
86
|
+
"root": { "$ref": "#/$defs/root" }
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"destination": {
|
|
91
|
+
"type": "object",
|
|
92
|
+
"additionalProperties": false,
|
|
93
|
+
"required": ["kind", "locator"],
|
|
94
|
+
"properties": {
|
|
95
|
+
"kind": { "type": "string", "minLength": 1 },
|
|
96
|
+
"locator": { "type": "string", "minLength": 1 }
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"channelPolicy": {
|
|
100
|
+
"type": "object",
|
|
101
|
+
"additionalProperties": false,
|
|
102
|
+
"required": ["channel", "tagPattern", "authorityMove"],
|
|
103
|
+
"properties": {
|
|
104
|
+
"channel": { "enum": ["alpha", "release", "stable"] },
|
|
105
|
+
"tagPattern": { "type": "string", "minLength": 1 },
|
|
106
|
+
"authorityMove": { "enum": ["none", "signed-cas", "verified-ref"] }
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"activationPolicy": {
|
|
110
|
+
"type": "object",
|
|
111
|
+
"additionalProperties": false,
|
|
112
|
+
"required": ["mode", "environment"],
|
|
113
|
+
"properties": {
|
|
114
|
+
"mode": { "enum": ["none", "receipt-set", "receipt-only"] },
|
|
115
|
+
"environment": { "enum": ["none", "shadow", "production"] }
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"readbackPredicates": {
|
|
119
|
+
"type": "array",
|
|
120
|
+
"items": {
|
|
121
|
+
"type": "object",
|
|
122
|
+
"additionalProperties": false,
|
|
123
|
+
"required": ["id", "kind", "expected"],
|
|
124
|
+
"properties": {
|
|
125
|
+
"id": { "type": "string", "minLength": 1 },
|
|
126
|
+
"kind": { "type": "string", "minLength": 1 },
|
|
127
|
+
"expected": { "type": "string", "minLength": 1 }
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"effect": { "$ref": "#/$defs/message" },
|
|
132
|
+
"observation": { "$ref": "#/$defs/message" },
|
|
133
|
+
"receipt": { "$ref": "#/$defs/message" },
|
|
134
|
+
"operationIdentity": {
|
|
135
|
+
"type": "object",
|
|
136
|
+
"additionalProperties": false,
|
|
137
|
+
"required": [
|
|
138
|
+
"transactionRoot",
|
|
139
|
+
"capabilityId",
|
|
140
|
+
"subjectRoot",
|
|
141
|
+
"targetRoot",
|
|
142
|
+
"attemptKey"
|
|
143
|
+
],
|
|
144
|
+
"properties": {
|
|
145
|
+
"transactionRoot": { "$ref": "#/$defs/root" },
|
|
146
|
+
"capabilityId": {
|
|
147
|
+
"enum": [
|
|
148
|
+
"artifact.publish",
|
|
149
|
+
"signed-channel.commit",
|
|
150
|
+
"release.activate",
|
|
151
|
+
"released-evidence.synthesize"
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
"subjectRoot": { "$ref": "#/$defs/root" },
|
|
155
|
+
"targetRoot": { "$ref": "#/$defs/root" },
|
|
156
|
+
"attemptKey": { "type": "string", "minLength": 1 }
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"idempotency": {
|
|
160
|
+
"type": "object",
|
|
161
|
+
"additionalProperties": false,
|
|
162
|
+
"required": ["scope", "duplicate"],
|
|
163
|
+
"properties": {
|
|
164
|
+
"scope": { "enum": ["operation", "subject-target"] },
|
|
165
|
+
"duplicate": {
|
|
166
|
+
"enum": ["return-observed-receipt", "readback-before-retry"]
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"retry": {
|
|
171
|
+
"type": "object",
|
|
172
|
+
"additionalProperties": false,
|
|
173
|
+
"required": ["class", "localAttempts", "exhausted"],
|
|
174
|
+
"properties": {
|
|
175
|
+
"class": { "enum": ["never", "readback", "provider-transient"] },
|
|
176
|
+
"localAttempts": { "type": "integer", "minimum": 0, "maximum": 3 },
|
|
177
|
+
"exhausted": {
|
|
178
|
+
"enum": ["blocked", "repair-required", "terminal-failure"]
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"evidenceRequirements": {
|
|
183
|
+
"type": "array",
|
|
184
|
+
"minItems": 1,
|
|
185
|
+
"items": { "type": "string", "minLength": 1 }
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"message": {
|
|
190
|
+
"type": "object",
|
|
191
|
+
"additionalProperties": false,
|
|
192
|
+
"required": ["kind", "schema"],
|
|
193
|
+
"properties": {
|
|
194
|
+
"kind": { "type": "string", "minLength": 1 },
|
|
195
|
+
"schema": { "type": "string", "minLength": 1 }
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://buildchain.kungfu.ai/contracts/release-tail-provider-bindings-v1.schema.json",
|
|
4
|
+
"title": "Buildchain release-tail provider bindings",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": ["schema", "artifacts", "documents", "evidence"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"schema": {
|
|
10
|
+
"const": "kungfu.buildchain.release-tail.provider-bindings/v1"
|
|
11
|
+
},
|
|
12
|
+
"artifacts": {
|
|
13
|
+
"type": "object",
|
|
14
|
+
"additionalProperties": {
|
|
15
|
+
"type": "object",
|
|
16
|
+
"additionalProperties": false,
|
|
17
|
+
"required": ["path", "name"],
|
|
18
|
+
"properties": {
|
|
19
|
+
"path": { "type": "string", "minLength": 1 },
|
|
20
|
+
"name": { "type": "string", "minLength": 1 }
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"documents": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"additionalProperties": false,
|
|
27
|
+
"properties": {
|
|
28
|
+
"signed-channel.commit": { "$ref": "#/$defs/document" },
|
|
29
|
+
"release.activate": { "$ref": "#/$defs/document" }
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"evidence": {
|
|
33
|
+
"type": "object",
|
|
34
|
+
"additionalProperties": false,
|
|
35
|
+
"required": ["inputs", "output"],
|
|
36
|
+
"properties": {
|
|
37
|
+
"inputs": {
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": { "type": "string", "minLength": 1 }
|
|
40
|
+
},
|
|
41
|
+
"output": { "type": "string", "minLength": 1 }
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"$defs": {
|
|
46
|
+
"document": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"additionalProperties": false,
|
|
49
|
+
"required": ["path", "method"],
|
|
50
|
+
"properties": {
|
|
51
|
+
"path": { "type": "string", "minLength": 1 },
|
|
52
|
+
"method": { "enum": ["PUT", "POST"] }
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
"artifact-schemas.json",
|
|
18
18
|
"release-passport-check-manifest.json",
|
|
19
19
|
"schemas/release-passport-v1.schema.json",
|
|
20
|
+
"schemas/publication-rehearsal-capsule-v1.schema.json",
|
|
21
|
+
"schemas/release-tail-capabilities-v1.schema.json",
|
|
22
|
+
"schemas/release-tail-provider-bindings-v1.schema.json",
|
|
20
23
|
"schemas/kfd-agent-hub-adoption.schema.json",
|
|
21
24
|
"schemas/kfd-product-gate-input-v1.schema.json",
|
|
22
25
|
"schemas/kfd-support-projection-v1.schema.json",
|
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
"buildchain.release.json",
|
|
6
6
|
"release-passport-check-manifest.json",
|
|
7
7
|
"schemas/release-passport-v1.schema.json",
|
|
8
|
+
"schemas/publication-rehearsal-capsule-v1.schema.json",
|
|
9
|
+
"schemas/release-tail-capabilities-v1.schema.json",
|
|
10
|
+
"schemas/release-tail-provider-bindings-v1.schema.json",
|
|
8
11
|
"schemas/kfd-agent-hub-adoption.schema.json",
|
|
9
12
|
"schemas/kfd-product-gate-input-v1.schema.json",
|
|
10
13
|
"schemas/kfd-support-projection-v1.schema.json",
|
|
@@ -40,6 +43,9 @@
|
|
|
40
43
|
"artifact-schemas.json",
|
|
41
44
|
"release-passport-check-manifest.json",
|
|
42
45
|
"schemas/release-passport-v1.schema.json",
|
|
46
|
+
"schemas/publication-rehearsal-capsule-v1.schema.json",
|
|
47
|
+
"schemas/release-tail-capabilities-v1.schema.json",
|
|
48
|
+
"schemas/release-tail-provider-bindings-v1.schema.json",
|
|
43
49
|
"schemas/kfd-agent-hub-adoption.schema.json",
|
|
44
50
|
"schemas/kfd-product-gate-input-v1.schema.json",
|
|
45
51
|
"schemas/kfd-support-projection-v1.schema.json",
|
|
@@ -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.0",
|
|
8
8
|
"repository": "https://github.com/kungfu-systems/buildchain"
|
|
9
9
|
},
|
|
10
10
|
"majorLine": "v3",
|
|
@@ -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:0ec19f4776537254017dbc30e35dbc10dc3fdf3c3c747d3c18beb0389fc9db7f"
|
|
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:7b1fa951846a7386261e1c52d1191b17421a0dd5a60edee675926dfa9c085126"
|
|
480
480
|
},
|
|
481
481
|
{
|
|
482
482
|
"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:441c5107570d729a6ec95d76a288a69d6119455baf44cfed48cae62625ca19c6"
|
|
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:a68025579bc0cb1e1bbd2db13bfddd9926891ba5eb6f981cc254a4af604cc869"
|
|
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:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
867
867
|
"inputClassifications": {
|
|
868
868
|
"buildchain-ref": {
|
|
869
869
|
"classification": "included",
|
|
@@ -1046,7 +1046,7 @@
|
|
|
1046
1046
|
"controllerDescriptor": {
|
|
1047
1047
|
"contract": "buildchain.controller-descriptor/v1",
|
|
1048
1048
|
"digest": "sha256:9c0aacca910cef4619a797898ff5c24027c1583f84431a93a5efc854925326e7",
|
|
1049
|
-
"registryDigest": "sha256:
|
|
1049
|
+
"registryDigest": "sha256:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
1050
1050
|
"inputClassifications": {
|
|
1051
1051
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN": {
|
|
1052
1052
|
"classification": "redacted",
|
|
@@ -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:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
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:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
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:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
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:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
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:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
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:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
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:0ec19f4776537254017dbc30e35dbc10dc3fdf3c3c747d3c18beb0389fc9db7f"
|
|
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:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
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:4610d5ecdd42984fef782af010ed6978f4a40438134b3d962698854978fd0095",
|
|
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:15d9f6feaa7f774b7223943de4326285d4a02db459e8ddda4a20418552e65d96"
|
|
3723
3738
|
}
|