@kungfu-tech/buildchain 4.0.0 → 4.0.1-alpha.10
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 +13 -5
- package/actions/promote-buildchain-ref/README.md +11 -6
- package/actions/release-tail/README.md +8 -0
- package/architecture/ci-lane-change-budget.json +187 -0
- package/architecture/decisions/0002-next-development-transition.md +101 -0
- package/architecture/decisions/0003-two-phase-delivery-warrant.md +152 -0
- package/architecture/internal-capabilities.json +219 -7
- package/architecture/maintainability-policy.json +246 -29
- package/architecture/release-tail-contract-inventory.json +5 -2
- package/architecture/v3-core-mechanism-inventory.json +91 -0
- package/architecture/v4-adopter-delivery-parity.json +32 -5
- package/architecture/v4-capability-state-machine-manifest.json +73 -0
- package/architecture/v4-compatibility-facts-parity.json +77 -0
- package/architecture/v4-delivery-authority-parity.json +250 -0
- package/architecture/v4-delivery-warrant-shadow-fixtures.json +41 -9
- package/architecture/v4-floating-consumer-policy.json +81 -0
- package/architecture/v4-floating-consumer-policy.md +32 -0
- package/architecture/v4-next-development-parity.json +192 -0
- package/architecture/v4-publication-rehearsal-parity.json +84 -0
- package/architecture/v4-release-train-parity.json +1 -0
- package/architecture/v4-runtime-ref-resume-authority.json +64 -0
- package/architecture/v4-stage-capsule-qualification.json +2 -2
- package/architecture/v4-tail-reseal-parity.json +150 -0
- package/bin/buildchain.mjs +32 -3
- package/bin/internal/adopter-delivery-cli.mjs +70 -0
- package/bin/internal/command-registry.mjs +3 -0
- package/bin/internal/compatibility-facts-cli.mjs +101 -0
- package/bin/internal/trust-release-release-handlers.mjs +5 -0
- package/contracts/dev-delivery-authority-v2.schema.json +662 -0
- package/contracts/fixtures/next-development-transition-v1/anchored-manual-waiting.json +47 -0
- package/contracts/fixtures/next-development-transition-v1/semver-auto-planned.json +47 -0
- package/contracts/fixtures/next-development-transition-v1/version-model-cases.json +40 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/archive-template.json +19 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/bootstrap-positive.json +93 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/gate-positive.json +29 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/gate-unknown-selector.json +26 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/offline-vectors.json +50 -0
- package/contracts/fixtures/v4-compatibility-facts-v1/shared.json +1129 -0
- package/contracts/fixtures/v4-floating-consumer-policy-v1/cases.json +59 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/artifacts/product.bin +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/config/buildchain.toml +5 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/documents/release-activation.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/documents/signed-channel.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/evidence/qualification.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/manifests/candidate.json +5 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/manifests/release-passport.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/capsule.json +707 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/offline-vectors.json +27 -0
- package/contracts/fixtures/v4-runtime-ref-resume-authority-v1/scenario.json +15 -0
- package/contracts/fixtures/v4-tail-reseal-v1/valid.json +229 -0
- package/contracts/next-development-request-v1.schema.json +66 -0
- package/contracts/next-development-transition-v1.schema.json +292 -0
- package/contracts/v4-adopter-delivery-v1.schema.json +81 -0
- package/contracts/v4-compatibility-facts-v1.schema.json +230 -0
- package/contracts/v4-floating-consumer-policy-receipt-v1.schema.json +107 -0
- package/contracts/v4-publication-rehearsal-capsule-v1.schema.json +233 -0
- package/contracts/v4-runtime-ref-resume-authority-v1.schema.json +235 -0
- package/contracts/v4-tail-reseal-v1.schema.json +276 -0
- package/dist/site/agent-index.json +5 -0
- package/dist/site/artifact-schemas.json +10 -0
- package/dist/site/buildchain-contract.json +1562 -44
- package/dist/site/buildchain-site.json +684 -42
- package/dist/site/capability-registry.json +17 -14
- package/dist/site/cli-registry.json +205 -3
- package/dist/site/controller-registry.json +62 -6
- package/dist/site/kfd-claims.json +551 -22
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +55 -9
- package/dist/site/node-api-registry.json +15247 -8690
- package/dist/site/page-registry.json +647 -29
- package/dist/site/public-surface-audit.json +876 -55
- package/dist/site/publication-authority-registry.json +44 -8
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +26 -0
- package/dist/site/schemas/dev-delivery-authority-v2.schema.json +662 -0
- package/dist/site/schemas/release-tail-capabilities-v1.schema.json +199 -0
- package/dist/site/schemas/v4-adopter-delivery-v1.schema.json +81 -0
- package/dist/site/schemas/v4-compatibility-facts-v1.schema.json +230 -0
- package/dist/site/schemas/v4-publication-rehearsal-capsule-v1.schema.json +233 -0
- package/dist/site/site-manifest.json +37 -13
- package/dist/site/workflow-registry.json +200 -22
- package/docs/MAP.md +10 -2
- package/docs/cli-reference.md +404 -13
- package/docs/cli.md +8 -0
- package/docs/dev-alpha-candidate-patrol.md +8 -0
- package/docs/dev-delivery-qualification-landing-adr.md +251 -0
- package/docs/dev-delivery-warrant.md +361 -30
- package/docs/lifecycle-protocol.md +41 -0
- package/docs/next-development-transition.md +118 -0
- package/docs/node-api-reference.md +748 -322
- package/docs/release-tail-provider-plane.md +30 -0
- package/docs/reusable-build-surface.md +41 -0
- package/docs/runtime-train-validation.md +10 -0
- package/docs/v4-adopter-delivery.md +133 -0
- package/docs/v4-compatibility-facts.md +91 -0
- package/docs/v4-publication-rehearsal.md +130 -0
- package/docs/v4-runtime-ref-resume-authority.md +69 -0
- package/docs/v4-tail-reseal.md +73 -0
- package/docs/versioning.md +4 -2
- package/package.json +36 -6
- package/packages/core/adopter-delivery-passport.js +259 -0
- package/packages/core/adopter-delivery-vectors.js +158 -0
- package/packages/core/adopter-delivery-vectors.json +77 -0
- package/packages/core/artifact-signing.js +61 -0
- package/packages/core/buildchain-agent-manuals.js +3 -0
- package/packages/core/buildchain-compatibility-authority.js +336 -0
- package/packages/core/buildchain-compatibility-fact.js +394 -0
- package/packages/core/buildchain-compatibility-facts.json +217 -0
- package/packages/core/buildchain-compatibility-proof.js +566 -0
- package/packages/core/buildchain-config.js +150 -1
- package/packages/core/buildchain-contract.js +96 -143
- package/packages/core/buildchain-delivery-bootstrap.js +240 -0
- package/packages/core/buildchain-delivery-infrastructure.js +164 -0
- package/packages/core/buildchain-delivery-self-dogfood.js +395 -0
- package/packages/core/buildchain-publication-authority.js +1 -0
- package/packages/core/channel-candidate.js +8 -0
- package/packages/core/channel-promotion-baseline.js +55 -0
- package/packages/core/ci-lane-change-budget.js +247 -0
- package/packages/core/dev-alpha-candidate-selection.js +10 -2
- package/packages/core/dev-delivery-authority-candidate.js +270 -0
- package/packages/core/dev-delivery-authority-evidence.js +146 -0
- package/packages/core/dev-delivery-authority-landing.js +461 -0
- package/packages/core/dev-delivery-authority-observation.js +48 -0
- package/packages/core/dev-delivery-authority-qualification.js +591 -0
- package/packages/core/dev-delivery-authority-settlement.js +213 -0
- package/packages/core/dev-delivery-authority-state.js +583 -0
- package/packages/core/dev-delivery-candidate-identity.js +13 -0
- package/packages/core/dev-delivery-contract-surface.js +76 -0
- package/packages/core/dev-delivery-execution-failure.js +133 -0
- package/packages/core/dev-delivery-execution-transfer.js +592 -0
- package/packages/core/dev-delivery-landing-admission-core.js +119 -0
- package/packages/core/dev-delivery-landing-readback.js +598 -0
- package/packages/core/dev-delivery-landing-terminal-evidence.js +271 -0
- package/packages/core/dev-delivery-landing-testing-port.js +6 -0
- package/packages/core/dev-delivery-native-execution.js +110 -0
- package/packages/core/dev-delivery-native-proof.js +562 -0
- package/packages/core/dev-delivery-process-boundary.js +563 -0
- package/packages/core/dev-delivery-proof.js +37 -3
- package/packages/core/dev-delivery-provider-attempt.js +127 -0
- package/packages/core/dev-delivery-provider-heartbeat.js +382 -0
- package/packages/core/dev-delivery-warrant-cancellation.js +1 -0
- package/packages/core/dev-delivery-warrant-qualification.js +145 -0
- package/packages/core/dev-delivery-warrant-settlement.js +237 -36
- package/packages/core/dev-delivery-warrant-state.js +587 -0
- package/packages/core/dev-delivery-warrant.js +328 -370
- package/packages/core/github-governance-authority.js +1 -0
- package/packages/core/index.js +7 -0
- package/packages/core/kungfu-temporal-fact.js +557 -0
- package/packages/core/legacy-kfd-adopter-driver.js +167 -0
- package/packages/core/next-development-candidate-reservation.js +186 -0
- package/packages/core/next-development-controller.js +728 -0
- package/packages/core/next-development-projection.js +287 -0
- package/packages/core/next-development-transition.js +738 -0
- package/packages/core/paper-agent-entry.js +11 -5
- package/packages/core/paper.js +16 -5
- package/packages/core/publication-authority.js +5 -5
- package/packages/core/published-delivery-authority.js +266 -0
- package/packages/core/release-candidate-recovery.js +66 -11
- package/packages/core/release-candidate.js +79 -19
- package/packages/core/release-passport.js +271 -38
- package/packages/core/v4-adopter-delivery-parity.js +3 -3
- package/packages/core/v4-adopter-delivery.js +359 -0
- package/packages/core/v4-canonical-contracts.js +5 -0
- package/packages/core/v4-delivery-warrant-read-candidate.js +10 -3
- package/packages/core/v4-floating-consumer-evidence.js +338 -0
- package/packages/core/v4-floating-consumer-policy.js +569 -0
- package/packages/core/v4-floating-consumer-release-passport.js +153 -0
- package/packages/core/v4-publication-rehearsal-capsule.js +468 -0
- package/packages/core/v4-publication-rehearsal-provider-bindings.js +212 -0
- package/packages/core/v4-publication-rehearsal.js +481 -0
- package/packages/core/v4-runtime-ref-resume-authority.js +625 -0
- package/packages/core/v4-runtime-selector-persistence.js +228 -0
- package/packages/core/v4-tail-reseal-contract.js +26 -0
- package/packages/core/v4-tail-reseal-github.js +178 -0
- package/packages/core/v4-tail-reseal-receipt.js +225 -0
- package/packages/core/v4-tail-reseal.js +594 -0
- package/packages/core/workflow-yaml-contract.js +72 -2
- package/scripts/audit-publication-control-plane.mjs +31 -31
- package/scripts/buildchain-cli-help.mjs +41 -2
- package/scripts/check-ci-lane-change-budget.mjs +100 -0
- package/scripts/check-inventory.mjs +14 -3
- package/scripts/check-v4-floating-consumer-policy-contract.mjs +217 -0
- package/scripts/check-v4-public-dogfood-contract.mjs +6 -11
- package/scripts/dev-alpha-candidate-patrol.mjs +22 -1
- package/scripts/dev-delivery-authority-command-adapters.mjs +206 -0
- package/scripts/dev-delivery-authority-provider.mjs +28 -0
- package/scripts/dev-delivery-authority.mjs +490 -0
- package/scripts/dev-delivery-native-run.mjs +177 -0
- package/scripts/dev-delivery-process-boundary.mjs +260 -0
- package/scripts/dev-delivery-proof.mjs +67 -2
- package/scripts/dev-delivery-provider-heartbeat.mjs +215 -0
- package/scripts/dev-delivery-source-proof-replay.mjs +153 -0
- package/scripts/dev-delivery-source-proof-reuse.mjs +547 -0
- package/scripts/dev-delivery-two-phase-resume.mjs +345 -0
- package/scripts/dev-delivery-two-phase.mjs +573 -0
- package/scripts/dev-delivery-warrant-options.mjs +266 -0
- package/scripts/dev-delivery-warrant-store.mjs +231 -0
- package/scripts/dev-delivery-warrant.mjs +232 -194
- package/scripts/dev-pr-auto-merge.mjs +37 -48
- package/scripts/dev-pr-delivery-warrant.mjs +216 -2
- package/scripts/dev-pr-prequeue-guard.mjs +399 -0
- package/scripts/dev-qualification-patrol.mjs +9 -9
- package/scripts/dispatch-artifact-signing-authority.mjs +1 -1
- package/scripts/ensure-github-release.mjs +3 -3
- package/scripts/generate-channel-build-workflow.mjs +3 -0
- package/scripts/generate-channel-promotion-workflow.mjs +114 -14
- package/scripts/generate-next-development-guidance.mjs +49 -0
- package/scripts/generate-release-candidate-passport.mjs +192 -32
- package/scripts/generate-site-bundle.mjs +69 -4
- package/scripts/init-repo.mjs +26 -4
- package/scripts/inspect-artifact-signing-requests.mjs +6 -0
- package/scripts/next-development-self-dogfood-harness.mjs +460 -0
- package/scripts/next-development-self-dogfood.mjs +597 -0
- package/scripts/next-development-transition.mjs +47 -0
- package/scripts/npm-publish-transaction.mjs +103 -91
- package/scripts/promotion-channel-router.mjs +4 -4
- package/scripts/release-candidate-anchor-provenance.mjs +99 -0
- package/scripts/release-tail.mjs +51 -3
- package/scripts/release-train-self-dogfood.mjs +94 -92
- package/scripts/resume-from-candidate-run.mjs +565 -41
- package/scripts/seal-artifact-signing-requests.mjs +6 -0
- package/scripts/site-capability-metadata.mjs +43 -0
- package/scripts/stable-candidate-qualification.mjs +9 -10
- package/scripts/v4-consumer-policy.mjs +231 -0
- package/scripts/v4-publication-rehearsal-fixture.mjs +144 -0
- package/scripts/v4-tail-reseal-macos-rehearsal.mjs +134 -0
- package/scripts/v4-tail-reseal.mjs +416 -0
- package/templates/native-dev-delivery.yml +143 -0
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
},
|
|
15
15
|
"runtimeContract": {
|
|
16
16
|
"contract": "kungfu-buildchain-runtime-contract-world",
|
|
17
|
-
"compatibilityDigest": "sha256:
|
|
17
|
+
"compatibilityDigest": "sha256:5de1c69386510b74b17eb70141b8bdd07063d62c504f91db5e84b67c6d4b64a2",
|
|
18
18
|
"majorLine": "v4"
|
|
19
19
|
},
|
|
20
20
|
"publicSurfaceReverseAudit": {
|
|
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": "50cc714429ef123900dbe54836f77f6b2c08c19b4e3bbe7f2317dafdda8ed3a4",
|
|
25
25
|
"summary": {
|
|
26
|
-
"cliCommandCount":
|
|
27
|
-
"workflowCount":
|
|
26
|
+
"cliCommandCount": 117,
|
|
27
|
+
"workflowCount": 76,
|
|
28
28
|
"actionCount": 7,
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
29
|
+
"sitePageCount": 82,
|
|
30
|
+
"docCommandRefCount": 1049,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -246,13 +246,13 @@
|
|
|
246
246
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
247
247
|
"path": "dist/site/public-surface-audit.json",
|
|
248
248
|
"status": "passed",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "50cc714429ef123900dbe54836f77f6b2c08c19b4e3bbe7f2317dafdda8ed3a4",
|
|
250
250
|
"summary": {
|
|
251
|
-
"cliCommandCount":
|
|
252
|
-
"workflowCount":
|
|
251
|
+
"cliCommandCount": 117,
|
|
252
|
+
"workflowCount": 76,
|
|
253
253
|
"actionCount": 7,
|
|
254
|
-
"sitePageCount":
|
|
255
|
-
"docCommandRefCount":
|
|
254
|
+
"sitePageCount": 82,
|
|
255
|
+
"docCommandRefCount": 1049,
|
|
256
256
|
"failureCount": 0
|
|
257
257
|
},
|
|
258
258
|
"auditBoundary": {
|
|
@@ -596,6 +596,18 @@
|
|
|
596
596
|
"public": true,
|
|
597
597
|
"plane": "verify"
|
|
598
598
|
},
|
|
599
|
+
{
|
|
600
|
+
"id": "doc:docs/next-development-transition.md",
|
|
601
|
+
"name": "Next-development transition",
|
|
602
|
+
"kind": "documentation",
|
|
603
|
+
"sourcePath": "docs/next-development-transition.md",
|
|
604
|
+
"evidencePath": "docs/next-development-transition.md",
|
|
605
|
+
"availability": "shipped",
|
|
606
|
+
"visibility": "public",
|
|
607
|
+
"participantFacing": true,
|
|
608
|
+
"public": true,
|
|
609
|
+
"plane": "verify"
|
|
610
|
+
},
|
|
599
611
|
{
|
|
600
612
|
"id": "doc:docs/node-api-reference.md",
|
|
601
613
|
"name": "Generated Node API reference",
|
|
@@ -812,6 +824,30 @@
|
|
|
812
824
|
"public": true,
|
|
813
825
|
"plane": "use"
|
|
814
826
|
},
|
|
827
|
+
{
|
|
828
|
+
"id": "doc:docs/v4-adopter-delivery.md",
|
|
829
|
+
"name": "V4 public adopter delivery",
|
|
830
|
+
"kind": "documentation",
|
|
831
|
+
"sourcePath": "docs/v4-adopter-delivery.md",
|
|
832
|
+
"evidencePath": "docs/v4-adopter-delivery.md",
|
|
833
|
+
"availability": "shipped",
|
|
834
|
+
"visibility": "public",
|
|
835
|
+
"participantFacing": true,
|
|
836
|
+
"public": true,
|
|
837
|
+
"plane": "verify"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"id": "doc:docs/v4-compatibility-facts.md",
|
|
841
|
+
"name": "Buildchain v4 compatibility Facts",
|
|
842
|
+
"kind": "documentation",
|
|
843
|
+
"sourcePath": "docs/v4-compatibility-facts.md",
|
|
844
|
+
"evidencePath": "docs/v4-compatibility-facts.md",
|
|
845
|
+
"availability": "shipped",
|
|
846
|
+
"visibility": "public",
|
|
847
|
+
"participantFacing": true,
|
|
848
|
+
"public": true,
|
|
849
|
+
"plane": "verify"
|
|
850
|
+
},
|
|
815
851
|
{
|
|
816
852
|
"id": "doc:docs/versioning.md",
|
|
817
853
|
"name": "Versioning",
|
|
@@ -1340,6 +1376,18 @@
|
|
|
1340
1376
|
"public": true,
|
|
1341
1377
|
"packageExport": "./buildchain-contract"
|
|
1342
1378
|
},
|
|
1379
|
+
{
|
|
1380
|
+
"id": "export:./compatibility-fact-authority",
|
|
1381
|
+
"name": "@kungfu-tech/buildchain/compatibility-fact-authority",
|
|
1382
|
+
"kind": "package-export",
|
|
1383
|
+
"sourcePath": "packages/core/buildchain-compatibility-proof.js",
|
|
1384
|
+
"evidencePath": "packages/core/buildchain-compatibility-proof.js",
|
|
1385
|
+
"availability": "shipped",
|
|
1386
|
+
"visibility": "public",
|
|
1387
|
+
"participantFacing": true,
|
|
1388
|
+
"public": true,
|
|
1389
|
+
"packageExport": "./compatibility-fact-authority"
|
|
1390
|
+
},
|
|
1343
1391
|
{
|
|
1344
1392
|
"id": "export:./candidate-timeline",
|
|
1345
1393
|
"name": "@kungfu-tech/buildchain/candidate-timeline",
|
|
@@ -1352,6 +1400,18 @@
|
|
|
1352
1400
|
"public": true,
|
|
1353
1401
|
"packageExport": "./candidate-timeline"
|
|
1354
1402
|
},
|
|
1403
|
+
{
|
|
1404
|
+
"id": "export:./ci-lane-change-budget",
|
|
1405
|
+
"name": "@kungfu-tech/buildchain/ci-lane-change-budget",
|
|
1406
|
+
"kind": "package-export",
|
|
1407
|
+
"sourcePath": "packages/core/ci-lane-change-budget.js",
|
|
1408
|
+
"evidencePath": "packages/core/ci-lane-change-budget.js",
|
|
1409
|
+
"availability": "shipped",
|
|
1410
|
+
"visibility": "public",
|
|
1411
|
+
"participantFacing": true,
|
|
1412
|
+
"public": true,
|
|
1413
|
+
"packageExport": "./ci-lane-change-budget"
|
|
1414
|
+
},
|
|
1355
1415
|
{
|
|
1356
1416
|
"id": "export:./channel-candidate",
|
|
1357
1417
|
"name": "@kungfu-tech/buildchain/channel-candidate",
|
|
@@ -1400,6 +1460,18 @@
|
|
|
1400
1460
|
"public": true,
|
|
1401
1461
|
"packageExport": "./diagnostics"
|
|
1402
1462
|
},
|
|
1463
|
+
{
|
|
1464
|
+
"id": "export:./dev-delivery-authority",
|
|
1465
|
+
"name": "@kungfu-tech/buildchain/dev-delivery-authority",
|
|
1466
|
+
"kind": "package-export",
|
|
1467
|
+
"sourcePath": "packages/core/dev-delivery-authority-landing.js",
|
|
1468
|
+
"evidencePath": "packages/core/dev-delivery-authority-landing.js",
|
|
1469
|
+
"availability": "shipped",
|
|
1470
|
+
"visibility": "public",
|
|
1471
|
+
"participantFacing": true,
|
|
1472
|
+
"public": true,
|
|
1473
|
+
"packageExport": "./dev-delivery-authority"
|
|
1474
|
+
},
|
|
1403
1475
|
{
|
|
1404
1476
|
"id": "export:./dev-delivery-warrant",
|
|
1405
1477
|
"name": "@kungfu-tech/buildchain/dev-delivery-warrant",
|
|
@@ -1544,6 +1616,186 @@
|
|
|
1544
1616
|
"public": true,
|
|
1545
1617
|
"packageExport": "./public-surface-audit"
|
|
1546
1618
|
},
|
|
1619
|
+
{
|
|
1620
|
+
"id": "export:./v4-floating-consumer-policy",
|
|
1621
|
+
"name": "@kungfu-tech/buildchain/v4-floating-consumer-policy",
|
|
1622
|
+
"kind": "package-export",
|
|
1623
|
+
"sourcePath": "packages/core/v4-floating-consumer-policy.js",
|
|
1624
|
+
"evidencePath": "packages/core/v4-floating-consumer-policy.js",
|
|
1625
|
+
"availability": "shipped",
|
|
1626
|
+
"visibility": "public",
|
|
1627
|
+
"participantFacing": true,
|
|
1628
|
+
"public": true,
|
|
1629
|
+
"packageExport": "./v4-floating-consumer-policy"
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"id": "export:./v4-runtime-ref-resume-authority",
|
|
1633
|
+
"name": "@kungfu-tech/buildchain/v4-runtime-ref-resume-authority",
|
|
1634
|
+
"kind": "package-export",
|
|
1635
|
+
"sourcePath": "packages/core/v4-runtime-ref-resume-authority.js",
|
|
1636
|
+
"evidencePath": "packages/core/v4-runtime-ref-resume-authority.js",
|
|
1637
|
+
"availability": "shipped",
|
|
1638
|
+
"visibility": "public",
|
|
1639
|
+
"participantFacing": true,
|
|
1640
|
+
"public": true,
|
|
1641
|
+
"packageExport": "./v4-runtime-ref-resume-authority"
|
|
1642
|
+
},
|
|
1643
|
+
{
|
|
1644
|
+
"id": "export:./v4-tail-reseal",
|
|
1645
|
+
"name": "@kungfu-tech/buildchain/v4-tail-reseal",
|
|
1646
|
+
"kind": "package-export",
|
|
1647
|
+
"sourcePath": "packages/core/v4-tail-reseal.js",
|
|
1648
|
+
"evidencePath": "packages/core/v4-tail-reseal.js",
|
|
1649
|
+
"availability": "shipped",
|
|
1650
|
+
"visibility": "public",
|
|
1651
|
+
"participantFacing": true,
|
|
1652
|
+
"public": true,
|
|
1653
|
+
"packageExport": "./v4-tail-reseal"
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"id": "export:./v4-tail-reseal-receipt",
|
|
1657
|
+
"name": "@kungfu-tech/buildchain/v4-tail-reseal-receipt",
|
|
1658
|
+
"kind": "package-export",
|
|
1659
|
+
"sourcePath": "packages/core/v4-tail-reseal-receipt.js",
|
|
1660
|
+
"evidencePath": "packages/core/v4-tail-reseal-receipt.js",
|
|
1661
|
+
"availability": "shipped",
|
|
1662
|
+
"visibility": "public",
|
|
1663
|
+
"participantFacing": true,
|
|
1664
|
+
"public": true,
|
|
1665
|
+
"packageExport": "./v4-tail-reseal-receipt"
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"id": "export:./v4-publication-rehearsal",
|
|
1669
|
+
"name": "@kungfu-tech/buildchain/v4-publication-rehearsal",
|
|
1670
|
+
"kind": "package-export",
|
|
1671
|
+
"sourcePath": "packages/core/v4-publication-rehearsal.js",
|
|
1672
|
+
"evidencePath": "packages/core/v4-publication-rehearsal.js",
|
|
1673
|
+
"availability": "shipped",
|
|
1674
|
+
"visibility": "public",
|
|
1675
|
+
"participantFacing": true,
|
|
1676
|
+
"public": true,
|
|
1677
|
+
"packageExport": "./v4-publication-rehearsal"
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
"id": "export:./adopter-delivery-gate",
|
|
1681
|
+
"name": "@kungfu-tech/buildchain/adopter-delivery-gate",
|
|
1682
|
+
"kind": "package-export",
|
|
1683
|
+
"sourcePath": "packages/core/adopter-delivery-gate.js",
|
|
1684
|
+
"evidencePath": "packages/core/adopter-delivery-gate.js",
|
|
1685
|
+
"availability": "shipped",
|
|
1686
|
+
"visibility": "public",
|
|
1687
|
+
"participantFacing": true,
|
|
1688
|
+
"public": true,
|
|
1689
|
+
"packageExport": "./adopter-delivery-gate"
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"id": "export:./kfd-adopter-category-driver",
|
|
1693
|
+
"name": "@kungfu-tech/buildchain/kfd-adopter-category-driver",
|
|
1694
|
+
"kind": "package-export",
|
|
1695
|
+
"sourcePath": "packages/core/kfd-adopter-category-driver.js",
|
|
1696
|
+
"evidencePath": "packages/core/kfd-adopter-category-driver.js",
|
|
1697
|
+
"availability": "shipped",
|
|
1698
|
+
"visibility": "public",
|
|
1699
|
+
"participantFacing": true,
|
|
1700
|
+
"public": true,
|
|
1701
|
+
"packageExport": "./kfd-adopter-category-driver"
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"id": "export:./buildchain-delivery-infrastructure",
|
|
1705
|
+
"name": "@kungfu-tech/buildchain/buildchain-delivery-infrastructure",
|
|
1706
|
+
"kind": "package-export",
|
|
1707
|
+
"sourcePath": "packages/core/buildchain-delivery-infrastructure.js",
|
|
1708
|
+
"evidencePath": "packages/core/buildchain-delivery-infrastructure.js",
|
|
1709
|
+
"availability": "shipped",
|
|
1710
|
+
"visibility": "public",
|
|
1711
|
+
"participantFacing": true,
|
|
1712
|
+
"public": true,
|
|
1713
|
+
"packageExport": "./buildchain-delivery-infrastructure"
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"id": "export:./buildchain-delivery-bootstrap",
|
|
1717
|
+
"name": "@kungfu-tech/buildchain/buildchain-delivery-bootstrap",
|
|
1718
|
+
"kind": "package-export",
|
|
1719
|
+
"sourcePath": "packages/core/buildchain-delivery-bootstrap.js",
|
|
1720
|
+
"evidencePath": "packages/core/buildchain-delivery-bootstrap.js",
|
|
1721
|
+
"availability": "shipped",
|
|
1722
|
+
"visibility": "public",
|
|
1723
|
+
"participantFacing": true,
|
|
1724
|
+
"public": true,
|
|
1725
|
+
"packageExport": "./buildchain-delivery-bootstrap"
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
"id": "export:./buildchain-delivery-self-dogfood",
|
|
1729
|
+
"name": "@kungfu-tech/buildchain/buildchain-delivery-self-dogfood",
|
|
1730
|
+
"kind": "package-export",
|
|
1731
|
+
"sourcePath": "packages/core/buildchain-delivery-self-dogfood.js",
|
|
1732
|
+
"evidencePath": "packages/core/buildchain-delivery-self-dogfood.js",
|
|
1733
|
+
"availability": "shipped",
|
|
1734
|
+
"visibility": "public",
|
|
1735
|
+
"participantFacing": true,
|
|
1736
|
+
"public": true,
|
|
1737
|
+
"packageExport": "./buildchain-delivery-self-dogfood"
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
"id": "export:./published-delivery-authority",
|
|
1741
|
+
"name": "@kungfu-tech/buildchain/published-delivery-authority",
|
|
1742
|
+
"kind": "package-export",
|
|
1743
|
+
"sourcePath": "packages/core/published-delivery-authority.js",
|
|
1744
|
+
"evidencePath": "packages/core/published-delivery-authority.js",
|
|
1745
|
+
"availability": "shipped",
|
|
1746
|
+
"visibility": "public",
|
|
1747
|
+
"participantFacing": true,
|
|
1748
|
+
"public": true,
|
|
1749
|
+
"packageExport": "./published-delivery-authority"
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
"id": "export:./legacy-kfd-adopter-driver",
|
|
1753
|
+
"name": "@kungfu-tech/buildchain/legacy-kfd-adopter-driver",
|
|
1754
|
+
"kind": "package-export",
|
|
1755
|
+
"sourcePath": "packages/core/legacy-kfd-adopter-driver.js",
|
|
1756
|
+
"evidencePath": "packages/core/legacy-kfd-adopter-driver.js",
|
|
1757
|
+
"availability": "shipped",
|
|
1758
|
+
"visibility": "public",
|
|
1759
|
+
"participantFacing": true,
|
|
1760
|
+
"public": true,
|
|
1761
|
+
"packageExport": "./legacy-kfd-adopter-driver"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"id": "export:./adopter-delivery-passport",
|
|
1765
|
+
"name": "@kungfu-tech/buildchain/adopter-delivery-passport",
|
|
1766
|
+
"kind": "package-export",
|
|
1767
|
+
"sourcePath": "packages/core/adopter-delivery-passport.js",
|
|
1768
|
+
"evidencePath": "packages/core/adopter-delivery-passport.js",
|
|
1769
|
+
"availability": "shipped",
|
|
1770
|
+
"visibility": "public",
|
|
1771
|
+
"participantFacing": true,
|
|
1772
|
+
"public": true,
|
|
1773
|
+
"packageExport": "./adopter-delivery-passport"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"id": "export:./adopter-delivery-vectors",
|
|
1777
|
+
"name": "@kungfu-tech/buildchain/adopter-delivery-vectors",
|
|
1778
|
+
"kind": "package-export",
|
|
1779
|
+
"sourcePath": "packages/core/adopter-delivery-vectors.js",
|
|
1780
|
+
"evidencePath": "packages/core/adopter-delivery-vectors.js",
|
|
1781
|
+
"availability": "shipped",
|
|
1782
|
+
"visibility": "public",
|
|
1783
|
+
"participantFacing": true,
|
|
1784
|
+
"public": true,
|
|
1785
|
+
"packageExport": "./adopter-delivery-vectors"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"id": "export:./v4-adopter-delivery",
|
|
1789
|
+
"name": "@kungfu-tech/buildchain/v4-adopter-delivery",
|
|
1790
|
+
"kind": "package-export",
|
|
1791
|
+
"sourcePath": "packages/core/v4-adopter-delivery.js",
|
|
1792
|
+
"evidencePath": "packages/core/v4-adopter-delivery.js",
|
|
1793
|
+
"availability": "shipped",
|
|
1794
|
+
"visibility": "public",
|
|
1795
|
+
"participantFacing": true,
|
|
1796
|
+
"public": true,
|
|
1797
|
+
"packageExport": "./v4-adopter-delivery"
|
|
1798
|
+
},
|
|
1547
1799
|
{
|
|
1548
1800
|
"id": "export:./logging",
|
|
1549
1801
|
"name": "@kungfu-tech/buildchain/logging",
|
|
@@ -1748,6 +2000,42 @@
|
|
|
1748
2000
|
"public": true,
|
|
1749
2001
|
"packageExport": "./release-train"
|
|
1750
2002
|
},
|
|
2003
|
+
{
|
|
2004
|
+
"id": "export:./next-development-transition",
|
|
2005
|
+
"name": "@kungfu-tech/buildchain/next-development-transition",
|
|
2006
|
+
"kind": "package-export",
|
|
2007
|
+
"sourcePath": "packages/core/next-development-transition.js",
|
|
2008
|
+
"evidencePath": "packages/core/next-development-transition.js",
|
|
2009
|
+
"availability": "shipped",
|
|
2010
|
+
"visibility": "public",
|
|
2011
|
+
"participantFacing": true,
|
|
2012
|
+
"public": true,
|
|
2013
|
+
"packageExport": "./next-development-transition"
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"id": "export:./next-development-controller",
|
|
2017
|
+
"name": "@kungfu-tech/buildchain/next-development-controller",
|
|
2018
|
+
"kind": "package-export",
|
|
2019
|
+
"sourcePath": "packages/core/next-development-controller.js",
|
|
2020
|
+
"evidencePath": "packages/core/next-development-controller.js",
|
|
2021
|
+
"availability": "shipped",
|
|
2022
|
+
"visibility": "public",
|
|
2023
|
+
"participantFacing": true,
|
|
2024
|
+
"public": true,
|
|
2025
|
+
"packageExport": "./next-development-controller"
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
"id": "export:./next-development-projection",
|
|
2029
|
+
"name": "@kungfu-tech/buildchain/next-development-projection",
|
|
2030
|
+
"kind": "package-export",
|
|
2031
|
+
"sourcePath": "packages/core/next-development-projection.js",
|
|
2032
|
+
"evidencePath": "packages/core/next-development-projection.js",
|
|
2033
|
+
"availability": "shipped",
|
|
2034
|
+
"visibility": "public",
|
|
2035
|
+
"participantFacing": true,
|
|
2036
|
+
"public": true,
|
|
2037
|
+
"packageExport": "./next-development-projection"
|
|
2038
|
+
},
|
|
1751
2039
|
{
|
|
1752
2040
|
"id": "export:./stable-candidate-ledger",
|
|
1753
2041
|
"name": "@kungfu-tech/buildchain/stable-candidate-ledger",
|
|
@@ -2092,6 +2380,18 @@
|
|
|
2092
2380
|
}
|
|
2093
2381
|
],
|
|
2094
2382
|
"reverseEnumeratedSurfaces": [
|
|
2383
|
+
{
|
|
2384
|
+
"id": "cli:adopter-delivery",
|
|
2385
|
+
"name": "buildchain adopter-delivery run --input <json-or-path> [--output <path>]",
|
|
2386
|
+
"kind": "cli-command",
|
|
2387
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2388
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2389
|
+
"availability": "shipped",
|
|
2390
|
+
"visibility": "public",
|
|
2391
|
+
"participantFacing": true,
|
|
2392
|
+
"public": true,
|
|
2393
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2394
|
+
},
|
|
2095
2395
|
{
|
|
2096
2396
|
"id": "cli:architecture",
|
|
2097
2397
|
"name": "buildchain architecture validate [--cwd <dir>] [--json]",
|
|
@@ -2932,6 +3232,18 @@
|
|
|
2932
3232
|
"public": true,
|
|
2933
3233
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2934
3234
|
},
|
|
3235
|
+
{
|
|
3236
|
+
"id": "cli:next-development",
|
|
3237
|
+
"name": "buildchain next-development materialize --input <request.json> [--cwd <dir>]",
|
|
3238
|
+
"kind": "cli-command",
|
|
3239
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
3240
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
3241
|
+
"availability": "shipped",
|
|
3242
|
+
"visibility": "public",
|
|
3243
|
+
"participantFacing": true,
|
|
3244
|
+
"public": true,
|
|
3245
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
3246
|
+
},
|
|
2935
3247
|
{
|
|
2936
3248
|
"id": "cli:npm",
|
|
2937
3249
|
"name": "buildchain npm",
|
|
@@ -3316,6 +3628,18 @@
|
|
|
3316
3628
|
"public": true,
|
|
3317
3629
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
3318
3630
|
},
|
|
3631
|
+
{
|
|
3632
|
+
"id": "cli:tail-reseal",
|
|
3633
|
+
"name": "buildchain tail-reseal plan --request <request.json> [--output <plan.json>]",
|
|
3634
|
+
"kind": "cli-command",
|
|
3635
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
3636
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
3637
|
+
"availability": "shipped",
|
|
3638
|
+
"visibility": "public",
|
|
3639
|
+
"participantFacing": true,
|
|
3640
|
+
"public": true,
|
|
3641
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
3642
|
+
},
|
|
3319
3643
|
{
|
|
3320
3644
|
"id": "cli:transaction-inspect",
|
|
3321
3645
|
"name": "buildchain transaction inspect ...",
|
|
@@ -3526,7 +3850,7 @@
|
|
|
3526
3850
|
"visibility": "public",
|
|
3527
3851
|
"participantFacing": true,
|
|
3528
3852
|
"public": true,
|
|
3529
|
-
"inputCount":
|
|
3853
|
+
"inputCount": 91,
|
|
3530
3854
|
"inputs": [
|
|
3531
3855
|
"artifact-compression-level",
|
|
3532
3856
|
"artifact-finalization-command",
|
|
@@ -3555,6 +3879,7 @@
|
|
|
3555
3879
|
"buildchain-expected-major",
|
|
3556
3880
|
"buildchain-ref",
|
|
3557
3881
|
"buildchain-repository",
|
|
3882
|
+
"buildchain-visible-workflow",
|
|
3558
3883
|
"cache-dependency-lock-root",
|
|
3559
3884
|
"cache-policy-root",
|
|
3560
3885
|
"cache-toolchain-root",
|
|
@@ -3769,7 +4094,7 @@
|
|
|
3769
4094
|
"visibility": "public",
|
|
3770
4095
|
"participantFacing": true,
|
|
3771
4096
|
"public": true,
|
|
3772
|
-
"inputCount":
|
|
4097
|
+
"inputCount": 118,
|
|
3773
4098
|
"inputs": [
|
|
3774
4099
|
"allow-repository",
|
|
3775
4100
|
"artifact-name",
|
|
@@ -3777,6 +4102,7 @@
|
|
|
3777
4102
|
"branch-protection-bypass-apps",
|
|
3778
4103
|
"branch-protection-bypass-teams",
|
|
3779
4104
|
"branch-protection-bypass-users",
|
|
4105
|
+
"buildchain-alpha-contract-lock-path",
|
|
3780
4106
|
"buildchain-contract-compatibility-policy",
|
|
3781
4107
|
"buildchain-contract-drift-issue-mode",
|
|
3782
4108
|
"buildchain-contract-lock-path",
|
|
@@ -3784,6 +4110,7 @@
|
|
|
3784
4110
|
"buildchain-expected-major",
|
|
3785
4111
|
"buildchain-ref",
|
|
3786
4112
|
"buildchain-repository",
|
|
4113
|
+
"buildchain-stable-contract-lock-path",
|
|
3787
4114
|
"channel",
|
|
3788
4115
|
"declarative-release-tail",
|
|
3789
4116
|
"dry-run",
|
|
@@ -3802,6 +4129,8 @@
|
|
|
3802
4129
|
"promotion-publication-channel",
|
|
3803
4130
|
"promotion-router-ref",
|
|
3804
4131
|
"promotion-router-sha",
|
|
4132
|
+
"promotion-runtime-authorization-json",
|
|
4133
|
+
"promotion-runtime-authorization-root",
|
|
3805
4134
|
"promotion-runtime-ref",
|
|
3806
4135
|
"promotion-runtime-sha",
|
|
3807
4136
|
"promotion-shell-ref",
|
|
@@ -3867,6 +4196,7 @@
|
|
|
3867
4196
|
"release-passport-output-dir",
|
|
3868
4197
|
"release-passport-platform-manifest-paths",
|
|
3869
4198
|
"release-passport-product-name",
|
|
4199
|
+
"release-passport-v4-runtime-resume-evidence-json",
|
|
3870
4200
|
"release-propagation-config-path",
|
|
3871
4201
|
"required-artifact-count",
|
|
3872
4202
|
"required-status-check",
|
|
@@ -4292,7 +4622,7 @@
|
|
|
4292
4622
|
"visibility": "public",
|
|
4293
4623
|
"participantFacing": true,
|
|
4294
4624
|
"public": true,
|
|
4295
|
-
"inputCount":
|
|
4625
|
+
"inputCount": 94,
|
|
4296
4626
|
"inputs": [
|
|
4297
4627
|
"artifact-compression-level",
|
|
4298
4628
|
"artifact-finalization-command",
|
|
@@ -4324,6 +4654,7 @@
|
|
|
4324
4654
|
"buildchain-ref",
|
|
4325
4655
|
"buildchain-repository",
|
|
4326
4656
|
"buildchain-stable-contract-lock-path",
|
|
4657
|
+
"buildchain-visible-workflow",
|
|
4327
4658
|
"cache-dependency-lock-root",
|
|
4328
4659
|
"cache-policy-root",
|
|
4329
4660
|
"cache-toolchain-root",
|
|
@@ -4505,6 +4836,20 @@
|
|
|
4505
4836
|
],
|
|
4506
4837
|
"reverseAuditSource": ".github/workflows"
|
|
4507
4838
|
},
|
|
4839
|
+
{
|
|
4840
|
+
"id": "workflow:buildchain-ref-promotion-recovery",
|
|
4841
|
+
"name": "workflow:buildchain-ref-promotion-recovery",
|
|
4842
|
+
"kind": "workflow",
|
|
4843
|
+
"sourcePath": ".github/workflows/buildchain-ref-promotion-recovery.yml",
|
|
4844
|
+
"evidencePath": ".github/workflows/buildchain-ref-promotion-recovery.yml",
|
|
4845
|
+
"availability": "shipped",
|
|
4846
|
+
"visibility": "public",
|
|
4847
|
+
"participantFacing": true,
|
|
4848
|
+
"public": true,
|
|
4849
|
+
"inputCount": 0,
|
|
4850
|
+
"inputs": [],
|
|
4851
|
+
"reverseAuditSource": ".github/workflows"
|
|
4852
|
+
},
|
|
4508
4853
|
{
|
|
4509
4854
|
"id": "workflow:buildchain-ref-promotion",
|
|
4510
4855
|
"name": "workflow:buildchain-ref-promotion",
|
|
@@ -4571,13 +4916,18 @@
|
|
|
4571
4916
|
"visibility": "public",
|
|
4572
4917
|
"participantFacing": true,
|
|
4573
4918
|
"public": true,
|
|
4574
|
-
"inputCount":
|
|
4919
|
+
"inputCount": 12,
|
|
4575
4920
|
"inputs": [
|
|
4576
4921
|
"buildchain-ref",
|
|
4577
4922
|
"buildchain-repository",
|
|
4578
4923
|
"mode",
|
|
4579
4924
|
"node-version",
|
|
4580
4925
|
"require-version-state",
|
|
4926
|
+
"source-proof-closure-paths-json",
|
|
4927
|
+
"source-proof-dependency-paths-json",
|
|
4928
|
+
"source-proof-policy-paths-json",
|
|
4929
|
+
"source-proof-required-contexts-json",
|
|
4930
|
+
"source-proof-reuse",
|
|
4581
4931
|
"upload-artifacts",
|
|
4582
4932
|
"working-directory"
|
|
4583
4933
|
],
|
|
@@ -4692,8 +5042,9 @@
|
|
|
4692
5042
|
"visibility": "public",
|
|
4693
5043
|
"participantFacing": true,
|
|
4694
5044
|
"public": true,
|
|
4695
|
-
"inputCount":
|
|
5045
|
+
"inputCount": 43,
|
|
4696
5046
|
"inputs": [
|
|
5047
|
+
"active-lease-context",
|
|
4697
5048
|
"affected-paths-json",
|
|
4698
5049
|
"allowed-head-prefixes",
|
|
4699
5050
|
"assignment-root",
|
|
@@ -4707,22 +5058,32 @@
|
|
|
4707
5058
|
"dependency-root",
|
|
4708
5059
|
"diagnostic-context",
|
|
4709
5060
|
"dry-run",
|
|
5061
|
+
"environment-root",
|
|
4710
5062
|
"expected-head-sha",
|
|
4711
5063
|
"expected-pr-number",
|
|
5064
|
+
"handoff-workflow-id",
|
|
4712
5065
|
"initiative-root",
|
|
4713
5066
|
"landing-mode",
|
|
5067
|
+
"legacy-active-owner-binding-json",
|
|
4714
5068
|
"max-merges",
|
|
4715
5069
|
"merge-method",
|
|
5070
|
+
"native-command",
|
|
5071
|
+
"native-command-root",
|
|
5072
|
+
"native-heartbeat-seconds",
|
|
5073
|
+
"native-proof-json",
|
|
4716
5074
|
"plan-root",
|
|
4717
5075
|
"project-cut-proof-json",
|
|
4718
5076
|
"queue-admission-context",
|
|
4719
5077
|
"ready-label",
|
|
5078
|
+
"release-blocker-priority-json",
|
|
4720
5079
|
"require-approval",
|
|
4721
5080
|
"required-status-checks",
|
|
4722
5081
|
"same-repository-only",
|
|
4723
5082
|
"shard-evidence-roots-json",
|
|
4724
5083
|
"source-identity-root",
|
|
4725
5084
|
"source-patch-root",
|
|
5085
|
+
"source-workflow-id",
|
|
5086
|
+
"source-workflow-run-id",
|
|
4726
5087
|
"target-branch",
|
|
4727
5088
|
"toolchain-root",
|
|
4728
5089
|
"warrant-lease-seconds"
|
|
@@ -5078,17 +5439,19 @@
|
|
|
5078
5439
|
"visibility": "public",
|
|
5079
5440
|
"participantFacing": true,
|
|
5080
5441
|
"public": true,
|
|
5081
|
-
"inputCount":
|
|
5442
|
+
"inputCount": 23,
|
|
5082
5443
|
"inputs": [
|
|
5083
5444
|
"artifact-name",
|
|
5084
5445
|
"artifact-paths",
|
|
5085
5446
|
"artifact-retention-days",
|
|
5086
5447
|
"build-command",
|
|
5448
|
+
"buildchain-alpha-contract-lock-path",
|
|
5087
5449
|
"buildchain-contract-compatibility-policy",
|
|
5088
5450
|
"buildchain-contract-drift-issue-mode",
|
|
5089
5451
|
"buildchain-contract-lock-path",
|
|
5090
5452
|
"buildchain-ref",
|
|
5091
5453
|
"buildchain-repository",
|
|
5454
|
+
"buildchain-stable-contract-lock-path",
|
|
5092
5455
|
"node-version",
|
|
5093
5456
|
"package-name",
|
|
5094
5457
|
"prepare-paper-package",
|
|
@@ -5114,7 +5477,7 @@
|
|
|
5114
5477
|
"visibility": "public",
|
|
5115
5478
|
"participantFacing": true,
|
|
5116
5479
|
"public": true,
|
|
5117
|
-
"inputCount":
|
|
5480
|
+
"inputCount": 103,
|
|
5118
5481
|
"inputs": [
|
|
5119
5482
|
"allow-repository",
|
|
5120
5483
|
"artifact-name",
|
|
@@ -5201,6 +5564,7 @@
|
|
|
5201
5564
|
"release-passport-output-dir",
|
|
5202
5565
|
"release-passport-platform-manifest-paths",
|
|
5203
5566
|
"release-passport-product-name",
|
|
5567
|
+
"release-passport-v4-runtime-resume-evidence-json",
|
|
5204
5568
|
"release-propagation-config-path",
|
|
5205
5569
|
"required-artifact-count",
|
|
5206
5570
|
"required-status-check",
|
|
@@ -5312,12 +5676,17 @@
|
|
|
5312
5676
|
"visibility": "public",
|
|
5313
5677
|
"participantFacing": true,
|
|
5314
5678
|
"public": true,
|
|
5315
|
-
"inputCount":
|
|
5679
|
+
"inputCount": 10,
|
|
5316
5680
|
"inputs": [
|
|
5317
5681
|
"buildchain-ref",
|
|
5682
|
+
"candidate-root",
|
|
5318
5683
|
"declaration-path",
|
|
5319
5684
|
"execute",
|
|
5320
5685
|
"provider-bindings-path",
|
|
5686
|
+
"rehearsal-authority-path",
|
|
5687
|
+
"rehearsal-capsule-path",
|
|
5688
|
+
"rehearsal-evidence-path",
|
|
5689
|
+
"rehearsal-mode",
|
|
5321
5690
|
"state-path"
|
|
5322
5691
|
],
|
|
5323
5692
|
"reverseAuditSource": ".github/workflows"
|
|
@@ -5395,6 +5764,40 @@
|
|
|
5395
5764
|
],
|
|
5396
5765
|
"reverseAuditSource": ".github/workflows"
|
|
5397
5766
|
},
|
|
5767
|
+
{
|
|
5768
|
+
"id": "workflow:v4-adopter-delivery-dogfood",
|
|
5769
|
+
"name": "workflow:v4-adopter-delivery-dogfood",
|
|
5770
|
+
"kind": "workflow",
|
|
5771
|
+
"sourcePath": ".github/workflows/v4-adopter-delivery-dogfood.yml",
|
|
5772
|
+
"evidencePath": ".github/workflows/v4-adopter-delivery-dogfood.yml",
|
|
5773
|
+
"availability": "shipped",
|
|
5774
|
+
"visibility": "public",
|
|
5775
|
+
"participantFacing": true,
|
|
5776
|
+
"public": true,
|
|
5777
|
+
"inputCount": 0,
|
|
5778
|
+
"inputs": [],
|
|
5779
|
+
"reverseAuditSource": ".github/workflows"
|
|
5780
|
+
},
|
|
5781
|
+
{
|
|
5782
|
+
"id": "workflow:v4-adopter-delivery",
|
|
5783
|
+
"name": "workflow:v4-adopter-delivery",
|
|
5784
|
+
"kind": "workflow",
|
|
5785
|
+
"sourcePath": ".github/workflows/v4-adopter-delivery.yml",
|
|
5786
|
+
"evidencePath": ".github/workflows/v4-adopter-delivery.yml",
|
|
5787
|
+
"availability": "shipped",
|
|
5788
|
+
"visibility": "public",
|
|
5789
|
+
"participantFacing": true,
|
|
5790
|
+
"public": true,
|
|
5791
|
+
"inputCount": 5,
|
|
5792
|
+
"inputs": [
|
|
5793
|
+
"archive-path",
|
|
5794
|
+
"bootstrap-path",
|
|
5795
|
+
"consumer",
|
|
5796
|
+
"input-path",
|
|
5797
|
+
"node-version"
|
|
5798
|
+
],
|
|
5799
|
+
"reverseAuditSource": ".github/workflows"
|
|
5800
|
+
},
|
|
5398
5801
|
{
|
|
5399
5802
|
"id": "workflow:v4-public-consumer-dogfood",
|
|
5400
5803
|
"name": "workflow:v4-public-consumer-dogfood",
|
|
@@ -5409,6 +5812,20 @@
|
|
|
5409
5812
|
"inputs": [],
|
|
5410
5813
|
"reverseAuditSource": ".github/workflows"
|
|
5411
5814
|
},
|
|
5815
|
+
{
|
|
5816
|
+
"id": "workflow:v4-publication-rehearsal-dogfood",
|
|
5817
|
+
"name": "workflow:v4-publication-rehearsal-dogfood",
|
|
5818
|
+
"kind": "workflow",
|
|
5819
|
+
"sourcePath": ".github/workflows/v4-publication-rehearsal-dogfood.yml",
|
|
5820
|
+
"evidencePath": ".github/workflows/v4-publication-rehearsal-dogfood.yml",
|
|
5821
|
+
"availability": "shipped",
|
|
5822
|
+
"visibility": "public",
|
|
5823
|
+
"participantFacing": true,
|
|
5824
|
+
"public": true,
|
|
5825
|
+
"inputCount": 0,
|
|
5826
|
+
"inputs": [],
|
|
5827
|
+
"reverseAuditSource": ".github/workflows"
|
|
5828
|
+
},
|
|
5412
5829
|
{
|
|
5413
5830
|
"id": "workflow:v4-stage-capsule-canary",
|
|
5414
5831
|
"name": "workflow:v4-stage-capsule-canary",
|
|
@@ -5430,6 +5847,25 @@
|
|
|
5430
5847
|
],
|
|
5431
5848
|
"reverseAuditSource": ".github/workflows"
|
|
5432
5849
|
},
|
|
5850
|
+
{
|
|
5851
|
+
"id": "workflow:v4-tail-reseal",
|
|
5852
|
+
"name": "workflow:v4-tail-reseal",
|
|
5853
|
+
"kind": "workflow",
|
|
5854
|
+
"sourcePath": ".github/workflows/v4-tail-reseal.yml",
|
|
5855
|
+
"evidencePath": ".github/workflows/v4-tail-reseal.yml",
|
|
5856
|
+
"availability": "shipped",
|
|
5857
|
+
"visibility": "public",
|
|
5858
|
+
"participantFacing": true,
|
|
5859
|
+
"public": true,
|
|
5860
|
+
"inputCount": 4,
|
|
5861
|
+
"inputs": [
|
|
5862
|
+
"artifact-retention-days",
|
|
5863
|
+
"consumer-policy-receipt-json",
|
|
5864
|
+
"macos-finalization-command",
|
|
5865
|
+
"request-json"
|
|
5866
|
+
],
|
|
5867
|
+
"reverseAuditSource": ".github/workflows"
|
|
5868
|
+
},
|
|
5433
5869
|
{
|
|
5434
5870
|
"id": "workflow:verify",
|
|
5435
5871
|
"name": "workflow:verify",
|
|
@@ -5518,7 +5954,7 @@
|
|
|
5518
5954
|
"visibility": "public",
|
|
5519
5955
|
"participantFacing": true,
|
|
5520
5956
|
"public": true,
|
|
5521
|
-
"inputCount":
|
|
5957
|
+
"inputCount": 84,
|
|
5522
5958
|
"inputs": [
|
|
5523
5959
|
"allow-repository",
|
|
5524
5960
|
"branch-protection-bypass-apps",
|
|
@@ -5588,6 +6024,10 @@
|
|
|
5588
6024
|
"release-passport-platform-manifest-paths",
|
|
5589
6025
|
"release-passport-product-name",
|
|
5590
6026
|
"release-passport-promotion-routing-json",
|
|
6027
|
+
"release-passport-v4-consumer-policy-certification-json",
|
|
6028
|
+
"release-passport-v4-consumer-policy-certification-root",
|
|
6029
|
+
"release-passport-v4-runtime-resume-evidence-command",
|
|
6030
|
+
"release-passport-v4-runtime-resume-evidence-json",
|
|
5591
6031
|
"release-tail-state-path",
|
|
5592
6032
|
"require-governance",
|
|
5593
6033
|
"require-publication-qualification",
|
|
@@ -5613,13 +6053,18 @@
|
|
|
5613
6053
|
"visibility": "public",
|
|
5614
6054
|
"participantFacing": true,
|
|
5615
6055
|
"public": true,
|
|
5616
|
-
"inputCount":
|
|
6056
|
+
"inputCount": 11,
|
|
5617
6057
|
"inputs": [
|
|
6058
|
+
"candidate-root",
|
|
5618
6059
|
"declaration",
|
|
5619
6060
|
"execute",
|
|
5620
6061
|
"github-token",
|
|
5621
6062
|
"http-token",
|
|
5622
6063
|
"provider-bindings",
|
|
6064
|
+
"rehearsal-authority",
|
|
6065
|
+
"rehearsal-capsule",
|
|
6066
|
+
"rehearsal-evidence-path",
|
|
6067
|
+
"rehearsal-mode",
|
|
5623
6068
|
"state-path"
|
|
5624
6069
|
],
|
|
5625
6070
|
"reverseAuditSource": "actions/*/action.yml"
|
|
@@ -6097,6 +6542,18 @@
|
|
|
6097
6542
|
"public": true,
|
|
6098
6543
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6099
6544
|
},
|
|
6545
|
+
{
|
|
6546
|
+
"id": "site-page:manual:dev-delivery-qualification-landing-adr",
|
|
6547
|
+
"name": "site-page:manual:dev-delivery-qualification-landing-adr",
|
|
6548
|
+
"kind": "site-page",
|
|
6549
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
6550
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
6551
|
+
"availability": "shipped",
|
|
6552
|
+
"visibility": "public",
|
|
6553
|
+
"participantFacing": true,
|
|
6554
|
+
"public": true,
|
|
6555
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6556
|
+
},
|
|
6100
6557
|
{
|
|
6101
6558
|
"id": "site-page:manual:dev-delivery-warrant",
|
|
6102
6559
|
"name": "site-page:manual:dev-delivery-warrant",
|
|
@@ -6265,6 +6722,18 @@
|
|
|
6265
6722
|
"public": true,
|
|
6266
6723
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6267
6724
|
},
|
|
6725
|
+
{
|
|
6726
|
+
"id": "site-page:manual:next-development-transition",
|
|
6727
|
+
"name": "site-page:manual:next-development-transition",
|
|
6728
|
+
"kind": "site-page",
|
|
6729
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
6730
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
6731
|
+
"availability": "shipped",
|
|
6732
|
+
"visibility": "public",
|
|
6733
|
+
"participantFacing": true,
|
|
6734
|
+
"public": true,
|
|
6735
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6736
|
+
},
|
|
6268
6737
|
{
|
|
6269
6738
|
"id": "site-page:manual:node-api-reference",
|
|
6270
6739
|
"name": "site-page:manual:node-api-reference",
|
|
@@ -6541,6 +7010,18 @@
|
|
|
6541
7010
|
"public": true,
|
|
6542
7011
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6543
7012
|
},
|
|
7013
|
+
{
|
|
7014
|
+
"id": "site-page:manual:v4-adopter-delivery",
|
|
7015
|
+
"name": "site-page:manual:v4-adopter-delivery",
|
|
7016
|
+
"kind": "site-page",
|
|
7017
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
7018
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
7019
|
+
"availability": "shipped",
|
|
7020
|
+
"visibility": "public",
|
|
7021
|
+
"participantFacing": true,
|
|
7022
|
+
"public": true,
|
|
7023
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
7024
|
+
},
|
|
6544
7025
|
{
|
|
6545
7026
|
"id": "site-page:manual:v4-canonical-contracts",
|
|
6546
7027
|
"name": "site-page:manual:v4-canonical-contracts",
|
|
@@ -6553,6 +7034,18 @@
|
|
|
6553
7034
|
"public": true,
|
|
6554
7035
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6555
7036
|
},
|
|
7037
|
+
{
|
|
7038
|
+
"id": "site-page:manual:v4-compatibility-facts",
|
|
7039
|
+
"name": "site-page:manual:v4-compatibility-facts",
|
|
7040
|
+
"kind": "site-page",
|
|
7041
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
7042
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
7043
|
+
"availability": "shipped",
|
|
7044
|
+
"visibility": "public",
|
|
7045
|
+
"participantFacing": true,
|
|
7046
|
+
"public": true,
|
|
7047
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
7048
|
+
},
|
|
6556
7049
|
{
|
|
6557
7050
|
"id": "site-page:manual:v4-delivery-warrant-read-candidate",
|
|
6558
7051
|
"name": "site-page:manual:v4-delivery-warrant-read-candidate",
|
|
@@ -6589,6 +7082,30 @@
|
|
|
6589
7082
|
"public": true,
|
|
6590
7083
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6591
7084
|
},
|
|
7085
|
+
{
|
|
7086
|
+
"id": "site-page:manual:v4-publication-rehearsal",
|
|
7087
|
+
"name": "site-page:manual:v4-publication-rehearsal",
|
|
7088
|
+
"kind": "site-page",
|
|
7089
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
7090
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
7091
|
+
"availability": "shipped",
|
|
7092
|
+
"visibility": "public",
|
|
7093
|
+
"participantFacing": true,
|
|
7094
|
+
"public": true,
|
|
7095
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
7096
|
+
},
|
|
7097
|
+
{
|
|
7098
|
+
"id": "site-page:manual:v4-runtime-ref-resume-authority",
|
|
7099
|
+
"name": "site-page:manual:v4-runtime-ref-resume-authority",
|
|
7100
|
+
"kind": "site-page",
|
|
7101
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
7102
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
7103
|
+
"availability": "shipped",
|
|
7104
|
+
"visibility": "public",
|
|
7105
|
+
"participantFacing": true,
|
|
7106
|
+
"public": true,
|
|
7107
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
7108
|
+
},
|
|
6592
7109
|
{
|
|
6593
7110
|
"id": "site-page:manual:v4-stage-capsule",
|
|
6594
7111
|
"name": "site-page:manual:v4-stage-capsule",
|
|
@@ -6601,6 +7118,18 @@
|
|
|
6601
7118
|
"public": true,
|
|
6602
7119
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6603
7120
|
},
|
|
7121
|
+
{
|
|
7122
|
+
"id": "site-page:manual:v4-tail-reseal",
|
|
7123
|
+
"name": "site-page:manual:v4-tail-reseal",
|
|
7124
|
+
"kind": "site-page",
|
|
7125
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
7126
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
7127
|
+
"availability": "shipped",
|
|
7128
|
+
"visibility": "public",
|
|
7129
|
+
"participantFacing": true,
|
|
7130
|
+
"public": true,
|
|
7131
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
7132
|
+
},
|
|
6604
7133
|
{
|
|
6605
7134
|
"id": "site-page:manual:versioning",
|
|
6606
7135
|
"name": "site-page:manual:versioning",
|
|
@@ -6808,6 +7337,6 @@
|
|
|
6808
7337
|
}
|
|
6809
7338
|
}
|
|
6810
7339
|
],
|
|
6811
|
-
"publicSurfaceCount":
|
|
7340
|
+
"publicSurfaceCount": 472
|
|
6812
7341
|
}
|
|
6813
7342
|
}
|