@kungfu-tech/buildchain 2.14.2-alpha.0 → 2.14.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/bin/buildchain.mjs +2 -2
- package/dist/site/buildchain-contract.json +5 -5
- package/dist/site/buildchain-site.json +16 -16
- package/dist/site/capability-registry.json +1 -1
- package/dist/site/kfd-claims.json +21 -7
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +4 -4
- package/dist/site/node-api-registry.json +3 -3
- package/dist/site/page-registry.json +8 -8
- package/dist/site/public-surface-audit.json +20 -4
- package/dist/site/publication-authority-registry.json +19 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +8 -8
- package/dist/site/workflow-registry.json +14 -0
- package/docs/cli.md +28 -2
- package/docs/release-flow.md +6 -1
- package/docs/release-governance.md +16 -0
- package/docs/versioning.md +1 -0
- package/package.json +1 -1
- package/packages/core/buildchain-config.js +52 -0
- package/packages/core/buildchain-publication-authority.js +1 -0
- package/packages/core/release-line-bootstrap.js +14 -1
- package/scripts/dev-merge-queue.mjs +231 -16
package/bin/buildchain.mjs
CHANGED
|
@@ -195,7 +195,7 @@ function usage() {
|
|
|
195
195
|
buildchain inspect artifact <subject> [--passport <file-or-url>] [--npm-registry <url>] [--json]
|
|
196
196
|
buildchain doctor [--cwd <dir>] [--require-publish-source-lock] [--json]
|
|
197
197
|
buildchain dev merge-queue --repository <owner/repo> --branch <dev/vN/vN.M>
|
|
198
|
-
--workflow <required-workflow.yml>... [--cwd <dir>]
|
|
198
|
+
[--from-config | --workflow <required-workflow.yml>...] [--cwd <dir>]
|
|
199
199
|
[--check-response-timeout-minutes <n>]
|
|
200
200
|
[--max-entries-to-build <n>] [--apply]
|
|
201
201
|
buildchain log <info|warn|error> --event <name> [--phase <phase>]
|
|
@@ -1446,7 +1446,7 @@ async function main(argv = process.argv.slice(2)) {
|
|
|
1446
1446
|
if (command === "dev") {
|
|
1447
1447
|
const [subcommand = "", ...devArgs] = args;
|
|
1448
1448
|
if (subcommand !== "merge-queue") {
|
|
1449
|
-
throw new Error("usage: buildchain dev merge-queue --repository <owner/repo> --branch <dev/vN/vN.M> --workflow <path>...");
|
|
1449
|
+
throw new Error("usage: buildchain dev merge-queue --repository <owner/repo> --branch <dev/vN/vN.M> [--from-config | --workflow <path>...]");
|
|
1450
1450
|
}
|
|
1451
1451
|
runScript("dev-merge-queue.mjs", devArgs);
|
|
1452
1452
|
return;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"product": {
|
|
5
5
|
"name": "Buildchain",
|
|
6
6
|
"package": "@kungfu-tech/buildchain",
|
|
7
|
-
"version": "2.14.2
|
|
7
|
+
"version": "2.14.2",
|
|
8
8
|
"repository": "https://github.com/kungfu-systems/buildchain"
|
|
9
9
|
},
|
|
10
10
|
"majorLine": "v2",
|
|
@@ -437,7 +437,7 @@
|
|
|
437
437
|
"README badge block checks and writes are generated from machine-readable repository facts"
|
|
438
438
|
],
|
|
439
439
|
"breakingDigest": "sha256:90a73892b2d6c214048448d5f45df75639bdf7b7e8fefd9c596e04b087407bcc",
|
|
440
|
-
"auditDigest": "sha256:
|
|
440
|
+
"auditDigest": "sha256:20d60eacea93a6b318ff712e30e5db9aa109d92cb13923268bbfa2f4f3cdf51a"
|
|
441
441
|
},
|
|
442
442
|
{
|
|
443
443
|
"contractVersion": 1,
|
|
@@ -527,7 +527,7 @@
|
|
|
527
527
|
"manual entries carry source file digests so downstream sites and agents can detect stale hand-written documentation"
|
|
528
528
|
],
|
|
529
529
|
"breakingDigest": "sha256:7d0d2819e3a3e72989d9c57b5efe9d0bc0a79bc0f2c82a0c7b9d6c5a211a91f2",
|
|
530
|
-
"auditDigest": "sha256:
|
|
530
|
+
"auditDigest": "sha256:e0fd0a6e19835663980faec6d4d132424d9ee65c27fcd3437bf30634740032bb"
|
|
531
531
|
},
|
|
532
532
|
{
|
|
533
533
|
"contractVersion": 1,
|
|
@@ -549,7 +549,7 @@
|
|
|
549
549
|
"agents can discover supported Node APIs without importing internal file paths"
|
|
550
550
|
],
|
|
551
551
|
"breakingDigest": "sha256:48f925608d3e2131d90936b07dc2a30341204cae3e6e785c0f77d61ad755c945",
|
|
552
|
-
"auditDigest": "sha256:
|
|
552
|
+
"auditDigest": "sha256:dca785dc9f657536f84a9b40c3fb00d5a191bbd6cbce2fb1cb59cd0369150817"
|
|
553
553
|
},
|
|
554
554
|
{
|
|
555
555
|
"contractVersion": 1,
|
|
@@ -2709,5 +2709,5 @@
|
|
|
2709
2709
|
}
|
|
2710
2710
|
],
|
|
2711
2711
|
"compatibilityDigest": "sha256:af162b86ab4506e9b5f1d3c59b41f3fd57fbad79ff4d749a7f12ff16460517f8",
|
|
2712
|
-
"contractDigest": "sha256:
|
|
2712
|
+
"contractDigest": "sha256:90466f4b69982ad1aba65d22596baa4cd0112454f44b1f7c33ab3de017029a06"
|
|
2713
2713
|
}
|