@kungfu-tech/buildchain 3.0.1-alpha.2 → 3.0.1-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +5 -5
- package/README.md +15 -17
- package/actions/promote-buildchain-ref/README.md +8 -8
- package/actions/report-buildchain-issue/README.md +2 -2
- package/actions/run-lifecycle/README.md +1 -1
- package/actions/validate-config/README.md +1 -1
- package/bin/buildchain.mjs +11 -4
- package/dist/site/buildchain-contract.json +59 -24
- package/dist/site/buildchain-site.json +78 -83
- package/dist/site/controller-registry.json +30 -2
- package/dist/site/kfd-claims.json +12 -5
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +18 -18
- package/dist/site/node-api-registry.json +5 -5
- package/dist/site/page-registry.json +54 -59
- package/dist/site/public-surface-audit.json +11 -9
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +2 -2
- package/dist/site/site-manifest.json +22 -22
- package/dist/site/workflow-registry.json +8 -1
- package/docs/MAP.md +5 -5
- package/docs/cli.md +20 -14
- package/docs/consumer-issue-reporting.md +1 -1
- package/docs/homebrew.md +7 -5
- package/docs/install.md +7 -3
- package/docs/kfd-agent-hub.md +1 -1
- package/docs/lifecycle-protocol.md +3 -3
- package/docs/migration-inventory.md +4 -4
- package/docs/ownership.md +4 -4
- package/docs/publication-artifacts.md +2 -2
- package/docs/release-candidate.md +4 -4
- package/docs/release-governance.md +13 -13
- package/docs/release-passport.md +6 -6
- package/docs/release-propagation.md +5 -5
- package/docs/reusable-build-surface.md +23 -23
- package/docs/runtime-train-validation.md +13 -13
- package/docs/shifu-gate-profiles.md +2 -2
- package/docs/site-bundle-contract.md +1 -1
- package/docs/stable-candidate-patrol.md +2 -2
- package/docs/toolkit-observability.md +14 -0
- package/docs/web-surface-deployments.md +7 -7
- package/fixtures/libnode-shaped/README.md +1 -1
- package/package.json +1 -1
- package/packages/core/issue-reporting.js +8 -3
- package/packages/core/logging.js +101 -0
- package/scripts/auditable-demo.mjs +1 -1
- package/scripts/check-inventory.mjs +36 -17
- package/scripts/init-repo.mjs +2 -2
- package/scripts/web-surface-production-release-pr.mjs +99 -0
- package/scripts/workflow-friction-report.mjs +10 -0
package/AGENTS.md
CHANGED
|
@@ -20,14 +20,14 @@ to `auto`; repositories only add channel configuration when they intentionally
|
|
|
20
20
|
override that policy:
|
|
21
21
|
|
|
22
22
|
```yaml
|
|
23
|
-
uses: kungfu-systems/buildchain/.github/workflows/build.yml@
|
|
23
|
+
uses: kungfu-systems/buildchain/.github/workflows/build.yml@v3
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
During the v2.12 alpha evaluation window, canaries call the same router through
|
|
27
27
|
the matching prerelease ref:
|
|
28
28
|
|
|
29
29
|
```yaml
|
|
30
|
-
uses: kungfu-systems/buildchain/.github/workflows/build.yml@
|
|
30
|
+
uses: kungfu-systems/buildchain/.github/workflows/build.yml@v3-alpha
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
The default policy selects `vN-alpha` for pull requests, development, nightly,
|
|
@@ -40,7 +40,7 @@ For new repositories, prefer the CLI:
|
|
|
40
40
|
```sh
|
|
41
41
|
npx @kungfu-tech/buildchain init --type package
|
|
42
42
|
npx @kungfu-tech/buildchain validate --require-version-state
|
|
43
|
-
npx @kungfu-tech/buildchain release --dry-run --target-ref alpha/
|
|
43
|
+
npx @kungfu-tech/buildchain release --dry-run --target-ref alpha/v3/v3.0
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
See [`docs/cli.md`](docs/cli.md), [`docs/lifecycle-protocol.md`](docs/lifecycle-protocol.md),
|
|
@@ -48,7 +48,7 @@ and [`docs/reusable-build-surface.md`](docs/reusable-build-surface.md) for the
|
|
|
48
48
|
consumer contract.
|
|
49
49
|
|
|
50
50
|
For temporary validation of an unreleased Buildchain runtime, keep the committed
|
|
51
|
-
workflow ref on `@
|
|
51
|
+
workflow ref on `@v3` and use the trusted `workflow_dispatch` `buildchain-ref`
|
|
52
52
|
pass-through. See [`docs/runtime-train-validation.md`](docs/runtime-train-validation.md).
|
|
53
53
|
|
|
54
54
|
## Building this repo
|
|
@@ -72,7 +72,7 @@ handoff in
|
|
|
72
72
|
|
|
73
73
|
- Open pull requests against the relevant `dev/*` channel branch.
|
|
74
74
|
- If a Buildchain change needs downstream validation before stable refs move,
|
|
75
|
-
publish a `train/
|
|
75
|
+
publish a `train/v3/v3.0/<capability>` ref and include the validation request
|
|
76
76
|
described in [`docs/runtime-train-validation.md`](docs/runtime-train-validation.md).
|
|
77
77
|
After validation succeeds, do not leave the train as a pending merge item:
|
|
78
78
|
merge the pull request into the active `dev/*` mainline and run the requested
|
package/README.md
CHANGED
|
@@ -48,21 +48,19 @@ or protocol evidence through the repository issue tracker.
|
|
|
48
48
|
|
|
49
49
|
## Install and Verify
|
|
50
50
|
|
|
51
|
-
For
|
|
52
|
-
|
|
51
|
+
For v3, use the published npm package and verify the release passport before
|
|
52
|
+
trusting release evidence:
|
|
53
53
|
|
|
54
54
|
```bash
|
|
55
|
-
|
|
56
|
-
curl -LO https://github.com/kungfu-systems/buildchain/releases/download/
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
npx @kungfu-tech/buildchain verify release-passport buildchain.release.json
|
|
60
|
-
tar -xzf buildchain-x86_64-unknown-linux-gnu.tar.gz
|
|
61
|
-
./buildchain version
|
|
55
|
+
curl -LO https://github.com/kungfu-systems/buildchain/releases/download/v3.0.0/buildchain.release.json
|
|
56
|
+
curl -LO https://github.com/kungfu-systems/buildchain/releases/download/v3.0.0/artifact-evidence.json
|
|
57
|
+
npx @kungfu-tech/buildchain@3.0.0 verify release-passport buildchain.release.json
|
|
58
|
+
npx @kungfu-tech/buildchain@3.0.0 version
|
|
62
59
|
```
|
|
63
60
|
|
|
64
|
-
|
|
65
|
-
|
|
61
|
+
The v3.0.0 release publishes evidence assets but no standalone platform archives.
|
|
62
|
+
The names below describe the optional archive contract used by legacy release
|
|
63
|
+
lines:
|
|
66
64
|
|
|
67
65
|
- `buildchain-x86_64-unknown-linux-gnu.tar.gz`
|
|
68
66
|
- `buildchain-aarch64-apple-darwin.tar.gz`
|
|
@@ -168,13 +166,13 @@ Consumers can report Buildchain-owned workflow failures directly to the
|
|
|
168
166
|
Buildchain repository with a scoped issue-write token:
|
|
169
167
|
|
|
170
168
|
```yaml
|
|
171
|
-
- uses: kungfu-systems/buildchain/actions/report-buildchain-issue@
|
|
169
|
+
- uses: kungfu-systems/buildchain/actions/report-buildchain-issue@v3
|
|
172
170
|
if: failure()
|
|
173
171
|
with:
|
|
174
172
|
token: ${{ steps.buildchain-issue-token.outputs.token }}
|
|
175
173
|
summary: "Reusable build failed before artifact finalization"
|
|
176
174
|
failure-code: reusable-build-failed
|
|
177
|
-
buildchain-ref:
|
|
175
|
+
buildchain-ref: v3
|
|
178
176
|
diagnostics-path: .buildchain/artifacts/diagnostics.json
|
|
179
177
|
```
|
|
180
178
|
|
|
@@ -190,7 +188,7 @@ Bootstrap a repository:
|
|
|
190
188
|
```bash
|
|
191
189
|
npx @kungfu-tech/buildchain init --type package --package-manager pnpm
|
|
192
190
|
npx @kungfu-tech/buildchain validate --require-version-state
|
|
193
|
-
npx @kungfu-tech/buildchain release --dry-run --target-ref alpha/
|
|
191
|
+
npx @kungfu-tech/buildchain release --dry-run --target-ref alpha/v3/v3.0
|
|
194
192
|
```
|
|
195
193
|
|
|
196
194
|
Buildchain supports package and non-package projects through
|
|
@@ -245,15 +243,15 @@ Stable consumers should reference actions and workflows through floating major
|
|
|
245
243
|
refs after reviewing the exact release passport:
|
|
246
244
|
|
|
247
245
|
```yaml
|
|
248
|
-
uses: kungfu-systems/buildchain/actions/validate-config@
|
|
246
|
+
uses: kungfu-systems/buildchain/actions/validate-config@v3
|
|
249
247
|
```
|
|
250
248
|
|
|
251
249
|
```yaml
|
|
252
|
-
uses: kungfu-systems/buildchain/.github/workflows/build.yml@
|
|
250
|
+
uses: kungfu-systems/buildchain/.github/workflows/build.yml@v3
|
|
253
251
|
```
|
|
254
252
|
|
|
255
253
|
```yaml
|
|
256
|
-
uses: kungfu-systems/buildchain/.github/workflows/release-candidate-promote.yml@
|
|
254
|
+
uses: kungfu-systems/buildchain/.github/workflows/release-candidate-promote.yml@v3
|
|
257
255
|
```
|
|
258
256
|
|
|
259
257
|
## Release Model
|
|
@@ -6,13 +6,13 @@ compatibility refs from buildchain release channels:
|
|
|
6
6
|
- `alpha/v2/v2.0` creates or reuses the next exact prerelease tag such as
|
|
7
7
|
`v2.0.1-alpha.0`, writes that version into package version state, points the
|
|
8
8
|
alpha and dev channel branches at the version commit, then promotes
|
|
9
|
-
`v2.0-alpha` and, when this is the highest published alpha minor, `
|
|
9
|
+
`v2.0-alpha` and, when this is the highest published alpha minor, `v3-alpha`;
|
|
10
10
|
- `release/v2/v2.0` creates or reuses the next exact release tag such as
|
|
11
11
|
`v2.0.0`, writes that version into package version state, points the release
|
|
12
12
|
channel branch and release tags at the release commit, then prepares a second
|
|
13
13
|
source commit for the next exact prerelease tag such as `v2.0.1-alpha.0` and
|
|
14
14
|
points the alpha/dev channel branches plus `v2.0-alpha` at that prerelease
|
|
15
|
-
commit, and moves `
|
|
15
|
+
commit, and moves `v3-alpha` only if no higher v2 minor has published an alpha;
|
|
16
16
|
- `publish-gate/major` accepts a reviewed PR from a production release line such
|
|
17
17
|
as `release/v2/v2.0`, writes the next major production version such as
|
|
18
18
|
`v3.0.0`, points `publish-gate/major`, `release/v3/v3.0`, `v3.0`, and `v3`
|
|
@@ -129,7 +129,7 @@ Promotion can also own external publish side effects. Enable this only from a
|
|
|
129
129
|
trusted channel workflow:
|
|
130
130
|
|
|
131
131
|
```yaml
|
|
132
|
-
- uses: kungfu-systems/buildchain/actions/promote-buildchain-ref@
|
|
132
|
+
- uses: kungfu-systems/buildchain/actions/promote-buildchain-ref@v3
|
|
133
133
|
with:
|
|
134
134
|
token: ${{ secrets.BUILDCHAIN_PROMOTION_TOKEN }}
|
|
135
135
|
generated-ref-update-token: ${{ github.token }}
|
|
@@ -140,7 +140,7 @@ trusted channel workflow:
|
|
|
140
140
|
publish-auth: trusted-publishing
|
|
141
141
|
publish-required-artifacts-json: >-
|
|
142
142
|
[
|
|
143
|
-
{"kind":"npm","name":"@kungfu-tech/buildchain","ref":"
|
|
143
|
+
{"kind":"npm","name":"@kungfu-tech/buildchain","ref":"3.0.0","digest":"sha256:..."}
|
|
144
144
|
]
|
|
145
145
|
```
|
|
146
146
|
|
|
@@ -149,7 +149,7 @@ workflow, keep the publish entrypoint on the `publish-gate/*` source-lock
|
|
|
149
149
|
contract:
|
|
150
150
|
|
|
151
151
|
```yaml
|
|
152
|
-
- uses: kungfu-systems/buildchain/actions/promote-buildchain-ref@
|
|
152
|
+
- uses: kungfu-systems/buildchain/actions/promote-buildchain-ref@v3
|
|
153
153
|
with:
|
|
154
154
|
token: ${{ secrets.BUILDCHAIN_PROMOTION_TOKEN }}
|
|
155
155
|
sha: ${{ needs.build.outputs.publish-source-sha }}
|
|
@@ -211,7 +211,7 @@ For promote-only release candidates, attach the PR-stage reusable build evidence
|
|
|
211
211
|
and fail before publish-gate side effects if it no longer matches:
|
|
212
212
|
|
|
213
213
|
```yaml
|
|
214
|
-
- uses: kungfu-systems/buildchain/actions/promote-buildchain-ref@
|
|
214
|
+
- uses: kungfu-systems/buildchain/actions/promote-buildchain-ref@v3
|
|
215
215
|
with:
|
|
216
216
|
token: ${{ secrets.BUILDCHAIN_PROMOTION_TOKEN }}
|
|
217
217
|
sha: ${{ needs.build.outputs.publish-source-sha }}
|
|
@@ -434,13 +434,13 @@ The tag names intentionally follow the old ABV release semantics:
|
|
|
434
434
|
exact release tags are `vX.Y.Z`, exact alpha tags are `vX.Y.Z-alpha.N`, floating
|
|
435
435
|
release tags are minor/major tags such as `v2.0` and `v2`, and floating alpha
|
|
436
436
|
tags are minor-line tags such as `v2.0-alpha` plus cross-minor major tags such
|
|
437
|
-
as `
|
|
437
|
+
as `v3-alpha`. A major alpha tag only moves for the highest minor in that major
|
|
438
438
|
with a published alpha, so older-line maintenance cannot roll consumers back.
|
|
439
439
|
Bare tags such as `1.0.0` are not
|
|
440
440
|
maintained as buildchain release entrypoints.
|
|
441
441
|
|
|
442
442
|
Repository rulesets should protect exact tags, not every `v*` tag. A ruleset
|
|
443
|
-
such as `refs/tags/v*` also protects floating channel tags like `v2.0-alpha` and `
|
|
443
|
+
such as `refs/tags/v*` also protects floating channel tags like `v2.0-alpha` and `v3-alpha`,
|
|
444
444
|
which Buildchain must update after exact tags and publish evidence are durable.
|
|
445
445
|
Use an exact-tag rule such as `refs/tags/v*.*.*` for immutable evidence tags and
|
|
446
446
|
leave floating channel tags mutable for the promotion token.
|
|
@@ -19,7 +19,7 @@ organization.
|
|
|
19
19
|
owner: kungfu-systems
|
|
20
20
|
repositories: buildchain
|
|
21
21
|
|
|
22
|
-
- uses: kungfu-systems/buildchain/actions/report-buildchain-issue@
|
|
22
|
+
- uses: kungfu-systems/buildchain/actions/report-buildchain-issue@v3
|
|
23
23
|
if: failure()
|
|
24
24
|
with:
|
|
25
25
|
token: ${{ steps.buildchain-issue-token.outputs.token }}
|
|
@@ -66,7 +66,7 @@ steps:
|
|
|
66
66
|
owner: kungfu-systems
|
|
67
67
|
repositories: buildchain
|
|
68
68
|
|
|
69
|
-
- uses: kungfu-systems/buildchain/actions/report-buildchain-issue@
|
|
69
|
+
- uses: kungfu-systems/buildchain/actions/report-buildchain-issue@v3
|
|
70
70
|
if: failure()
|
|
71
71
|
with:
|
|
72
72
|
token: ${{ steps.buildchain-issue-token.outputs.token || secrets.BUILDCHAIN_ISSUE_TOKEN || secrets.BUILDCHAIN_PROMOTION_TOKEN || github.token }}
|
|
@@ -4,7 +4,7 @@ Run a Buildchain lifecycle stage or an explicit command and write a deterministi
|
|
|
4
4
|
artifact manifest.
|
|
5
5
|
|
|
6
6
|
```yaml
|
|
7
|
-
- uses: kungfu-systems/buildchain/actions/run-lifecycle@
|
|
7
|
+
- uses: kungfu-systems/buildchain/actions/run-lifecycle@v3
|
|
8
8
|
with:
|
|
9
9
|
stage: build
|
|
10
10
|
required: "true"
|
|
@@ -10,7 +10,7 @@ the actual build should not run yet.
|
|
|
10
10
|
## Usage
|
|
11
11
|
|
|
12
12
|
```yaml
|
|
13
|
-
- uses: kungfu-systems/buildchain/actions/validate-config@
|
|
13
|
+
- uses: kungfu-systems/buildchain/actions/validate-config@v3
|
|
14
14
|
with:
|
|
15
15
|
require-version-state: "true"
|
|
16
16
|
require-lifecycle-stages: "install,build,verify"
|
package/bin/buildchain.mjs
CHANGED
|
@@ -296,15 +296,15 @@ Examples:
|
|
|
296
296
|
buildchain validate --require-version-state --require-lifecycle-stages build,verify
|
|
297
297
|
buildchain lifecycle run build --artifact-path dist --artifact-name "{repo}-{version}-{platform}"
|
|
298
298
|
buildchain npm dry-run --json
|
|
299
|
-
buildchain release --dry-run --target-ref alpha/
|
|
300
|
-
buildchain release line open --major
|
|
299
|
+
buildchain release --dry-run --target-ref alpha/v3/v3.0
|
|
300
|
+
buildchain release line open --major 3 --minor 1 --source-ref release/v3/v3.0 --json
|
|
301
301
|
buildchain span --event native.build -- cmake --build build
|
|
302
|
-
buildchain collect github-release --tag
|
|
302
|
+
buildchain collect github-release --tag v3.0.0 --assets-dir dist --output-dir .buildchain/release-passport
|
|
303
303
|
buildchain create publication-admission --input-json admission-input.json --output admission.json
|
|
304
304
|
buildchain create runner-provenance --input-json runner-input.json --output runner.json
|
|
305
305
|
buildchain verify release-passport .buildchain/release-passport/buildchain.release.json
|
|
306
306
|
buildchain verify publication-admission admission.json --registry-json publication-authority-registry.json --runner-json runner.json --control-plane-audit-json control-plane.json --expected-json expected.json --json
|
|
307
|
-
buildchain audit publication-control-plane --repository kungfu-systems/buildchain --branch release/
|
|
307
|
+
buildchain audit publication-control-plane --repository kungfu-systems/buildchain --branch release/v3/v3.0
|
|
308
308
|
buildchain verify artifact ./dist/buildchain-x86_64-unknown-linux-gnu.tar.gz --passport .buildchain/release-passport/buildchain.release.json
|
|
309
309
|
buildchain verify artifact-envelope .buildchain/kfx/artifact-verification-envelope.json --json
|
|
310
310
|
buildchain project kfx-admission .buildchain/kfx/artifact-verification-envelope.json --json
|
|
@@ -1542,6 +1542,13 @@ async function main(argv = process.argv.slice(2)) {
|
|
|
1542
1542
|
process.stdout.write(`buildchain log summary: ${summary.eventCount} events\n`);
|
|
1543
1543
|
process.stdout.write(`sources: ${Object.keys(summary.sources).join(", ") || "none"}\n`);
|
|
1544
1544
|
process.stdout.write(`phases: ${Object.keys(summary.phases).join(", ") || "none"}\n`);
|
|
1545
|
+
if (summary.controlPlane.eventCount > 0) {
|
|
1546
|
+
process.stdout.write(
|
|
1547
|
+
`control plane: ${summary.controlPlane.eventCount} events, ` +
|
|
1548
|
+
`incident reuse ${summary.controlPlane.workflowFriction.incidentReuseRate ?? "n/a"}, ` +
|
|
1549
|
+
`release-intent suppression ${summary.controlPlane.releaseIntent.suppressionRate ?? "n/a"}\n`,
|
|
1550
|
+
);
|
|
1551
|
+
}
|
|
1545
1552
|
}
|
|
1546
1553
|
return;
|
|
1547
1554
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"product": {
|
|
5
5
|
"name": "Buildchain",
|
|
6
6
|
"package": "@kungfu-tech/buildchain",
|
|
7
|
-
"version": "3.0.1-alpha.
|
|
7
|
+
"version": "3.0.1-alpha.4",
|
|
8
8
|
"repository": "https://github.com/kungfu-systems/buildchain"
|
|
9
9
|
},
|
|
10
10
|
"majorLine": "v3",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"retryable GitHub fallback fetches use a bounded attempt budget before exact source SHA and tree verification"
|
|
51
51
|
],
|
|
52
52
|
"breakingDigest": "sha256:a6a35370d6b0d0f46e1b2712dcc01961fe53c2febde95409a27a485c10a36650",
|
|
53
|
-
"auditDigest": "sha256:
|
|
53
|
+
"auditDigest": "sha256:dcb2a0e383c6cced598ec198f8eacb9c6c141967624864eba81ca8f392a04326"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"contractVersion": 1,
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
"promotion reuses PR-stage release-candidate artifacts and does not run the heavy native build matrix"
|
|
213
213
|
],
|
|
214
214
|
"breakingDigest": "sha256:aa30f22e3af0a89841310bdbdc900844dd95a66974db173fa140a71bbd7e82c0",
|
|
215
|
-
"auditDigest": "sha256:
|
|
215
|
+
"auditDigest": "sha256:e7d185bca91ebc65d7c42f6bbe72e1466c3be2b651143d75af6af08711f51b8c"
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
218
|
"contractVersion": 1,
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
"channel-aware artifact host facts are checked against the deploy plan before adapter side effects"
|
|
257
257
|
],
|
|
258
258
|
"breakingDigest": "sha256:da569f90374e878948e3d5160ed9929338ce0572473ca8ee54867b0fe1aaeace",
|
|
259
|
-
"auditDigest": "sha256:
|
|
259
|
+
"auditDigest": "sha256:6277559c749bcc9ae6c737b068b44c478e796377273acc9fc22ab9804be409d1"
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
"contractVersion": 1,
|
|
@@ -468,7 +468,7 @@
|
|
|
468
468
|
"missing issue permissions produce a copyable summary fallback"
|
|
469
469
|
],
|
|
470
470
|
"breakingDigest": "sha256:575a2cb02cdb2e61bb2e84d5bbaaf64b430aa5d7936645660b592de4549d81b0",
|
|
471
|
-
"auditDigest": "sha256:
|
|
471
|
+
"auditDigest": "sha256:10b766e026f8089235dfd6a9356cdbfa42c5dd290ba3003e5fcfd886432a0a34"
|
|
472
472
|
},
|
|
473
473
|
{
|
|
474
474
|
"contractVersion": 1,
|
|
@@ -601,7 +601,7 @@
|
|
|
601
601
|
"README badge block checks and writes are generated from machine-readable repository facts"
|
|
602
602
|
],
|
|
603
603
|
"breakingDigest": "sha256:90a73892b2d6c214048448d5f45df75639bdf7b7e8fefd9c596e04b087407bcc",
|
|
604
|
-
"auditDigest": "sha256:
|
|
604
|
+
"auditDigest": "sha256:c9cc2c172d70619e814e10a4cef551b93e52c3b35ae27d288c87d3c7f323eb51"
|
|
605
605
|
},
|
|
606
606
|
{
|
|
607
607
|
"contractVersion": 1,
|
|
@@ -691,7 +691,7 @@
|
|
|
691
691
|
"manual entries carry source file digests so downstream sites and agents can detect stale hand-written documentation"
|
|
692
692
|
],
|
|
693
693
|
"breakingDigest": "sha256:7d0d2819e3a3e72989d9c57b5efe9d0bc0a79bc0f2c82a0c7b9d6c5a211a91f2",
|
|
694
|
-
"auditDigest": "sha256:
|
|
694
|
+
"auditDigest": "sha256:b12d87db5c06a7012a5056485924861f9de85e157bc5e70ca415bec4ab23c28d"
|
|
695
695
|
},
|
|
696
696
|
{
|
|
697
697
|
"contractVersion": 1,
|
|
@@ -713,7 +713,7 @@
|
|
|
713
713
|
"agents can discover supported Node APIs without importing internal file paths"
|
|
714
714
|
],
|
|
715
715
|
"breakingDigest": "sha256:48f925608d3e2131d90936b07dc2a30341204cae3e6e785c0f77d61ad755c945",
|
|
716
|
-
"auditDigest": "sha256:
|
|
716
|
+
"auditDigest": "sha256:8f22ca61a4569c22388182994b26527132998dc57f5e4801fe64fafe8f72e08b"
|
|
717
717
|
},
|
|
718
718
|
{
|
|
719
719
|
"contractVersion": 1,
|
|
@@ -764,7 +764,7 @@
|
|
|
764
764
|
"controllerDescriptor": {
|
|
765
765
|
"contract": "buildchain.controller-descriptor/v1",
|
|
766
766
|
"digest": "sha256:373723a73d188194d389dee04c394d3b79cb0c016a370f2f5d0f60979a02ed48",
|
|
767
|
-
"registryDigest": "sha256:
|
|
767
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
768
768
|
"inputClassifications": {
|
|
769
769
|
"buildchain-ref": {
|
|
770
770
|
"classification": "included",
|
|
@@ -923,7 +923,7 @@
|
|
|
923
923
|
"controllerDescriptor": {
|
|
924
924
|
"contract": "buildchain.controller-descriptor/v1",
|
|
925
925
|
"digest": "sha256:a06607b6ebd3fb00b77519098c81d6fb5e9943ec268aebb1e5fdbefef6e598ad",
|
|
926
|
-
"registryDigest": "sha256:
|
|
926
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
927
927
|
"inputClassifications": {
|
|
928
928
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN": {
|
|
929
929
|
"classification": "redacted",
|
|
@@ -1229,7 +1229,7 @@
|
|
|
1229
1229
|
"missing receipts are non-qualifying and must not be represented as a successful controller run"
|
|
1230
1230
|
],
|
|
1231
1231
|
"breakingDigest": "sha256:30745921541e9b0f70475bb2178c2559f6aef248f6680670ccd44d8c5a69a6b1",
|
|
1232
|
-
"auditDigest": "sha256:
|
|
1232
|
+
"auditDigest": "sha256:dcb2a0e383c6cced598ec198f8eacb9c6c141967624864eba81ca8f392a04326"
|
|
1233
1233
|
},
|
|
1234
1234
|
{
|
|
1235
1235
|
"contractVersion": 1,
|
|
@@ -1347,7 +1347,7 @@
|
|
|
1347
1347
|
"controllerDescriptor": {
|
|
1348
1348
|
"contract": "buildchain.controller-descriptor/v1",
|
|
1349
1349
|
"digest": "sha256:4fc6c33bf5b429f8087ac752d5cf2a19f4a1cc30db01aae927a28cee1cf924f0",
|
|
1350
|
-
"registryDigest": "sha256:
|
|
1350
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
1351
1351
|
"inputClassifications": {
|
|
1352
1352
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN": {
|
|
1353
1353
|
"classification": "redacted",
|
|
@@ -1702,6 +1702,13 @@
|
|
|
1702
1702
|
"artifact-retention-days",
|
|
1703
1703
|
"buildchain-ref",
|
|
1704
1704
|
"buildchain-repository",
|
|
1705
|
+
"checkout-cache-fallback",
|
|
1706
|
+
"checkout-cache-fetch-attempts",
|
|
1707
|
+
"checkout-cache-github-timeout-seconds",
|
|
1708
|
+
"checkout-cache-mirror-url-template",
|
|
1709
|
+
"checkout-cache-mode",
|
|
1710
|
+
"checkout-cache-reference-repository-template",
|
|
1711
|
+
"checkout-cache-timeout-seconds",
|
|
1705
1712
|
"gate-command-json",
|
|
1706
1713
|
"gate-environment-json",
|
|
1707
1714
|
"gate-plan-command-json",
|
|
@@ -1720,8 +1727,8 @@
|
|
|
1720
1727
|
],
|
|
1721
1728
|
"controllerDescriptor": {
|
|
1722
1729
|
"contract": "buildchain.controller-descriptor/v1",
|
|
1723
|
-
"digest": "sha256:
|
|
1724
|
-
"registryDigest": "sha256:
|
|
1730
|
+
"digest": "sha256:bd2d12e2cda0802ab00d8964b4bd36f1630442b8d1bff83865840acd2d74f428",
|
|
1731
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
1725
1732
|
"inputClassifications": {
|
|
1726
1733
|
"artifact-name": {
|
|
1727
1734
|
"classification": "included",
|
|
@@ -1739,6 +1746,34 @@
|
|
|
1739
1746
|
"classification": "included",
|
|
1740
1747
|
"source": "workflow-call-input"
|
|
1741
1748
|
},
|
|
1749
|
+
"checkout-cache-fallback": {
|
|
1750
|
+
"classification": "digest-only",
|
|
1751
|
+
"source": "workflow-call-input"
|
|
1752
|
+
},
|
|
1753
|
+
"checkout-cache-fetch-attempts": {
|
|
1754
|
+
"classification": "digest-only",
|
|
1755
|
+
"source": "workflow-call-input"
|
|
1756
|
+
},
|
|
1757
|
+
"checkout-cache-github-timeout-seconds": {
|
|
1758
|
+
"classification": "digest-only",
|
|
1759
|
+
"source": "workflow-call-input"
|
|
1760
|
+
},
|
|
1761
|
+
"checkout-cache-mirror-url-template": {
|
|
1762
|
+
"classification": "digest-only",
|
|
1763
|
+
"source": "workflow-call-input"
|
|
1764
|
+
},
|
|
1765
|
+
"checkout-cache-mode": {
|
|
1766
|
+
"classification": "digest-only",
|
|
1767
|
+
"source": "workflow-call-input"
|
|
1768
|
+
},
|
|
1769
|
+
"checkout-cache-reference-repository-template": {
|
|
1770
|
+
"classification": "digest-only",
|
|
1771
|
+
"source": "workflow-call-input"
|
|
1772
|
+
},
|
|
1773
|
+
"checkout-cache-timeout-seconds": {
|
|
1774
|
+
"classification": "digest-only",
|
|
1775
|
+
"source": "workflow-call-input"
|
|
1776
|
+
},
|
|
1742
1777
|
"gate-command-json": {
|
|
1743
1778
|
"classification": "digest-only",
|
|
1744
1779
|
"source": "workflow-call-input"
|
|
@@ -1808,7 +1843,7 @@
|
|
|
1808
1843
|
"missing receipts are non-qualifying and must not be represented as a successful controller run"
|
|
1809
1844
|
],
|
|
1810
1845
|
"breakingDigest": "sha256:5f1868478b7ccd9fb79aea76bc771289d2ca6bd2dccd1abf57575426f1eae5fb",
|
|
1811
|
-
"auditDigest": "sha256:
|
|
1846
|
+
"auditDigest": "sha256:f57fabd5dd63bfd2640f0d1841c8c6c239009ea3f291a28670074b5742f99bb6"
|
|
1812
1847
|
},
|
|
1813
1848
|
{
|
|
1814
1849
|
"contractVersion": 1,
|
|
@@ -1894,7 +1929,7 @@
|
|
|
1894
1929
|
"controllerDescriptor": {
|
|
1895
1930
|
"contract": "buildchain.controller-descriptor/v1",
|
|
1896
1931
|
"digest": "sha256:c5274b37f04d0054559fdc8698c51bd0f0d8ae470baf163e9caa7699aa970575",
|
|
1897
|
-
"registryDigest": "sha256:
|
|
1932
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
1898
1933
|
"inputClassifications": {
|
|
1899
1934
|
"artifact-path": {
|
|
1900
1935
|
"classification": "digest-only",
|
|
@@ -2073,7 +2108,7 @@
|
|
|
2073
2108
|
"missing receipts are non-qualifying and must not be represented as a successful controller run"
|
|
2074
2109
|
],
|
|
2075
2110
|
"breakingDigest": "sha256:f14825324a16b51c2e9ed708ebe64e1932e05b6d5e0866f83aea8439decb4a27",
|
|
2076
|
-
"auditDigest": "sha256:
|
|
2111
|
+
"auditDigest": "sha256:6277559c749bcc9ae6c737b068b44c478e796377273acc9fc22ab9804be409d1"
|
|
2077
2112
|
},
|
|
2078
2113
|
{
|
|
2079
2114
|
"contractVersion": 1,
|
|
@@ -2138,7 +2173,7 @@
|
|
|
2138
2173
|
"controllerDescriptor": {
|
|
2139
2174
|
"contract": "buildchain.controller-descriptor/v1",
|
|
2140
2175
|
"digest": "sha256:6b132790b9798e8a5dfbe095701d8e024c160a08bc7c4bd477ee79feef7a9cfd",
|
|
2141
|
-
"registryDigest": "sha256:
|
|
2176
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
2142
2177
|
"inputClassifications": {
|
|
2143
2178
|
"artifact-name": {
|
|
2144
2179
|
"classification": "included",
|
|
@@ -2320,7 +2355,7 @@
|
|
|
2320
2355
|
"controllerDescriptor": {
|
|
2321
2356
|
"contract": "buildchain.controller-descriptor/v1",
|
|
2322
2357
|
"digest": "sha256:6d71409659fbf8543c7e520b0c493d8afe86bdf60286b860bb917f0041ebc173",
|
|
2323
|
-
"registryDigest": "sha256:
|
|
2358
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
2324
2359
|
"inputClassifications": {
|
|
2325
2360
|
"artifact-name": {
|
|
2326
2361
|
"classification": "included",
|
|
@@ -2625,7 +2660,7 @@
|
|
|
2625
2660
|
"controllerDescriptor": {
|
|
2626
2661
|
"contract": "buildchain.controller-descriptor/v1",
|
|
2627
2662
|
"digest": "sha256:2bae7310eb27f48a3afc6b7f993872d6b6121cf3f67ad4d6e2da35b254c4d047",
|
|
2628
|
-
"registryDigest": "sha256:
|
|
2663
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
2629
2664
|
"inputClassifications": {
|
|
2630
2665
|
"BUILDCHAIN_ISSUE_APP_ID": {
|
|
2631
2666
|
"classification": "redacted",
|
|
@@ -3008,7 +3043,7 @@
|
|
|
3008
3043
|
"missing receipts are non-qualifying and must not be represented as a successful controller run"
|
|
3009
3044
|
],
|
|
3010
3045
|
"breakingDigest": "sha256:015d8de793adbd4c539416be7d7512e18cc92097e629b0203fa06d2c183e98bd",
|
|
3011
|
-
"auditDigest": "sha256:
|
|
3046
|
+
"auditDigest": "sha256:e7d185bca91ebc65d7c42f6bbe72e1466c3be2b651143d75af6af08711f51b8c"
|
|
3012
3047
|
},
|
|
3013
3048
|
{
|
|
3014
3049
|
"contractVersion": 1,
|
|
@@ -3069,7 +3104,7 @@
|
|
|
3069
3104
|
"controllerDescriptor": {
|
|
3070
3105
|
"contract": "buildchain.controller-descriptor/v1",
|
|
3071
3106
|
"digest": "sha256:f97656a8df0758c8e404d5b7c387529256a1ec45d1748f8efb6847a3256b1216",
|
|
3072
|
-
"registryDigest": "sha256:
|
|
3107
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
3073
3108
|
"inputClassifications": {
|
|
3074
3109
|
"buildchain-ref": {
|
|
3075
3110
|
"classification": "included",
|
|
@@ -3192,7 +3227,7 @@
|
|
|
3192
3227
|
"controllerDescriptor": {
|
|
3193
3228
|
"contract": "buildchain.controller-descriptor/v1",
|
|
3194
3229
|
"digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555",
|
|
3195
|
-
"registryDigest": "sha256:
|
|
3230
|
+
"registryDigest": "sha256:282fc61919afefc041c020fdf2ef10f5c00e504fd459fa5bf588867b5a81ed4e",
|
|
3196
3231
|
"inputClassifications": {}
|
|
3197
3232
|
},
|
|
3198
3233
|
"guarantees": [
|
|
@@ -3206,5 +3241,5 @@
|
|
|
3206
3241
|
}
|
|
3207
3242
|
],
|
|
3208
3243
|
"compatibilityDigest": "sha256:008b1c5a90a787cf30106829ac7aca68ab501f6d9c375e415d9c5c6b89039f46",
|
|
3209
|
-
"contractDigest": "sha256:
|
|
3244
|
+
"contractDigest": "sha256:0cd86ea80b137c5f5a43e8ca14565773fa8958fd946bdcff71856fde940d4e6b"
|
|
3210
3245
|
}
|