@kungfu-tech/buildchain 2.12.1 → 2.12.2
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 +10 -5
- package/dist/site/buildchain-contract.json +6 -6
- package/dist/site/buildchain-site.json +73 -21
- package/dist/site/capability-registry.json +2 -2
- package/dist/site/kfd-claims.json +59 -10
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +3 -3
- package/dist/site/node-api-registry.json +1 -1
- package/dist/site/page-registry.json +62 -11
- package/dist/site/public-surface-audit.json +40 -7
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +7 -7
- package/dist/site/workflow-registry.json +35 -3
- package/docs/MAP.md +2 -1
- package/docs/lifecycle-protocol.md +16 -0
- package/docs/release-governance.md +7 -0
- package/docs/shifu-gate-profiles.md +163 -0
- package/docs/stable-candidate-patrol.md +23 -3
- package/package.json +1 -1
- package/packages/core/release-candidate.js +42 -0
- package/scripts/build-contract-core.mjs +21 -4
- package/scripts/check-inventory.mjs +4 -0
- package/scripts/gate-profile-core.mjs +413 -0
- package/scripts/generate-release-candidate-passport.mjs +4 -0
- package/scripts/shifu-gate-profile.mjs +351 -0
- package/scripts/stable-candidate-patrol.mjs +4 -0
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Buildchain
|
|
2
2
|
|
|
3
3
|
<!-- buildchain:badges:start -->
|
|
4
|
+
|
|
4
5
|
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
5
6
|
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
6
7
|
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
@@ -199,6 +200,9 @@ Buildchain's active GitHub Action surface is deliberately small:
|
|
|
199
200
|
|
|
200
201
|
The active reusable workflow surfaces are:
|
|
201
202
|
|
|
203
|
+
- `.github/workflows/.gate-profile.yml` for project-neutral Shifu Gate profile
|
|
204
|
+
planning, capability-aware runner dispatch, receipt validation, and one
|
|
205
|
+
stable aggregate check;
|
|
202
206
|
- `.github/workflows/.build.yml` for deterministic multi-platform build and
|
|
203
207
|
artifact contracts;
|
|
204
208
|
- `.github/workflows/build.yml` for the single-config channel router that uses
|
|
@@ -232,11 +236,11 @@ uses: kungfu-systems/buildchain/.github/workflows/release-candidate-promote.yml@
|
|
|
232
236
|
|
|
233
237
|
Buildchain treats a reviewed branch merge as release intent:
|
|
234
238
|
|
|
235
|
-
| Merge path
|
|
236
|
-
|
|
|
237
|
-
| `dev/vX/vX.Y -> alpha/vX/vX.Y`
|
|
238
|
-
| `alpha/vX/vX.Y -> release/vX/vX.Y`
|
|
239
|
-
| `release/vX/vX.Y -> publish-gate/major` | publish the next major from a reviewed production line | `v(X+1).0.0`
|
|
239
|
+
| Merge path | Meaning | Exact tag | Floating refs |
|
|
240
|
+
| --------------------------------------- | ------------------------------------------------------ | ---------------- | ---------------------------------------------------- |
|
|
241
|
+
| `dev/vX/vX.Y -> alpha/vX/vX.Y` | publish the next testable alpha for a minor line | `vX.Y.Z-alpha.N` | `vX.Y-alpha`, `alpha/vX/vX.Y`, `dev/vX/vX.Y` |
|
|
242
|
+
| `alpha/vX/vX.Y -> release/vX/vX.Y` | publish production for that minor line | `vX.Y.Z` | `vX.Y`, usually `vX`, `release/vX/vX.Y` |
|
|
243
|
+
| `release/vX/vX.Y -> publish-gate/major` | publish the next major from a reviewed production line | `v(X+1).0.0` | `v(X+1)`, `v(X+1).0`, new dev/alpha/release branches |
|
|
240
244
|
|
|
241
245
|
Exact tags are immutable. Floating channel tags and branches are machine-updated
|
|
242
246
|
by Buildchain and must remain writable by the release authority.
|
|
@@ -342,6 +346,7 @@ npm pack --dry-run --json --registry=https://registry.npmjs.org/
|
|
|
342
346
|
- [Site bundle contract](docs/site-bundle-contract.md)
|
|
343
347
|
- [Lifecycle protocol](docs/lifecycle-protocol.md)
|
|
344
348
|
- [Reusable build surface](docs/reusable-build-surface.md)
|
|
349
|
+
- [Shifu Gate profile orchestration](docs/shifu-gate-profiles.md)
|
|
345
350
|
- [Release candidate passport](docs/release-candidate.md)
|
|
346
351
|
- [Consumer issue reporting](docs/consumer-issue-reporting.md)
|
|
347
352
|
- [Publish transaction](docs/publish-transaction.md)
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"product": {
|
|
5
5
|
"name": "Buildchain",
|
|
6
6
|
"package": "@kungfu-tech/buildchain",
|
|
7
|
-
"version": "2.12.
|
|
7
|
+
"version": "2.12.2",
|
|
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:fe8c66aca800df5bac04bdf980ecf3dde1ab5b9047d20097b06258eabc38015a"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"contractVersion": 1,
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"alpha and stable channel selections use separate consumer contract locks by default"
|
|
90
90
|
],
|
|
91
91
|
"breakingDigest": "sha256:c4597dfa89e1a58f1023905092b849644f5c080abf150aeba9c7e1cd5ed43962",
|
|
92
|
-
"auditDigest": "sha256:
|
|
92
|
+
"auditDigest": "sha256:8ad1e931c901428daa8aa20d15ed66c58976666c646a88171f37be550788878f"
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
95
|
"contractVersion": 1,
|
|
@@ -481,7 +481,7 @@
|
|
|
481
481
|
"manual entries carry source file digests so downstream sites and agents can detect stale hand-written documentation"
|
|
482
482
|
],
|
|
483
483
|
"breakingDigest": "sha256:7d0d2819e3a3e72989d9c57b5efe9d0bc0a79bc0f2c82a0c7b9d6c5a211a91f2",
|
|
484
|
-
"auditDigest": "sha256:
|
|
484
|
+
"auditDigest": "sha256:def4f995282224c7072e4534aa8c8fa7d77b3497e5cd6f00098469da70b5ff6d"
|
|
485
485
|
},
|
|
486
486
|
{
|
|
487
487
|
"contractVersion": 1,
|
|
@@ -503,9 +503,9 @@
|
|
|
503
503
|
"agents can discover supported Node APIs without importing internal file paths"
|
|
504
504
|
],
|
|
505
505
|
"breakingDigest": "sha256:48f925608d3e2131d90936b07dc2a30341204cae3e6e785c0f77d61ad755c945",
|
|
506
|
-
"auditDigest": "sha256:
|
|
506
|
+
"auditDigest": "sha256:6c4078f847d70ba9d2cca1149e976828c5b0244f2e66cc5232cb79936388c5d5"
|
|
507
507
|
}
|
|
508
508
|
],
|
|
509
509
|
"compatibilityDigest": "sha256:2090784977bc7d54fc647215ef73532b9db26147a0b40ec3f56c31d611d806cc",
|
|
510
|
-
"contractDigest": "sha256:
|
|
510
|
+
"contractDigest": "sha256:db57a57a03db285dc2d3970c3ef2dc00e72bd95a3fd2791df8990c49d847aa3f"
|
|
511
511
|
}
|