@kungfu-tech/buildchain 2.11.14-alpha.5 → 2.11.14-alpha.7
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 +11 -0
- package/actions/promote-buildchain-ref/README.md +8 -5
- package/dist/site/buildchain-contract.json +5 -5
- package/dist/site/buildchain-site.json +27 -22
- package/dist/site/capability-registry.json +1 -1
- package/dist/site/kfd-claims.json +19 -5
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +5 -5
- package/dist/site/page-registry.json +17 -12
- package/dist/site/public-surface-audit.json +9 -3
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-model.json +1 -1
- package/dist/site/site-manifest.json +9 -9
- package/dist/site/workflow-registry.json +9 -0
- package/docs/MAP.md +3 -1
- package/docs/release-flow.md +9 -3
- package/docs/release-governance.md +43 -2
- package/docs/reusable-build-surface.md +16 -1
- package/docs/runtime-train-validation.md +14 -4
- package/package.json +1 -1
- package/packages/core/release-line-dry-run.js +9 -2
- package/scripts/check-inventory.mjs +53 -0
- package/scripts/generate-site-bundle.mjs +1 -1
- package/scripts/runtime-ref-core.mjs +32 -5
package/AGENTS.md
CHANGED
|
@@ -24,6 +24,17 @@ uses: kungfu-systems/buildchain/actions/promote-buildchain-ref@v2
|
|
|
24
24
|
uses: kungfu-systems/buildchain/.github/workflows/.build.yml@v2
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
Consumers intentionally following the alpha channel should pair the workflow
|
|
28
|
+
shell with the matching floating ref:
|
|
29
|
+
|
|
30
|
+
```yaml
|
|
31
|
+
uses: kungfu-systems/buildchain/.github/workflows/.build.yml@v2-alpha
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
The reusable workflow derives its runtime from that called-workflow ref.
|
|
35
|
+
Passing `buildchain-ref: v2-alpha` explicitly is also accepted as an official
|
|
36
|
+
channel selection; it is not treated as a train or exact-SHA override.
|
|
37
|
+
|
|
27
38
|
For new repositories, prefer the CLI:
|
|
28
39
|
|
|
29
40
|
```sh
|
|
@@ -6,18 +6,18 @@ 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`;
|
|
9
|
+
`v2.0-alpha` and, when this is the highest published alpha minor, `v2-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;
|
|
15
|
+
commit, and moves `v2-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`
|
|
19
19
|
at that release commit, then prepares `v3.0.1-alpha.0` for
|
|
20
|
-
`alpha/v3/v3.0`, `dev/v3/v3.0`,
|
|
20
|
+
`alpha/v3/v3.0`, `dev/v3/v3.0`, `v3.0-alpha`, and `v3-alpha`. The older `major-gate`
|
|
21
21
|
branch name is a compatibility alias only.
|
|
22
22
|
|
|
23
23
|
The release branch name defines the minor line. For example,
|
|
@@ -359,11 +359,14 @@ declare the same release authority twice.
|
|
|
359
359
|
The tag names intentionally follow the old ABV release semantics:
|
|
360
360
|
exact release tags are `vX.Y.Z`, exact alpha tags are `vX.Y.Z-alpha.N`, floating
|
|
361
361
|
release tags are minor/major tags such as `v2.0` and `v2`, and floating alpha
|
|
362
|
-
tags are minor-line tags such as `v2.0-alpha
|
|
362
|
+
tags are minor-line tags such as `v2.0-alpha` plus cross-minor major tags such
|
|
363
|
+
as `v2-alpha`. A major alpha tag only moves for the highest minor in that major
|
|
364
|
+
with a published alpha, so older-line maintenance cannot roll consumers back.
|
|
365
|
+
Bare tags such as `1.0.0` are not
|
|
363
366
|
maintained as buildchain release entrypoints.
|
|
364
367
|
|
|
365
368
|
Repository rulesets should protect exact tags, not every `v*` tag. A ruleset
|
|
366
|
-
such as `refs/tags/v*` also protects floating channel tags like `v2.0-alpha`,
|
|
369
|
+
such as `refs/tags/v*` also protects floating channel tags like `v2.0-alpha` and `v2-alpha`,
|
|
367
370
|
which Buildchain must update after exact tags and publish evidence are durable.
|
|
368
371
|
Use an exact-tag rule such as `refs/tags/v*.*.*` for immutable evidence tags and
|
|
369
372
|
leave floating channel tags mutable for the promotion token.
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"product": {
|
|
5
5
|
"name": "Buildchain",
|
|
6
6
|
"package": "@kungfu-tech/buildchain",
|
|
7
|
-
"version": "2.11.14-alpha.
|
|
7
|
+
"version": "2.11.14-alpha.7",
|
|
8
8
|
"repository": "https://github.com/kungfu-systems/buildchain"
|
|
9
9
|
},
|
|
10
10
|
"majorLine": "v2",
|
|
@@ -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:d07b446c85a29ba854baa8438d6f7aca15ebccaf7673527d6a1d2912b2fb66e6"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"contractVersion": 1,
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"channel-aware artifact host facts are checked against the deploy plan before adapter side effects"
|
|
142
142
|
],
|
|
143
143
|
"breakingDigest": "sha256:da569f90374e878948e3d5160ed9929338ce0572473ca8ee54867b0fe1aaeace",
|
|
144
|
-
"auditDigest": "sha256:
|
|
144
|
+
"auditDigest": "sha256:9834ea899b16cb5603551df460b9e62fa4229c320d13f91a2353b696563fe07c"
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
"contractVersion": 1,
|
|
@@ -442,7 +442,7 @@
|
|
|
442
442
|
"manual entries carry source file digests so downstream sites and agents can detect stale hand-written documentation"
|
|
443
443
|
],
|
|
444
444
|
"breakingDigest": "sha256:7d0d2819e3a3e72989d9c57b5efe9d0bc0a79bc0f2c82a0c7b9d6c5a211a91f2",
|
|
445
|
-
"auditDigest": "sha256:
|
|
445
|
+
"auditDigest": "sha256:ea66c5781a32f641938a7b3b6554eec6e26e6beda67b549c4b9485c6c1a6b776"
|
|
446
446
|
},
|
|
447
447
|
{
|
|
448
448
|
"contractVersion": 1,
|
|
@@ -468,5 +468,5 @@
|
|
|
468
468
|
}
|
|
469
469
|
],
|
|
470
470
|
"compatibilityDigest": "sha256:1396e42444aaf3f26a40121faf3d599eb9db13537f627fc8dbcef2475af8af44",
|
|
471
|
-
"contractDigest": "sha256:
|
|
471
|
+
"contractDigest": "sha256:cac32376b91ac2f828d7e9053bbb678d4e2a1d8503f2cd1c2252a04277b37623"
|
|
472
472
|
}
|