@kungfu-tech/buildchain 2.14.1 → 2.14.2-alpha.1
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 +7 -7
- package/dist/site/buildchain-site.json +22 -22
- package/dist/site/capability-registry.json +1 -1
- package/dist/site/kfd-claims.json +27 -10
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +6 -6
- package/dist/site/node-api-registry.json +3 -3
- package/dist/site/page-registry.json +12 -12
- package/dist/site/public-surface-audit.json +29 -8
- package/dist/site/publication-authority-registry.json +19 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +10 -10
- package/dist/site/workflow-registry.json +23 -4
- package/docs/cli.md +28 -2
- package/docs/publish-transaction.md +14 -0
- package/docs/release-flow.md +6 -1
- package/docs/release-governance.md +43 -4
- package/docs/versioning.md +1 -0
- package/docs/web-surface-deployments.md +12 -2
- 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/buildchain-patrol.mjs +3 -1
- package/scripts/dev-merge-queue.mjs +287 -8
- package/scripts/dev-pr-auto-merge.mjs +362 -21
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
22
22
|
"path": "dist/site/public-surface-audit.json",
|
|
23
23
|
"status": "passed",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "3d9e43510266b900fe450253fbb8aac72953c7128a797154150eb301ef71ed6a",
|
|
25
25
|
"summary": {
|
|
26
26
|
"cliCommandCount": 83,
|
|
27
|
-
"workflowCount":
|
|
27
|
+
"workflowCount": 48,
|
|
28
28
|
"actionCount": 4,
|
|
29
29
|
"sitePageCount": 50,
|
|
30
|
-
"docCommandRefCount":
|
|
30
|
+
"docCommandRefCount": 257,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -225,13 +225,13 @@
|
|
|
225
225
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
226
226
|
"path": "dist/site/public-surface-audit.json",
|
|
227
227
|
"status": "passed",
|
|
228
|
-
"sha256": "
|
|
228
|
+
"sha256": "3d9e43510266b900fe450253fbb8aac72953c7128a797154150eb301ef71ed6a",
|
|
229
229
|
"summary": {
|
|
230
230
|
"cliCommandCount": 83,
|
|
231
|
-
"workflowCount":
|
|
231
|
+
"workflowCount": 48,
|
|
232
232
|
"actionCount": 4,
|
|
233
233
|
"sitePageCount": 50,
|
|
234
|
-
"docCommandRefCount":
|
|
234
|
+
"docCommandRefCount": 257,
|
|
235
235
|
"failureCount": 0
|
|
236
236
|
},
|
|
237
237
|
"auditBoundary": {
|
|
@@ -3246,7 +3246,7 @@
|
|
|
3246
3246
|
"visibility": "public",
|
|
3247
3247
|
"participantFacing": true,
|
|
3248
3248
|
"public": true,
|
|
3249
|
-
"inputCount":
|
|
3249
|
+
"inputCount": 16,
|
|
3250
3250
|
"inputs": [
|
|
3251
3251
|
"allowed-head-prefixes",
|
|
3252
3252
|
"block-labels",
|
|
@@ -3255,6 +3255,7 @@
|
|
|
3255
3255
|
"cadence",
|
|
3256
3256
|
"capabilities",
|
|
3257
3257
|
"dry-run",
|
|
3258
|
+
"landing-mode",
|
|
3258
3259
|
"max-actions",
|
|
3259
3260
|
"merge-method",
|
|
3260
3261
|
"mode",
|
|
@@ -3344,6 +3345,20 @@
|
|
|
3344
3345
|
],
|
|
3345
3346
|
"reverseAuditSource": ".github/workflows"
|
|
3346
3347
|
},
|
|
3348
|
+
{
|
|
3349
|
+
"id": "workflow:dev-merge-queue-governance",
|
|
3350
|
+
"name": "workflow:dev-merge-queue-governance",
|
|
3351
|
+
"kind": "workflow",
|
|
3352
|
+
"sourcePath": ".github/workflows/dev-merge-queue-governance.yml",
|
|
3353
|
+
"evidencePath": ".github/workflows/dev-merge-queue-governance.yml",
|
|
3354
|
+
"availability": "shipped",
|
|
3355
|
+
"visibility": "public",
|
|
3356
|
+
"participantFacing": true,
|
|
3357
|
+
"public": true,
|
|
3358
|
+
"inputCount": 0,
|
|
3359
|
+
"inputs": [],
|
|
3360
|
+
"reverseAuditSource": ".github/workflows"
|
|
3361
|
+
},
|
|
3347
3362
|
{
|
|
3348
3363
|
"id": "workflow:dev-pr-auto-merge",
|
|
3349
3364
|
"name": "workflow:dev-pr-auto-merge",
|
|
@@ -3354,13 +3369,14 @@
|
|
|
3354
3369
|
"visibility": "public",
|
|
3355
3370
|
"participantFacing": true,
|
|
3356
3371
|
"public": true,
|
|
3357
|
-
"inputCount":
|
|
3372
|
+
"inputCount": 13,
|
|
3358
3373
|
"inputs": [
|
|
3359
3374
|
"allowed-head-prefixes",
|
|
3360
3375
|
"block-labels",
|
|
3361
3376
|
"buildchain-ref",
|
|
3362
3377
|
"buildchain-repository",
|
|
3363
3378
|
"dry-run",
|
|
3379
|
+
"landing-mode",
|
|
3364
3380
|
"max-merges",
|
|
3365
3381
|
"merge-method",
|
|
3366
3382
|
"ready-label",
|
|
@@ -3487,13 +3503,14 @@
|
|
|
3487
3503
|
"visibility": "public",
|
|
3488
3504
|
"participantFacing": true,
|
|
3489
3505
|
"public": true,
|
|
3490
|
-
"inputCount":
|
|
3506
|
+
"inputCount": 13,
|
|
3491
3507
|
"inputs": [
|
|
3492
3508
|
"allowed-head-prefixes",
|
|
3493
3509
|
"block-labels",
|
|
3494
3510
|
"buildchain-ref",
|
|
3495
3511
|
"buildchain-repository",
|
|
3496
3512
|
"dry-run",
|
|
3513
|
+
"landing-mode",
|
|
3497
3514
|
"max-actions",
|
|
3498
3515
|
"merge-method",
|
|
3499
3516
|
"ready-label",
|
|
@@ -4685,6 +4702,6 @@
|
|
|
4685
4702
|
}
|
|
4686
4703
|
}
|
|
4687
4704
|
],
|
|
4688
|
-
"publicSurfaceCount":
|
|
4705
|
+
"publicSurfaceCount": 304
|
|
4689
4706
|
}
|
|
4690
4707
|
}
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
"title": "CLI and npm package",
|
|
247
247
|
"path": "docs/cli.md",
|
|
248
248
|
"plane": "use",
|
|
249
|
-
"digest": "sha256:
|
|
249
|
+
"digest": "sha256:1733f9377938a16e6de77511546be7de67c5ab8816220d693fd46f55450a5148",
|
|
250
250
|
"capabilityGroup": "api-cli-reference",
|
|
251
251
|
"audience": [
|
|
252
252
|
"agent",
|
|
@@ -316,7 +316,7 @@
|
|
|
316
316
|
"title": "Publish transaction",
|
|
317
317
|
"path": "docs/publish-transaction.md",
|
|
318
318
|
"plane": "verify",
|
|
319
|
-
"digest": "sha256:
|
|
319
|
+
"digest": "sha256:950ca4fb2f7ab0a7d40775593e3864f8bb1229f8543b266b00154af82c619e95",
|
|
320
320
|
"capabilityGroup": "release-passport-trust",
|
|
321
321
|
"audience": [
|
|
322
322
|
"release-operator"
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"title": "Release governance",
|
|
330
330
|
"path": "docs/release-governance.md",
|
|
331
331
|
"plane": "why",
|
|
332
|
-
"digest": "sha256:
|
|
332
|
+
"digest": "sha256:e64ffd6183eaa7b73f8c0c133a645ced22212bca70c9609ad5f667cf3830aaae",
|
|
333
333
|
"capabilityGroup": "governance-versioning",
|
|
334
334
|
"audience": [
|
|
335
335
|
"maintainer",
|
|
@@ -343,7 +343,7 @@
|
|
|
343
343
|
"title": "Release flow",
|
|
344
344
|
"path": "docs/release-flow.md",
|
|
345
345
|
"plane": "verify",
|
|
346
|
-
"digest": "sha256:
|
|
346
|
+
"digest": "sha256:fc6495a7b5124c17c880777e16fc98e60ed7766ec9a958abfca3030bdc2c321e",
|
|
347
347
|
"capabilityGroup": "governance-versioning",
|
|
348
348
|
"audience": [
|
|
349
349
|
"release-operator",
|
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
"title": "Versioning",
|
|
372
372
|
"path": "docs/versioning.md",
|
|
373
373
|
"plane": "why",
|
|
374
|
-
"digest": "sha256:
|
|
374
|
+
"digest": "sha256:e856ec8aee11ff4bd2760425a8950538a91245cd5624c22c8768af50d6b1a8ce",
|
|
375
375
|
"capabilityGroup": "governance-versioning",
|
|
376
376
|
"audience": [
|
|
377
377
|
"maintainer"
|
|
@@ -384,7 +384,7 @@
|
|
|
384
384
|
"title": "Web surface deployments",
|
|
385
385
|
"path": "docs/web-surface-deployments.md",
|
|
386
386
|
"plane": "use",
|
|
387
|
-
"digest": "sha256:
|
|
387
|
+
"digest": "sha256:856a7602cf1c2d3a0a540cdf0d64566914f79dde24417c92089f0466bee25df1",
|
|
388
388
|
"capabilityGroup": "site-and-propagation",
|
|
389
389
|
"audience": [
|
|
390
390
|
"site",
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
"specifier": "@kungfu-tech/buildchain/release-line-bootstrap",
|
|
178
178
|
"export": "./release-line-bootstrap",
|
|
179
179
|
"target": "./packages/core/release-line-bootstrap.js",
|
|
180
|
-
"digest": "sha256:
|
|
180
|
+
"digest": "sha256:6e6ae3d5cd545cc0f435f5a52ddefd1da8fa7394b64936e0ef840ee78a1d9da3",
|
|
181
181
|
"summary": "Semver release-line bootstrap planning and version-state APIs.",
|
|
182
182
|
"capabilityGroup": "governance-versioning",
|
|
183
183
|
"audience": [
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"specifier": "@kungfu-tech/buildchain/buildchain-publication-authority",
|
|
295
295
|
"export": "./buildchain-publication-authority",
|
|
296
296
|
"target": "./packages/core/buildchain-publication-authority.js",
|
|
297
|
-
"digest": "sha256:
|
|
297
|
+
"digest": "sha256:5c1c4ec0ef4cbda07ae4dead6423f800ecad6d45f02f19745aef23513fae45d4",
|
|
298
298
|
"summary": "Buildchain-owned closed-world publication authority descriptor registry.",
|
|
299
299
|
"capabilityGroup": "release-passport-trust",
|
|
300
300
|
"audience": [
|
|
@@ -399,7 +399,7 @@
|
|
|
399
399
|
{
|
|
400
400
|
"id": "cli-and-node-package",
|
|
401
401
|
"path": "docs/cli.md",
|
|
402
|
-
"digest": "sha256:
|
|
402
|
+
"digest": "sha256:1733f9377938a16e6de77511546be7de67c5ab8816220d693fd46f55450a5148"
|
|
403
403
|
},
|
|
404
404
|
{
|
|
405
405
|
"id": "build-facts",
|