@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
|
@@ -3,15 +3,20 @@
|
|
|
3
3
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
4
4
|
"status": "passed",
|
|
5
5
|
"summary": {
|
|
6
|
-
"cliCommandCount":
|
|
7
|
-
"workflowCount":
|
|
6
|
+
"cliCommandCount": 117,
|
|
7
|
+
"workflowCount": 76,
|
|
8
8
|
"actionCount": 7,
|
|
9
|
-
"sitePageCount":
|
|
10
|
-
"docCommandRefCount":
|
|
9
|
+
"sitePageCount": 82,
|
|
10
|
+
"docCommandRefCount": 1049,
|
|
11
11
|
"failureCount": 0
|
|
12
12
|
},
|
|
13
13
|
"enumerated": {
|
|
14
14
|
"cliCommands": [
|
|
15
|
+
{
|
|
16
|
+
"id": "adopter-delivery",
|
|
17
|
+
"source": "bin/buildchain.mjs",
|
|
18
|
+
"usage": "buildchain adopter-delivery run --input <json-or-path> [--output <path>]"
|
|
19
|
+
},
|
|
15
20
|
{
|
|
16
21
|
"id": "architecture",
|
|
17
22
|
"source": "bin/buildchain.mjs",
|
|
@@ -362,6 +367,11 @@
|
|
|
362
367
|
"source": "bin/buildchain.mjs",
|
|
363
368
|
"usage": "buildchain mark --event <name> [--phase <phase>] [--component <name>]"
|
|
364
369
|
},
|
|
370
|
+
{
|
|
371
|
+
"id": "next-development",
|
|
372
|
+
"source": "bin/buildchain.mjs",
|
|
373
|
+
"usage": "buildchain next-development materialize --input <request.json> [--cwd <dir>]"
|
|
374
|
+
},
|
|
365
375
|
{
|
|
366
376
|
"id": "npm",
|
|
367
377
|
"source": "bin/buildchain.mjs",
|
|
@@ -522,6 +532,11 @@
|
|
|
522
532
|
"source": "bin/buildchain.mjs",
|
|
523
533
|
"usage": "buildchain span --event <name> [--phase <phase>] [--component <name>]"
|
|
524
534
|
},
|
|
535
|
+
{
|
|
536
|
+
"id": "tail-reseal",
|
|
537
|
+
"source": "bin/buildchain.mjs",
|
|
538
|
+
"usage": "buildchain tail-reseal plan --request <request.json> [--output <plan.json>]"
|
|
539
|
+
},
|
|
525
540
|
{
|
|
526
541
|
"id": "transaction-inspect",
|
|
527
542
|
"source": "bin/buildchain.mjs",
|
|
@@ -680,6 +695,7 @@
|
|
|
680
695
|
"buildchain-expected-major",
|
|
681
696
|
"buildchain-ref",
|
|
682
697
|
"buildchain-repository",
|
|
698
|
+
"buildchain-visible-workflow",
|
|
683
699
|
"cache-dependency-lock-root",
|
|
684
700
|
"cache-policy-root",
|
|
685
701
|
"cache-toolchain-root",
|
|
@@ -744,7 +760,7 @@
|
|
|
744
760
|
"verify-substage-evidence-path",
|
|
745
761
|
"working-directory"
|
|
746
762
|
],
|
|
747
|
-
"inputCount":
|
|
763
|
+
"inputCount": 91,
|
|
748
764
|
"secrets": [
|
|
749
765
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
750
766
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -800,9 +816,11 @@
|
|
|
800
816
|
"release-manifest-json",
|
|
801
817
|
"runner-preset",
|
|
802
818
|
"runner-routing-json",
|
|
803
|
-
"trusted-event"
|
|
819
|
+
"trusted-event",
|
|
820
|
+
"v4-consumer-policy-receipt-json",
|
|
821
|
+
"v4-consumer-policy-receipt-root"
|
|
804
822
|
],
|
|
805
|
-
"outputCount":
|
|
823
|
+
"outputCount": 45
|
|
806
824
|
},
|
|
807
825
|
{
|
|
808
826
|
"id": ".bump-minor-version",
|
|
@@ -977,6 +995,7 @@
|
|
|
977
995
|
"branch-protection-bypass-apps",
|
|
978
996
|
"branch-protection-bypass-teams",
|
|
979
997
|
"branch-protection-bypass-users",
|
|
998
|
+
"buildchain-alpha-contract-lock-path",
|
|
980
999
|
"buildchain-contract-compatibility-policy",
|
|
981
1000
|
"buildchain-contract-drift-issue-mode",
|
|
982
1001
|
"buildchain-contract-lock-path",
|
|
@@ -984,6 +1003,7 @@
|
|
|
984
1003
|
"buildchain-expected-major",
|
|
985
1004
|
"buildchain-ref",
|
|
986
1005
|
"buildchain-repository",
|
|
1006
|
+
"buildchain-stable-contract-lock-path",
|
|
987
1007
|
"channel",
|
|
988
1008
|
"declarative-release-tail",
|
|
989
1009
|
"dry-run",
|
|
@@ -1002,6 +1022,8 @@
|
|
|
1002
1022
|
"promotion-publication-channel",
|
|
1003
1023
|
"promotion-router-ref",
|
|
1004
1024
|
"promotion-router-sha",
|
|
1025
|
+
"promotion-runtime-authorization-json",
|
|
1026
|
+
"promotion-runtime-authorization-root",
|
|
1005
1027
|
"promotion-runtime-ref",
|
|
1006
1028
|
"promotion-runtime-sha",
|
|
1007
1029
|
"promotion-shell-ref",
|
|
@@ -1067,6 +1089,7 @@
|
|
|
1067
1089
|
"release-passport-output-dir",
|
|
1068
1090
|
"release-passport-platform-manifest-paths",
|
|
1069
1091
|
"release-passport-product-name",
|
|
1092
|
+
"release-passport-v4-runtime-resume-evidence-json",
|
|
1070
1093
|
"release-propagation-config-path",
|
|
1071
1094
|
"required-artifact-count",
|
|
1072
1095
|
"required-status-check",
|
|
@@ -1085,7 +1108,7 @@
|
|
|
1085
1108
|
"target-sha",
|
|
1086
1109
|
"trusted-publishing"
|
|
1087
1110
|
],
|
|
1088
|
-
"inputCount":
|
|
1111
|
+
"inputCount": 118,
|
|
1089
1112
|
"secrets": [
|
|
1090
1113
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
1091
1114
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -1583,6 +1606,7 @@
|
|
|
1583
1606
|
"buildchain-ref",
|
|
1584
1607
|
"buildchain-repository",
|
|
1585
1608
|
"buildchain-stable-contract-lock-path",
|
|
1609
|
+
"buildchain-visible-workflow",
|
|
1586
1610
|
"cache-dependency-lock-root",
|
|
1587
1611
|
"cache-policy-root",
|
|
1588
1612
|
"cache-toolchain-root",
|
|
@@ -1647,7 +1671,7 @@
|
|
|
1647
1671
|
"verify-substage-evidence-path",
|
|
1648
1672
|
"working-directory"
|
|
1649
1673
|
],
|
|
1650
|
-
"inputCount":
|
|
1674
|
+
"inputCount": 94,
|
|
1651
1675
|
"secrets": [
|
|
1652
1676
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
1653
1677
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -1706,9 +1730,11 @@
|
|
|
1706
1730
|
"release-manifest-json",
|
|
1707
1731
|
"runner-preset",
|
|
1708
1732
|
"runner-routing-json",
|
|
1709
|
-
"trusted-event"
|
|
1733
|
+
"trusted-event",
|
|
1734
|
+
"v4-consumer-policy-receipt-json",
|
|
1735
|
+
"v4-consumer-policy-receipt-root"
|
|
1710
1736
|
],
|
|
1711
|
-
"outputCount":
|
|
1737
|
+
"outputCount": 48
|
|
1712
1738
|
},
|
|
1713
1739
|
{
|
|
1714
1740
|
"id": "buildchain-alpha-self-dogfood",
|
|
@@ -1812,6 +1838,17 @@
|
|
|
1812
1838
|
],
|
|
1813
1839
|
"outputCount": 5
|
|
1814
1840
|
},
|
|
1841
|
+
{
|
|
1842
|
+
"id": "buildchain-ref-promotion-recovery",
|
|
1843
|
+
"path": ".github/workflows/buildchain-ref-promotion-recovery.yml",
|
|
1844
|
+
"reusable": false,
|
|
1845
|
+
"inputs": [],
|
|
1846
|
+
"inputCount": 0,
|
|
1847
|
+
"secrets": [],
|
|
1848
|
+
"secretCount": 0,
|
|
1849
|
+
"outputs": [],
|
|
1850
|
+
"outputCount": 0
|
|
1851
|
+
},
|
|
1815
1852
|
{
|
|
1816
1853
|
"id": "buildchain-ref-promotion",
|
|
1817
1854
|
"path": ".github/workflows/buildchain-ref-promotion.yml",
|
|
@@ -1866,10 +1903,15 @@
|
|
|
1866
1903
|
"mode",
|
|
1867
1904
|
"node-version",
|
|
1868
1905
|
"require-version-state",
|
|
1906
|
+
"source-proof-closure-paths-json",
|
|
1907
|
+
"source-proof-dependency-paths-json",
|
|
1908
|
+
"source-proof-policy-paths-json",
|
|
1909
|
+
"source-proof-required-contexts-json",
|
|
1910
|
+
"source-proof-reuse",
|
|
1869
1911
|
"upload-artifacts",
|
|
1870
1912
|
"working-directory"
|
|
1871
1913
|
],
|
|
1872
|
-
"inputCount":
|
|
1914
|
+
"inputCount": 12,
|
|
1873
1915
|
"secrets": [],
|
|
1874
1916
|
"secretCount": 0,
|
|
1875
1917
|
"outputs": [
|
|
@@ -1879,9 +1921,14 @@
|
|
|
1879
1921
|
"controller-receipt-artifact",
|
|
1880
1922
|
"controller-receipt-digest",
|
|
1881
1923
|
"controller-receipt-json",
|
|
1882
|
-
"controller-receipt-status"
|
|
1924
|
+
"controller-receipt-status",
|
|
1925
|
+
"source-proof-decision-root",
|
|
1926
|
+
"source-proof-producer-run-id",
|
|
1927
|
+
"source-proof-reuse-reason",
|
|
1928
|
+
"source-proof-reused",
|
|
1929
|
+
"source-proof-root"
|
|
1883
1930
|
],
|
|
1884
|
-
"outputCount":
|
|
1931
|
+
"outputCount": 12
|
|
1885
1932
|
},
|
|
1886
1933
|
{
|
|
1887
1934
|
"id": "dev-alpha-candidate-patrol",
|
|
@@ -2007,6 +2054,7 @@
|
|
|
2007
2054
|
"path": ".github/workflows/dev-pr-auto-merge.yml",
|
|
2008
2055
|
"reusable": true,
|
|
2009
2056
|
"inputs": [
|
|
2057
|
+
"active-lease-context",
|
|
2010
2058
|
"affected-paths-json",
|
|
2011
2059
|
"allowed-head-prefixes",
|
|
2012
2060
|
"assignment-root",
|
|
@@ -2020,27 +2068,37 @@
|
|
|
2020
2068
|
"dependency-root",
|
|
2021
2069
|
"diagnostic-context",
|
|
2022
2070
|
"dry-run",
|
|
2071
|
+
"environment-root",
|
|
2023
2072
|
"expected-head-sha",
|
|
2024
2073
|
"expected-pr-number",
|
|
2074
|
+
"handoff-workflow-id",
|
|
2025
2075
|
"initiative-root",
|
|
2026
2076
|
"landing-mode",
|
|
2077
|
+
"legacy-active-owner-binding-json",
|
|
2027
2078
|
"max-merges",
|
|
2028
2079
|
"merge-method",
|
|
2080
|
+
"native-command",
|
|
2081
|
+
"native-command-root",
|
|
2082
|
+
"native-heartbeat-seconds",
|
|
2083
|
+
"native-proof-json",
|
|
2029
2084
|
"plan-root",
|
|
2030
2085
|
"project-cut-proof-json",
|
|
2031
2086
|
"queue-admission-context",
|
|
2032
2087
|
"ready-label",
|
|
2088
|
+
"release-blocker-priority-json",
|
|
2033
2089
|
"require-approval",
|
|
2034
2090
|
"required-status-checks",
|
|
2035
2091
|
"same-repository-only",
|
|
2036
2092
|
"shard-evidence-roots-json",
|
|
2037
2093
|
"source-identity-root",
|
|
2038
2094
|
"source-patch-root",
|
|
2095
|
+
"source-workflow-id",
|
|
2096
|
+
"source-workflow-run-id",
|
|
2039
2097
|
"target-branch",
|
|
2040
2098
|
"toolchain-root",
|
|
2041
2099
|
"warrant-lease-seconds"
|
|
2042
2100
|
],
|
|
2043
|
-
"inputCount":
|
|
2101
|
+
"inputCount": 43,
|
|
2044
2102
|
"secrets": [
|
|
2045
2103
|
"github-token"
|
|
2046
2104
|
],
|
|
@@ -2053,14 +2111,20 @@
|
|
|
2053
2111
|
"evaluated-count",
|
|
2054
2112
|
"final-base-sha",
|
|
2055
2113
|
"merged-count",
|
|
2114
|
+
"native-execution-transfer-root",
|
|
2115
|
+
"native-proof-root",
|
|
2116
|
+
"native-reuse-decision-root",
|
|
2056
2117
|
"project-cut-proof-root",
|
|
2118
|
+
"provider-finalizer-boundary-root",
|
|
2119
|
+
"provider-heartbeat-receipt-root",
|
|
2120
|
+
"qualified-warrant-receipt-root",
|
|
2057
2121
|
"skipped-count",
|
|
2058
2122
|
"source-proof-root",
|
|
2059
2123
|
"warrant-receipt-root",
|
|
2060
2124
|
"warrant-state-commit",
|
|
2061
2125
|
"warrant-state-root"
|
|
2062
2126
|
],
|
|
2063
|
-
"outputCount":
|
|
2127
|
+
"outputCount": 19
|
|
2064
2128
|
},
|
|
2065
2129
|
{
|
|
2066
2130
|
"id": "dev-qualification-patrol",
|
|
@@ -2451,11 +2515,13 @@
|
|
|
2451
2515
|
"artifact-paths",
|
|
2452
2516
|
"artifact-retention-days",
|
|
2453
2517
|
"build-command",
|
|
2518
|
+
"buildchain-alpha-contract-lock-path",
|
|
2454
2519
|
"buildchain-contract-compatibility-policy",
|
|
2455
2520
|
"buildchain-contract-drift-issue-mode",
|
|
2456
2521
|
"buildchain-contract-lock-path",
|
|
2457
2522
|
"buildchain-ref",
|
|
2458
2523
|
"buildchain-repository",
|
|
2524
|
+
"buildchain-stable-contract-lock-path",
|
|
2459
2525
|
"node-version",
|
|
2460
2526
|
"package-name",
|
|
2461
2527
|
"prepare-paper-package",
|
|
@@ -2469,7 +2535,7 @@
|
|
|
2469
2535
|
"verify-command",
|
|
2470
2536
|
"working-directory"
|
|
2471
2537
|
],
|
|
2472
|
-
"inputCount":
|
|
2538
|
+
"inputCount": 23,
|
|
2473
2539
|
"secrets": [],
|
|
2474
2540
|
"secretCount": 0,
|
|
2475
2541
|
"outputs": [
|
|
@@ -2582,6 +2648,7 @@
|
|
|
2582
2648
|
"release-passport-output-dir",
|
|
2583
2649
|
"release-passport-platform-manifest-paths",
|
|
2584
2650
|
"release-passport-product-name",
|
|
2651
|
+
"release-passport-v4-runtime-resume-evidence-json",
|
|
2585
2652
|
"release-propagation-config-path",
|
|
2586
2653
|
"required-artifact-count",
|
|
2587
2654
|
"required-status-check",
|
|
@@ -2600,7 +2667,7 @@
|
|
|
2600
2667
|
"target-sha",
|
|
2601
2668
|
"trusted-publishing"
|
|
2602
2669
|
],
|
|
2603
|
-
"inputCount":
|
|
2670
|
+
"inputCount": 103,
|
|
2604
2671
|
"secrets": [
|
|
2605
2672
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
2606
2673
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -2752,22 +2819,28 @@
|
|
|
2752
2819
|
"reusable": true,
|
|
2753
2820
|
"inputs": [
|
|
2754
2821
|
"buildchain-ref",
|
|
2822
|
+
"candidate-root",
|
|
2755
2823
|
"declaration-path",
|
|
2756
2824
|
"execute",
|
|
2757
2825
|
"provider-bindings-path",
|
|
2826
|
+
"rehearsal-authority-path",
|
|
2827
|
+
"rehearsal-capsule-path",
|
|
2828
|
+
"rehearsal-evidence-path",
|
|
2829
|
+
"rehearsal-mode",
|
|
2758
2830
|
"state-path"
|
|
2759
2831
|
],
|
|
2760
|
-
"inputCount":
|
|
2832
|
+
"inputCount": 10,
|
|
2761
2833
|
"secrets": [
|
|
2762
2834
|
"http-token"
|
|
2763
2835
|
],
|
|
2764
2836
|
"secretCount": 1,
|
|
2765
2837
|
"outputs": [
|
|
2838
|
+
"rehearsal-evidence-root",
|
|
2766
2839
|
"state-root",
|
|
2767
2840
|
"transaction-root",
|
|
2768
2841
|
"transaction-state"
|
|
2769
2842
|
],
|
|
2770
|
-
"outputCount":
|
|
2843
|
+
"outputCount": 4
|
|
2771
2844
|
},
|
|
2772
2845
|
{
|
|
2773
2846
|
"id": "release-verify",
|
|
@@ -2840,6 +2913,34 @@
|
|
|
2840
2913
|
],
|
|
2841
2914
|
"outputCount": 6
|
|
2842
2915
|
},
|
|
2916
|
+
{
|
|
2917
|
+
"id": "v4-adopter-delivery-dogfood",
|
|
2918
|
+
"path": ".github/workflows/v4-adopter-delivery-dogfood.yml",
|
|
2919
|
+
"reusable": false,
|
|
2920
|
+
"inputs": [],
|
|
2921
|
+
"inputCount": 0,
|
|
2922
|
+
"secrets": [],
|
|
2923
|
+
"secretCount": 0,
|
|
2924
|
+
"outputs": [],
|
|
2925
|
+
"outputCount": 0
|
|
2926
|
+
},
|
|
2927
|
+
{
|
|
2928
|
+
"id": "v4-adopter-delivery",
|
|
2929
|
+
"path": ".github/workflows/v4-adopter-delivery.yml",
|
|
2930
|
+
"reusable": true,
|
|
2931
|
+
"inputs": [
|
|
2932
|
+
"archive-path",
|
|
2933
|
+
"bootstrap-path",
|
|
2934
|
+
"consumer",
|
|
2935
|
+
"input-path",
|
|
2936
|
+
"node-version"
|
|
2937
|
+
],
|
|
2938
|
+
"inputCount": 5,
|
|
2939
|
+
"secrets": [],
|
|
2940
|
+
"secretCount": 0,
|
|
2941
|
+
"outputs": [],
|
|
2942
|
+
"outputCount": 0
|
|
2943
|
+
},
|
|
2843
2944
|
{
|
|
2844
2945
|
"id": "v4-public-consumer-dogfood",
|
|
2845
2946
|
"path": ".github/workflows/v4-public-consumer-dogfood.yml",
|
|
@@ -2851,6 +2952,17 @@
|
|
|
2851
2952
|
"outputs": [],
|
|
2852
2953
|
"outputCount": 0
|
|
2853
2954
|
},
|
|
2955
|
+
{
|
|
2956
|
+
"id": "v4-publication-rehearsal-dogfood",
|
|
2957
|
+
"path": ".github/workflows/v4-publication-rehearsal-dogfood.yml",
|
|
2958
|
+
"reusable": false,
|
|
2959
|
+
"inputs": [],
|
|
2960
|
+
"inputCount": 0,
|
|
2961
|
+
"secrets": [],
|
|
2962
|
+
"secretCount": 0,
|
|
2963
|
+
"outputs": [],
|
|
2964
|
+
"outputCount": 0
|
|
2965
|
+
},
|
|
2854
2966
|
{
|
|
2855
2967
|
"id": "v4-stage-capsule-canary",
|
|
2856
2968
|
"path": ".github/workflows/v4-stage-capsule-canary.yml",
|
|
@@ -2869,6 +2981,28 @@
|
|
|
2869
2981
|
"outputs": [],
|
|
2870
2982
|
"outputCount": 0
|
|
2871
2983
|
},
|
|
2984
|
+
{
|
|
2985
|
+
"id": "v4-tail-reseal",
|
|
2986
|
+
"path": ".github/workflows/v4-tail-reseal.yml",
|
|
2987
|
+
"reusable": true,
|
|
2988
|
+
"inputs": [
|
|
2989
|
+
"artifact-retention-days",
|
|
2990
|
+
"consumer-policy-receipt-json",
|
|
2991
|
+
"macos-finalization-command",
|
|
2992
|
+
"request-json"
|
|
2993
|
+
],
|
|
2994
|
+
"inputCount": 4,
|
|
2995
|
+
"secrets": [
|
|
2996
|
+
"BUILDCHAIN_EVIDENCE_READ_TOKEN",
|
|
2997
|
+
"BUILDCHAIN_SIGNING_TOKEN"
|
|
2998
|
+
],
|
|
2999
|
+
"secretCount": 2,
|
|
3000
|
+
"outputs": [
|
|
3001
|
+
"release-candidate-passport-json",
|
|
3002
|
+
"tail-reseal-receipt-root"
|
|
3003
|
+
],
|
|
3004
|
+
"outputCount": 2
|
|
3005
|
+
},
|
|
2872
3006
|
{
|
|
2873
3007
|
"id": "verify",
|
|
2874
3008
|
"path": ".github/workflows/verify.yml",
|
|
@@ -3002,6 +3136,10 @@
|
|
|
3002
3136
|
"release-passport-platform-manifest-paths",
|
|
3003
3137
|
"release-passport-product-name",
|
|
3004
3138
|
"release-passport-promotion-routing-json",
|
|
3139
|
+
"release-passport-v4-consumer-policy-certification-json",
|
|
3140
|
+
"release-passport-v4-consumer-policy-certification-root",
|
|
3141
|
+
"release-passport-v4-runtime-resume-evidence-command",
|
|
3142
|
+
"release-passport-v4-runtime-resume-evidence-json",
|
|
3005
3143
|
"release-tail-state-path",
|
|
3006
3144
|
"require-governance",
|
|
3007
3145
|
"require-publication-qualification",
|
|
@@ -3015,20 +3153,25 @@
|
|
|
3015
3153
|
"transaction-state-path",
|
|
3016
3154
|
"verification-command"
|
|
3017
3155
|
],
|
|
3018
|
-
"inputCount":
|
|
3156
|
+
"inputCount": 84
|
|
3019
3157
|
},
|
|
3020
3158
|
{
|
|
3021
3159
|
"id": "release-tail",
|
|
3022
3160
|
"path": "actions/release-tail/action.yml",
|
|
3023
3161
|
"inputs": [
|
|
3162
|
+
"candidate-root",
|
|
3024
3163
|
"declaration",
|
|
3025
3164
|
"execute",
|
|
3026
3165
|
"github-token",
|
|
3027
3166
|
"http-token",
|
|
3028
3167
|
"provider-bindings",
|
|
3168
|
+
"rehearsal-authority",
|
|
3169
|
+
"rehearsal-capsule",
|
|
3170
|
+
"rehearsal-evidence-path",
|
|
3171
|
+
"rehearsal-mode",
|
|
3029
3172
|
"state-path"
|
|
3030
3173
|
],
|
|
3031
|
-
"inputCount":
|
|
3174
|
+
"inputCount": 11
|
|
3032
3175
|
},
|
|
3033
3176
|
{
|
|
3034
3177
|
"id": "report-buildchain-issue",
|
|
@@ -3241,6 +3384,10 @@
|
|
|
3241
3384
|
"id": "manual:dev-alpha-candidate-patrol",
|
|
3242
3385
|
"category": "manual"
|
|
3243
3386
|
},
|
|
3387
|
+
{
|
|
3388
|
+
"id": "manual:dev-delivery-qualification-landing-adr",
|
|
3389
|
+
"category": "manual"
|
|
3390
|
+
},
|
|
3244
3391
|
{
|
|
3245
3392
|
"id": "manual:dev-delivery-warrant",
|
|
3246
3393
|
"category": "manual"
|
|
@@ -3297,6 +3444,10 @@
|
|
|
3297
3444
|
"id": "manual:migration-inventory",
|
|
3298
3445
|
"category": "manual"
|
|
3299
3446
|
},
|
|
3447
|
+
{
|
|
3448
|
+
"id": "manual:next-development-transition",
|
|
3449
|
+
"category": "manual"
|
|
3450
|
+
},
|
|
3300
3451
|
{
|
|
3301
3452
|
"id": "manual:node-api-reference",
|
|
3302
3453
|
"category": "manual"
|
|
@@ -3389,10 +3540,18 @@
|
|
|
3389
3540
|
"id": "manual:toolkit-observability",
|
|
3390
3541
|
"category": "manual"
|
|
3391
3542
|
},
|
|
3543
|
+
{
|
|
3544
|
+
"id": "manual:v4-adopter-delivery",
|
|
3545
|
+
"category": "manual"
|
|
3546
|
+
},
|
|
3392
3547
|
{
|
|
3393
3548
|
"id": "manual:v4-canonical-contracts",
|
|
3394
3549
|
"category": "manual"
|
|
3395
3550
|
},
|
|
3551
|
+
{
|
|
3552
|
+
"id": "manual:v4-compatibility-facts",
|
|
3553
|
+
"category": "manual"
|
|
3554
|
+
},
|
|
3396
3555
|
{
|
|
3397
3556
|
"id": "manual:v4-delivery-warrant-read-candidate",
|
|
3398
3557
|
"category": "manual"
|
|
@@ -3405,10 +3564,22 @@
|
|
|
3405
3564
|
"id": "manual:v4-production-release",
|
|
3406
3565
|
"category": "manual"
|
|
3407
3566
|
},
|
|
3567
|
+
{
|
|
3568
|
+
"id": "manual:v4-publication-rehearsal",
|
|
3569
|
+
"category": "manual"
|
|
3570
|
+
},
|
|
3571
|
+
{
|
|
3572
|
+
"id": "manual:v4-runtime-ref-resume-authority",
|
|
3573
|
+
"category": "manual"
|
|
3574
|
+
},
|
|
3408
3575
|
{
|
|
3409
3576
|
"id": "manual:v4-stage-capsule",
|
|
3410
3577
|
"category": "manual"
|
|
3411
3578
|
},
|
|
3579
|
+
{
|
|
3580
|
+
"id": "manual:v4-tail-reseal",
|
|
3581
|
+
"category": "manual"
|
|
3582
|
+
},
|
|
3412
3583
|
{
|
|
3413
3584
|
"id": "manual:versioning",
|
|
3414
3585
|
"category": "manual"
|
|
@@ -3423,6 +3594,106 @@
|
|
|
3423
3594
|
}
|
|
3424
3595
|
],
|
|
3425
3596
|
"docCommandRefs": [
|
|
3597
|
+
{
|
|
3598
|
+
"id": "adopter-delivery",
|
|
3599
|
+
"path": "docs/cli-reference.md",
|
|
3600
|
+
"command": "buildchain adopter-delivery"
|
|
3601
|
+
},
|
|
3602
|
+
{
|
|
3603
|
+
"id": "adopter-delivery",
|
|
3604
|
+
"path": "docs/cli-reference.md",
|
|
3605
|
+
"command": "buildchain adopter-delivery archive --input"
|
|
3606
|
+
},
|
|
3607
|
+
{
|
|
3608
|
+
"id": "adopter-delivery",
|
|
3609
|
+
"path": "docs/cli-reference.md",
|
|
3610
|
+
"command": "buildchain adopter-delivery bootstrap --input"
|
|
3611
|
+
},
|
|
3612
|
+
{
|
|
3613
|
+
"id": "adopter-delivery",
|
|
3614
|
+
"path": "docs/cli-reference.md",
|
|
3615
|
+
"command": "buildchain adopter-delivery run --input"
|
|
3616
|
+
},
|
|
3617
|
+
{
|
|
3618
|
+
"id": "adopter-delivery",
|
|
3619
|
+
"path": "docs/cli-reference.md",
|
|
3620
|
+
"command": "buildchain adopter-delivery verify --input"
|
|
3621
|
+
},
|
|
3622
|
+
{
|
|
3623
|
+
"id": "adopter-delivery",
|
|
3624
|
+
"path": "docs/cli-reference.md",
|
|
3625
|
+
"command": "buildchain adopter-delivery"
|
|
3626
|
+
},
|
|
3627
|
+
{
|
|
3628
|
+
"id": "adopter-delivery",
|
|
3629
|
+
"path": "docs/cli-reference.md",
|
|
3630
|
+
"command": "buildchain adopter-delivery --help"
|
|
3631
|
+
},
|
|
3632
|
+
{
|
|
3633
|
+
"id": "adopter-delivery",
|
|
3634
|
+
"path": "docs/cli-reference.md",
|
|
3635
|
+
"command": "buildchain adopter-delivery archive"
|
|
3636
|
+
},
|
|
3637
|
+
{
|
|
3638
|
+
"id": "adopter-delivery",
|
|
3639
|
+
"path": "docs/cli-reference.md",
|
|
3640
|
+
"command": "buildchain adopter-delivery archive --help"
|
|
3641
|
+
},
|
|
3642
|
+
{
|
|
3643
|
+
"id": "adopter-delivery",
|
|
3644
|
+
"path": "docs/cli-reference.md",
|
|
3645
|
+
"command": "buildchain adopter-delivery bootstrap"
|
|
3646
|
+
},
|
|
3647
|
+
{
|
|
3648
|
+
"id": "adopter-delivery",
|
|
3649
|
+
"path": "docs/cli-reference.md",
|
|
3650
|
+
"command": "buildchain adopter-delivery bootstrap --help"
|
|
3651
|
+
},
|
|
3652
|
+
{
|
|
3653
|
+
"id": "adopter-delivery",
|
|
3654
|
+
"path": "docs/cli-reference.md",
|
|
3655
|
+
"command": "buildchain adopter-delivery run"
|
|
3656
|
+
},
|
|
3657
|
+
{
|
|
3658
|
+
"id": "adopter-delivery",
|
|
3659
|
+
"path": "docs/cli-reference.md",
|
|
3660
|
+
"command": "buildchain adopter-delivery run --help"
|
|
3661
|
+
},
|
|
3662
|
+
{
|
|
3663
|
+
"id": "adopter-delivery",
|
|
3664
|
+
"path": "docs/cli-reference.md",
|
|
3665
|
+
"command": "buildchain adopter-delivery verify"
|
|
3666
|
+
},
|
|
3667
|
+
{
|
|
3668
|
+
"id": "adopter-delivery",
|
|
3669
|
+
"path": "docs/cli-reference.md",
|
|
3670
|
+
"command": "buildchain adopter-delivery verify --help"
|
|
3671
|
+
},
|
|
3672
|
+
{
|
|
3673
|
+
"id": "adopter-delivery",
|
|
3674
|
+
"path": "docs/cli.md",
|
|
3675
|
+
"command": "buildchain adopter-delivery"
|
|
3676
|
+
},
|
|
3677
|
+
{
|
|
3678
|
+
"id": "adopter-delivery",
|
|
3679
|
+
"path": "docs/v4-adopter-delivery.md",
|
|
3680
|
+
"command": "buildchain adopter-delivery run"
|
|
3681
|
+
},
|
|
3682
|
+
{
|
|
3683
|
+
"id": "adopter-delivery",
|
|
3684
|
+
"path": "docs/v4-adopter-delivery.md",
|
|
3685
|
+
"command": "buildchain adopter-delivery verify"
|
|
3686
|
+
},
|
|
3687
|
+
{
|
|
3688
|
+
"id": "adopter-delivery",
|
|
3689
|
+
"path": "docs/v4-adopter-delivery.md",
|
|
3690
|
+
"command": "buildchain adopter-delivery bootstrap"
|
|
3691
|
+
},
|
|
3692
|
+
{
|
|
3693
|
+
"id": "adopter-delivery",
|
|
3694
|
+
"path": "docs/v4-adopter-delivery.md",
|
|
3695
|
+
"command": "buildchain adopter-delivery archive"
|
|
3696
|
+
},
|
|
3426
3697
|
{
|
|
3427
3698
|
"id": "architecture",
|
|
3428
3699
|
"path": "docs/cli-reference.md",
|
|
@@ -3783,6 +4054,26 @@
|
|
|
3783
4054
|
"path": "docs/cli-reference.md",
|
|
3784
4055
|
"command": "buildchain facts aggregate"
|
|
3785
4056
|
},
|
|
4057
|
+
{
|
|
4058
|
+
"id": "build-facts",
|
|
4059
|
+
"path": "docs/cli-reference.md",
|
|
4060
|
+
"command": "buildchain facts compatibility project"
|
|
4061
|
+
},
|
|
4062
|
+
{
|
|
4063
|
+
"id": "build-facts",
|
|
4064
|
+
"path": "docs/cli-reference.md",
|
|
4065
|
+
"command": "buildchain facts compatibility query"
|
|
4066
|
+
},
|
|
4067
|
+
{
|
|
4068
|
+
"id": "build-facts",
|
|
4069
|
+
"path": "docs/cli-reference.md",
|
|
4070
|
+
"command": "buildchain facts compatibility query-template"
|
|
4071
|
+
},
|
|
4072
|
+
{
|
|
4073
|
+
"id": "build-facts",
|
|
4074
|
+
"path": "docs/cli-reference.md",
|
|
4075
|
+
"command": "buildchain facts compatibility verify"
|
|
4076
|
+
},
|
|
3786
4077
|
{
|
|
3787
4078
|
"id": "build-facts",
|
|
3788
4079
|
"path": "docs/cli-reference.md",
|
|
@@ -3808,6 +4099,46 @@
|
|
|
3808
4099
|
"path": "docs/cli-reference.md",
|
|
3809
4100
|
"command": "buildchain facts aggregate --help"
|
|
3810
4101
|
},
|
|
4102
|
+
{
|
|
4103
|
+
"id": "build-facts",
|
|
4104
|
+
"path": "docs/cli-reference.md",
|
|
4105
|
+
"command": "buildchain facts compatibility project"
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
"id": "build-facts",
|
|
4109
|
+
"path": "docs/cli-reference.md",
|
|
4110
|
+
"command": "buildchain facts compatibility project"
|
|
4111
|
+
},
|
|
4112
|
+
{
|
|
4113
|
+
"id": "build-facts",
|
|
4114
|
+
"path": "docs/cli-reference.md",
|
|
4115
|
+
"command": "buildchain facts compatibility query"
|
|
4116
|
+
},
|
|
4117
|
+
{
|
|
4118
|
+
"id": "build-facts",
|
|
4119
|
+
"path": "docs/cli-reference.md",
|
|
4120
|
+
"command": "buildchain facts compatibility query"
|
|
4121
|
+
},
|
|
4122
|
+
{
|
|
4123
|
+
"id": "build-facts",
|
|
4124
|
+
"path": "docs/cli-reference.md",
|
|
4125
|
+
"command": "buildchain facts compatibility query-template"
|
|
4126
|
+
},
|
|
4127
|
+
{
|
|
4128
|
+
"id": "build-facts",
|
|
4129
|
+
"path": "docs/cli-reference.md",
|
|
4130
|
+
"command": "buildchain facts compatibility query-template"
|
|
4131
|
+
},
|
|
4132
|
+
{
|
|
4133
|
+
"id": "build-facts",
|
|
4134
|
+
"path": "docs/cli-reference.md",
|
|
4135
|
+
"command": "buildchain facts compatibility verify"
|
|
4136
|
+
},
|
|
4137
|
+
{
|
|
4138
|
+
"id": "build-facts",
|
|
4139
|
+
"path": "docs/cli-reference.md",
|
|
4140
|
+
"command": "buildchain facts compatibility verify"
|
|
4141
|
+
},
|
|
3811
4142
|
{
|
|
3812
4143
|
"id": "build-facts",
|
|
3813
4144
|
"path": "docs/cli-reference.md",
|
|
@@ -3843,6 +4174,26 @@
|
|
|
3843
4174
|
"path": "docs/cli.md",
|
|
3844
4175
|
"command": "buildchain facts verify --fact"
|
|
3845
4176
|
},
|
|
4177
|
+
{
|
|
4178
|
+
"id": "build-facts",
|
|
4179
|
+
"path": "docs/v4-compatibility-facts.md",
|
|
4180
|
+
"command": "buildchain facts compatibility project"
|
|
4181
|
+
},
|
|
4182
|
+
{
|
|
4183
|
+
"id": "build-facts",
|
|
4184
|
+
"path": "docs/v4-compatibility-facts.md",
|
|
4185
|
+
"command": "buildchain facts compatibility verify"
|
|
4186
|
+
},
|
|
4187
|
+
{
|
|
4188
|
+
"id": "build-facts",
|
|
4189
|
+
"path": "docs/v4-compatibility-facts.md",
|
|
4190
|
+
"command": "buildchain facts compatibility query-template"
|
|
4191
|
+
},
|
|
4192
|
+
{
|
|
4193
|
+
"id": "build-facts",
|
|
4194
|
+
"path": "docs/v4-compatibility-facts.md",
|
|
4195
|
+
"command": "buildchain facts compatibility query"
|
|
4196
|
+
},
|
|
3846
4197
|
{
|
|
3847
4198
|
"id": "candidate",
|
|
3848
4199
|
"path": "docs/cli-reference.md",
|
|
@@ -4031,158 +4382,398 @@
|
|
|
4031
4382
|
{
|
|
4032
4383
|
"id": "dev",
|
|
4033
4384
|
"path": "docs/cli-reference.md",
|
|
4034
|
-
"command": "buildchain dev
|
|
4385
|
+
"command": "buildchain dev authority"
|
|
4035
4386
|
},
|
|
4036
4387
|
{
|
|
4037
4388
|
"id": "dev",
|
|
4038
4389
|
"path": "docs/cli-reference.md",
|
|
4039
|
-
"command": "buildchain dev
|
|
4390
|
+
"command": "buildchain dev authority"
|
|
4040
4391
|
},
|
|
4041
4392
|
{
|
|
4042
4393
|
"id": "dev",
|
|
4043
4394
|
"path": "docs/cli-reference.md",
|
|
4044
|
-
"command": "buildchain dev
|
|
4395
|
+
"command": "buildchain dev authority"
|
|
4045
4396
|
},
|
|
4046
4397
|
{
|
|
4047
4398
|
"id": "dev",
|
|
4048
4399
|
"path": "docs/cli-reference.md",
|
|
4049
|
-
"command": "buildchain dev
|
|
4400
|
+
"command": "buildchain dev authority"
|
|
4050
4401
|
},
|
|
4051
4402
|
{
|
|
4052
4403
|
"id": "dev",
|
|
4053
4404
|
"path": "docs/cli-reference.md",
|
|
4054
|
-
"command": "buildchain dev
|
|
4405
|
+
"command": "buildchain dev authority"
|
|
4055
4406
|
},
|
|
4056
4407
|
{
|
|
4057
4408
|
"id": "dev",
|
|
4058
4409
|
"path": "docs/cli-reference.md",
|
|
4059
|
-
"command": "buildchain dev
|
|
4410
|
+
"command": "buildchain dev authority"
|
|
4060
4411
|
},
|
|
4061
4412
|
{
|
|
4062
4413
|
"id": "dev",
|
|
4063
4414
|
"path": "docs/cli-reference.md",
|
|
4064
|
-
"command": "buildchain dev
|
|
4415
|
+
"command": "buildchain dev authority"
|
|
4065
4416
|
},
|
|
4066
4417
|
{
|
|
4067
4418
|
"id": "dev",
|
|
4068
4419
|
"path": "docs/cli-reference.md",
|
|
4069
|
-
"command": "buildchain dev
|
|
4420
|
+
"command": "buildchain dev authority"
|
|
4070
4421
|
},
|
|
4071
4422
|
{
|
|
4072
4423
|
"id": "dev",
|
|
4073
4424
|
"path": "docs/cli-reference.md",
|
|
4074
|
-
"command": "buildchain dev
|
|
4425
|
+
"command": "buildchain dev authority"
|
|
4075
4426
|
},
|
|
4076
4427
|
{
|
|
4077
4428
|
"id": "dev",
|
|
4078
4429
|
"path": "docs/cli-reference.md",
|
|
4079
|
-
"command": "buildchain dev
|
|
4430
|
+
"command": "buildchain dev authority"
|
|
4080
4431
|
},
|
|
4081
4432
|
{
|
|
4082
4433
|
"id": "dev",
|
|
4083
4434
|
"path": "docs/cli-reference.md",
|
|
4084
|
-
"command": "buildchain dev
|
|
4435
|
+
"command": "buildchain dev authority"
|
|
4085
4436
|
},
|
|
4086
4437
|
{
|
|
4087
4438
|
"id": "dev",
|
|
4088
4439
|
"path": "docs/cli-reference.md",
|
|
4089
|
-
"command": "buildchain dev
|
|
4440
|
+
"command": "buildchain dev merge-queue --repository"
|
|
4090
4441
|
},
|
|
4091
4442
|
{
|
|
4092
4443
|
"id": "dev",
|
|
4093
4444
|
"path": "docs/cli-reference.md",
|
|
4094
|
-
"command": "buildchain dev
|
|
4445
|
+
"command": "buildchain dev pr-admit --repository"
|
|
4095
4446
|
},
|
|
4096
4447
|
{
|
|
4097
4448
|
"id": "dev",
|
|
4098
4449
|
"path": "docs/cli-reference.md",
|
|
4099
|
-
"command": "buildchain dev
|
|
4450
|
+
"command": "buildchain dev proof"
|
|
4100
4451
|
},
|
|
4101
4452
|
{
|
|
4102
4453
|
"id": "dev",
|
|
4103
4454
|
"path": "docs/cli-reference.md",
|
|
4104
|
-
"command": "buildchain dev
|
|
4455
|
+
"command": "buildchain dev proof"
|
|
4105
4456
|
},
|
|
4106
4457
|
{
|
|
4107
4458
|
"id": "dev",
|
|
4108
4459
|
"path": "docs/cli-reference.md",
|
|
4109
|
-
"command": "buildchain dev"
|
|
4460
|
+
"command": "buildchain dev proof"
|
|
4110
4461
|
},
|
|
4111
4462
|
{
|
|
4112
4463
|
"id": "dev",
|
|
4113
4464
|
"path": "docs/cli-reference.md",
|
|
4114
|
-
"command": "buildchain dev
|
|
4465
|
+
"command": "buildchain dev proof"
|
|
4115
4466
|
},
|
|
4116
4467
|
{
|
|
4117
4468
|
"id": "dev",
|
|
4118
4469
|
"path": "docs/cli-reference.md",
|
|
4119
|
-
"command": "buildchain dev
|
|
4470
|
+
"command": "buildchain dev proof"
|
|
4120
4471
|
},
|
|
4121
4472
|
{
|
|
4122
4473
|
"id": "dev",
|
|
4123
4474
|
"path": "docs/cli-reference.md",
|
|
4124
|
-
"command": "buildchain dev
|
|
4475
|
+
"command": "buildchain dev proof"
|
|
4125
4476
|
},
|
|
4126
4477
|
{
|
|
4127
4478
|
"id": "dev",
|
|
4128
4479
|
"path": "docs/cli-reference.md",
|
|
4129
|
-
"command": "buildchain dev
|
|
4480
|
+
"command": "buildchain dev proof"
|
|
4130
4481
|
},
|
|
4131
4482
|
{
|
|
4132
4483
|
"id": "dev",
|
|
4133
4484
|
"path": "docs/cli-reference.md",
|
|
4134
|
-
"command": "buildchain dev
|
|
4485
|
+
"command": "buildchain dev proof"
|
|
4135
4486
|
},
|
|
4136
4487
|
{
|
|
4137
4488
|
"id": "dev",
|
|
4138
4489
|
"path": "docs/cli-reference.md",
|
|
4139
|
-
"command": "buildchain dev proof
|
|
4490
|
+
"command": "buildchain dev proof"
|
|
4140
4491
|
},
|
|
4141
4492
|
{
|
|
4142
4493
|
"id": "dev",
|
|
4143
4494
|
"path": "docs/cli-reference.md",
|
|
4144
|
-
"command": "buildchain dev proof
|
|
4495
|
+
"command": "buildchain dev proof"
|
|
4145
4496
|
},
|
|
4146
4497
|
{
|
|
4147
4498
|
"id": "dev",
|
|
4148
4499
|
"path": "docs/cli-reference.md",
|
|
4149
|
-
"command": "buildchain dev
|
|
4500
|
+
"command": "buildchain dev two-phase --repository"
|
|
4150
4501
|
},
|
|
4151
4502
|
{
|
|
4152
4503
|
"id": "dev",
|
|
4153
4504
|
"path": "docs/cli-reference.md",
|
|
4154
|
-
"command": "buildchain dev
|
|
4505
|
+
"command": "buildchain dev warrant"
|
|
4155
4506
|
},
|
|
4156
4507
|
{
|
|
4157
4508
|
"id": "dev",
|
|
4158
4509
|
"path": "docs/cli-reference.md",
|
|
4159
|
-
"command": "buildchain dev
|
|
4510
|
+
"command": "buildchain dev warrant"
|
|
4160
4511
|
},
|
|
4161
4512
|
{
|
|
4162
4513
|
"id": "dev",
|
|
4163
4514
|
"path": "docs/cli-reference.md",
|
|
4164
|
-
"command": "buildchain dev
|
|
4515
|
+
"command": "buildchain dev warrant"
|
|
4165
4516
|
},
|
|
4166
4517
|
{
|
|
4167
4518
|
"id": "dev",
|
|
4168
4519
|
"path": "docs/cli-reference.md",
|
|
4169
|
-
"command": "buildchain dev
|
|
4520
|
+
"command": "buildchain dev warrant"
|
|
4170
4521
|
},
|
|
4171
4522
|
{
|
|
4172
4523
|
"id": "dev",
|
|
4173
4524
|
"path": "docs/cli-reference.md",
|
|
4174
|
-
"command": "buildchain dev
|
|
4525
|
+
"command": "buildchain dev warrant"
|
|
4175
4526
|
},
|
|
4176
4527
|
{
|
|
4177
4528
|
"id": "dev",
|
|
4178
4529
|
"path": "docs/cli-reference.md",
|
|
4179
|
-
"command": "buildchain dev
|
|
4530
|
+
"command": "buildchain dev warrant"
|
|
4531
|
+
},
|
|
4532
|
+
{
|
|
4533
|
+
"id": "dev",
|
|
4534
|
+
"path": "docs/cli-reference.md",
|
|
4535
|
+
"command": "buildchain dev warrant"
|
|
4536
|
+
},
|
|
4537
|
+
{
|
|
4538
|
+
"id": "dev",
|
|
4539
|
+
"path": "docs/cli-reference.md",
|
|
4540
|
+
"command": "buildchain dev warrant"
|
|
4541
|
+
},
|
|
4542
|
+
{
|
|
4543
|
+
"id": "dev",
|
|
4544
|
+
"path": "docs/cli-reference.md",
|
|
4545
|
+
"command": "buildchain dev warrant"
|
|
4546
|
+
},
|
|
4547
|
+
{
|
|
4548
|
+
"id": "dev",
|
|
4549
|
+
"path": "docs/cli-reference.md",
|
|
4550
|
+
"command": "buildchain dev"
|
|
4551
|
+
},
|
|
4552
|
+
{
|
|
4553
|
+
"id": "dev",
|
|
4554
|
+
"path": "docs/cli-reference.md",
|
|
4555
|
+
"command": "buildchain dev --help"
|
|
4556
|
+
},
|
|
4557
|
+
{
|
|
4558
|
+
"id": "dev",
|
|
4559
|
+
"path": "docs/cli-reference.md",
|
|
4560
|
+
"command": "buildchain dev authority admit-merge-group"
|
|
4561
|
+
},
|
|
4562
|
+
{
|
|
4563
|
+
"id": "dev",
|
|
4564
|
+
"path": "docs/cli-reference.md",
|
|
4565
|
+
"command": "buildchain dev authority admit-merge-group"
|
|
4566
|
+
},
|
|
4567
|
+
{
|
|
4568
|
+
"id": "dev",
|
|
4569
|
+
"path": "docs/cli-reference.md",
|
|
4570
|
+
"command": "buildchain dev authority complete-qualification"
|
|
4571
|
+
},
|
|
4572
|
+
{
|
|
4573
|
+
"id": "dev",
|
|
4574
|
+
"path": "docs/cli-reference.md",
|
|
4575
|
+
"command": "buildchain dev authority complete-qualification"
|
|
4576
|
+
},
|
|
4577
|
+
{
|
|
4578
|
+
"id": "dev",
|
|
4579
|
+
"path": "docs/cli-reference.md",
|
|
4580
|
+
"command": "buildchain dev authority heartbeat-landing"
|
|
4581
|
+
},
|
|
4582
|
+
{
|
|
4583
|
+
"id": "dev",
|
|
4584
|
+
"path": "docs/cli-reference.md",
|
|
4585
|
+
"command": "buildchain dev authority heartbeat-landing"
|
|
4586
|
+
},
|
|
4587
|
+
{
|
|
4588
|
+
"id": "dev",
|
|
4589
|
+
"path": "docs/cli-reference.md",
|
|
4590
|
+
"command": "buildchain dev authority heartbeat-qualification"
|
|
4591
|
+
},
|
|
4592
|
+
{
|
|
4593
|
+
"id": "dev",
|
|
4594
|
+
"path": "docs/cli-reference.md",
|
|
4595
|
+
"command": "buildchain dev authority heartbeat-qualification"
|
|
4596
|
+
},
|
|
4597
|
+
{
|
|
4598
|
+
"id": "dev",
|
|
4599
|
+
"path": "docs/cli-reference.md",
|
|
4600
|
+
"command": "buildchain dev authority lease-landing"
|
|
4601
|
+
},
|
|
4602
|
+
{
|
|
4603
|
+
"id": "dev",
|
|
4604
|
+
"path": "docs/cli-reference.md",
|
|
4605
|
+
"command": "buildchain dev authority lease-landing"
|
|
4606
|
+
},
|
|
4607
|
+
{
|
|
4608
|
+
"id": "dev",
|
|
4609
|
+
"path": "docs/cli-reference.md",
|
|
4610
|
+
"command": "buildchain dev authority lease-qualification"
|
|
4611
|
+
},
|
|
4612
|
+
{
|
|
4613
|
+
"id": "dev",
|
|
4614
|
+
"path": "docs/cli-reference.md",
|
|
4615
|
+
"command": "buildchain dev authority lease-qualification"
|
|
4616
|
+
},
|
|
4617
|
+
{
|
|
4618
|
+
"id": "dev",
|
|
4619
|
+
"path": "docs/cli-reference.md",
|
|
4620
|
+
"command": "buildchain dev authority migrate"
|
|
4621
|
+
},
|
|
4622
|
+
{
|
|
4623
|
+
"id": "dev",
|
|
4624
|
+
"path": "docs/cli-reference.md",
|
|
4625
|
+
"command": "buildchain dev authority migrate"
|
|
4626
|
+
},
|
|
4627
|
+
{
|
|
4628
|
+
"id": "dev",
|
|
4629
|
+
"path": "docs/cli-reference.md",
|
|
4630
|
+
"command": "buildchain dev authority observe"
|
|
4631
|
+
},
|
|
4632
|
+
{
|
|
4633
|
+
"id": "dev",
|
|
4634
|
+
"path": "docs/cli-reference.md",
|
|
4635
|
+
"command": "buildchain dev authority observe"
|
|
4636
|
+
},
|
|
4637
|
+
{
|
|
4638
|
+
"id": "dev",
|
|
4639
|
+
"path": "docs/cli-reference.md",
|
|
4640
|
+
"command": "buildchain dev authority recover"
|
|
4641
|
+
},
|
|
4642
|
+
{
|
|
4643
|
+
"id": "dev",
|
|
4644
|
+
"path": "docs/cli-reference.md",
|
|
4645
|
+
"command": "buildchain dev authority recover"
|
|
4646
|
+
},
|
|
4647
|
+
{
|
|
4648
|
+
"id": "dev",
|
|
4649
|
+
"path": "docs/cli-reference.md",
|
|
4650
|
+
"command": "buildchain dev authority settle"
|
|
4651
|
+
},
|
|
4652
|
+
{
|
|
4653
|
+
"id": "dev",
|
|
4654
|
+
"path": "docs/cli-reference.md",
|
|
4655
|
+
"command": "buildchain dev authority settle"
|
|
4656
|
+
},
|
|
4657
|
+
{
|
|
4658
|
+
"id": "dev",
|
|
4659
|
+
"path": "docs/cli-reference.md",
|
|
4660
|
+
"command": "buildchain dev authority submit"
|
|
4661
|
+
},
|
|
4662
|
+
{
|
|
4663
|
+
"id": "dev",
|
|
4664
|
+
"path": "docs/cli-reference.md",
|
|
4665
|
+
"command": "buildchain dev authority submit"
|
|
4666
|
+
},
|
|
4667
|
+
{
|
|
4668
|
+
"id": "dev",
|
|
4669
|
+
"path": "docs/cli-reference.md",
|
|
4670
|
+
"command": "buildchain dev merge-queue"
|
|
4671
|
+
},
|
|
4672
|
+
{
|
|
4673
|
+
"id": "dev",
|
|
4674
|
+
"path": "docs/cli-reference.md",
|
|
4675
|
+
"command": "buildchain dev merge-queue --help"
|
|
4676
|
+
},
|
|
4677
|
+
{
|
|
4678
|
+
"id": "dev",
|
|
4679
|
+
"path": "docs/cli-reference.md",
|
|
4680
|
+
"command": "buildchain dev pr-admit"
|
|
4681
|
+
},
|
|
4682
|
+
{
|
|
4683
|
+
"id": "dev",
|
|
4684
|
+
"path": "docs/cli-reference.md",
|
|
4685
|
+
"command": "buildchain dev pr-admit --help"
|
|
4686
|
+
},
|
|
4687
|
+
{
|
|
4688
|
+
"id": "dev",
|
|
4689
|
+
"path": "docs/cli-reference.md",
|
|
4690
|
+
"command": "buildchain dev proof classify"
|
|
4691
|
+
},
|
|
4692
|
+
{
|
|
4693
|
+
"id": "dev",
|
|
4694
|
+
"path": "docs/cli-reference.md",
|
|
4695
|
+
"command": "buildchain dev proof classify"
|
|
4696
|
+
},
|
|
4697
|
+
{
|
|
4698
|
+
"id": "dev",
|
|
4699
|
+
"path": "docs/cli-reference.md",
|
|
4700
|
+
"command": "buildchain dev proof classify-native"
|
|
4701
|
+
},
|
|
4702
|
+
{
|
|
4703
|
+
"id": "dev",
|
|
4704
|
+
"path": "docs/cli-reference.md",
|
|
4705
|
+
"command": "buildchain dev proof classify-native"
|
|
4706
|
+
},
|
|
4707
|
+
{
|
|
4708
|
+
"id": "dev",
|
|
4709
|
+
"path": "docs/cli-reference.md",
|
|
4710
|
+
"command": "buildchain dev proof integration"
|
|
4711
|
+
},
|
|
4712
|
+
{
|
|
4713
|
+
"id": "dev",
|
|
4714
|
+
"path": "docs/cli-reference.md",
|
|
4715
|
+
"command": "buildchain dev proof integration"
|
|
4716
|
+
},
|
|
4717
|
+
{
|
|
4718
|
+
"id": "dev",
|
|
4719
|
+
"path": "docs/cli-reference.md",
|
|
4720
|
+
"command": "buildchain dev proof native"
|
|
4721
|
+
},
|
|
4722
|
+
{
|
|
4723
|
+
"id": "dev",
|
|
4724
|
+
"path": "docs/cli-reference.md",
|
|
4725
|
+
"command": "buildchain dev proof native"
|
|
4726
|
+
},
|
|
4727
|
+
{
|
|
4728
|
+
"id": "dev",
|
|
4729
|
+
"path": "docs/cli-reference.md",
|
|
4730
|
+
"command": "buildchain dev proof replay"
|
|
4731
|
+
},
|
|
4732
|
+
{
|
|
4733
|
+
"id": "dev",
|
|
4734
|
+
"path": "docs/cli-reference.md",
|
|
4735
|
+
"command": "buildchain dev proof replay"
|
|
4736
|
+
},
|
|
4737
|
+
{
|
|
4738
|
+
"id": "dev",
|
|
4739
|
+
"path": "docs/cli-reference.md",
|
|
4740
|
+
"command": "buildchain dev proof source"
|
|
4741
|
+
},
|
|
4742
|
+
{
|
|
4743
|
+
"id": "dev",
|
|
4744
|
+
"path": "docs/cli-reference.md",
|
|
4745
|
+
"command": "buildchain dev proof source"
|
|
4746
|
+
},
|
|
4747
|
+
{
|
|
4748
|
+
"id": "dev",
|
|
4749
|
+
"path": "docs/cli-reference.md",
|
|
4750
|
+
"command": "buildchain dev proof verify-integration"
|
|
4180
4751
|
},
|
|
4181
4752
|
{
|
|
4182
4753
|
"id": "dev",
|
|
4183
4754
|
"path": "docs/cli-reference.md",
|
|
4184
4755
|
"command": "buildchain dev proof verify-integration"
|
|
4185
4756
|
},
|
|
4757
|
+
{
|
|
4758
|
+
"id": "dev",
|
|
4759
|
+
"path": "docs/cli-reference.md",
|
|
4760
|
+
"command": "buildchain dev proof verify-native"
|
|
4761
|
+
},
|
|
4762
|
+
{
|
|
4763
|
+
"id": "dev",
|
|
4764
|
+
"path": "docs/cli-reference.md",
|
|
4765
|
+
"command": "buildchain dev proof verify-native"
|
|
4766
|
+
},
|
|
4767
|
+
{
|
|
4768
|
+
"id": "dev",
|
|
4769
|
+
"path": "docs/cli-reference.md",
|
|
4770
|
+
"command": "buildchain dev proof verify-native-reuse"
|
|
4771
|
+
},
|
|
4772
|
+
{
|
|
4773
|
+
"id": "dev",
|
|
4774
|
+
"path": "docs/cli-reference.md",
|
|
4775
|
+
"command": "buildchain dev proof verify-native-reuse"
|
|
4776
|
+
},
|
|
4186
4777
|
{
|
|
4187
4778
|
"id": "dev",
|
|
4188
4779
|
"path": "docs/cli-reference.md",
|
|
@@ -4193,6 +4784,16 @@
|
|
|
4193
4784
|
"path": "docs/cli-reference.md",
|
|
4194
4785
|
"command": "buildchain dev proof verify-source"
|
|
4195
4786
|
},
|
|
4787
|
+
{
|
|
4788
|
+
"id": "dev",
|
|
4789
|
+
"path": "docs/cli-reference.md",
|
|
4790
|
+
"command": "buildchain dev two-phase"
|
|
4791
|
+
},
|
|
4792
|
+
{
|
|
4793
|
+
"id": "dev",
|
|
4794
|
+
"path": "docs/cli-reference.md",
|
|
4795
|
+
"command": "buildchain dev two-phase --help"
|
|
4796
|
+
},
|
|
4196
4797
|
{
|
|
4197
4798
|
"id": "dev",
|
|
4198
4799
|
"path": "docs/cli-reference.md",
|
|
@@ -4233,6 +4834,16 @@
|
|
|
4233
4834
|
"path": "docs/cli-reference.md",
|
|
4234
4835
|
"command": "buildchain dev warrant observe"
|
|
4235
4836
|
},
|
|
4837
|
+
{
|
|
4838
|
+
"id": "dev",
|
|
4839
|
+
"path": "docs/cli-reference.md",
|
|
4840
|
+
"command": "buildchain dev warrant qualify"
|
|
4841
|
+
},
|
|
4842
|
+
{
|
|
4843
|
+
"id": "dev",
|
|
4844
|
+
"path": "docs/cli-reference.md",
|
|
4845
|
+
"command": "buildchain dev warrant qualify"
|
|
4846
|
+
},
|
|
4236
4847
|
{
|
|
4237
4848
|
"id": "dev",
|
|
4238
4849
|
"path": "docs/cli-reference.md",
|
|
@@ -4253,6 +4864,16 @@
|
|
|
4253
4864
|
"path": "docs/cli-reference.md",
|
|
4254
4865
|
"command": "buildchain dev warrant select"
|
|
4255
4866
|
},
|
|
4867
|
+
{
|
|
4868
|
+
"id": "dev",
|
|
4869
|
+
"path": "docs/cli-reference.md",
|
|
4870
|
+
"command": "buildchain dev warrant settle"
|
|
4871
|
+
},
|
|
4872
|
+
{
|
|
4873
|
+
"id": "dev",
|
|
4874
|
+
"path": "docs/cli-reference.md",
|
|
4875
|
+
"command": "buildchain dev warrant settle"
|
|
4876
|
+
},
|
|
4256
4877
|
{
|
|
4257
4878
|
"id": "dev",
|
|
4258
4879
|
"path": "docs/cli-reference.md",
|
|
@@ -4278,6 +4899,11 @@
|
|
|
4278
4899
|
"path": "docs/cli.md",
|
|
4279
4900
|
"command": "buildchain dev merge-queue --from-config"
|
|
4280
4901
|
},
|
|
4902
|
+
{
|
|
4903
|
+
"id": "dev",
|
|
4904
|
+
"path": "docs/dev-delivery-qualification-landing-adr.md",
|
|
4905
|
+
"command": "buildchain dev warrant"
|
|
4906
|
+
},
|
|
4281
4907
|
{
|
|
4282
4908
|
"id": "dev",
|
|
4283
4909
|
"path": "docs/dev-delivery-warrant.md",
|
|
@@ -4288,6 +4914,21 @@
|
|
|
4288
4914
|
"path": "docs/dev-delivery-warrant.md",
|
|
4289
4915
|
"command": "buildchain dev warrant select"
|
|
4290
4916
|
},
|
|
4917
|
+
{
|
|
4918
|
+
"id": "dev",
|
|
4919
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4920
|
+
"command": "buildchain dev proof native"
|
|
4921
|
+
},
|
|
4922
|
+
{
|
|
4923
|
+
"id": "dev",
|
|
4924
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4925
|
+
"command": "buildchain dev proof classify-native"
|
|
4926
|
+
},
|
|
4927
|
+
{
|
|
4928
|
+
"id": "dev",
|
|
4929
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4930
|
+
"command": "buildchain dev warrant qualify"
|
|
4931
|
+
},
|
|
4291
4932
|
{
|
|
4292
4933
|
"id": "dev",
|
|
4293
4934
|
"path": "docs/dev-delivery-warrant.md",
|
|
@@ -4318,6 +4959,56 @@
|
|
|
4318
4959
|
"path": "docs/dev-delivery-warrant.md",
|
|
4319
4960
|
"command": "buildchain dev proof integration"
|
|
4320
4961
|
},
|
|
4962
|
+
{
|
|
4963
|
+
"id": "dev",
|
|
4964
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4965
|
+
"command": "buildchain dev authority migrate"
|
|
4966
|
+
},
|
|
4967
|
+
{
|
|
4968
|
+
"id": "dev",
|
|
4969
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4970
|
+
"command": "buildchain dev authority submit"
|
|
4971
|
+
},
|
|
4972
|
+
{
|
|
4973
|
+
"id": "dev",
|
|
4974
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4975
|
+
"command": "buildchain dev authority lease-qualification"
|
|
4976
|
+
},
|
|
4977
|
+
{
|
|
4978
|
+
"id": "dev",
|
|
4979
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4980
|
+
"command": "buildchain dev authority heartbeat-qualification"
|
|
4981
|
+
},
|
|
4982
|
+
{
|
|
4983
|
+
"id": "dev",
|
|
4984
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4985
|
+
"command": "buildchain dev authority complete-qualification"
|
|
4986
|
+
},
|
|
4987
|
+
{
|
|
4988
|
+
"id": "dev",
|
|
4989
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4990
|
+
"command": "buildchain dev authority lease-landing"
|
|
4991
|
+
},
|
|
4992
|
+
{
|
|
4993
|
+
"id": "dev",
|
|
4994
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4995
|
+
"command": "buildchain dev authority heartbeat-landing"
|
|
4996
|
+
},
|
|
4997
|
+
{
|
|
4998
|
+
"id": "dev",
|
|
4999
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
5000
|
+
"command": "buildchain dev authority recover"
|
|
5001
|
+
},
|
|
5002
|
+
{
|
|
5003
|
+
"id": "dev",
|
|
5004
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
5005
|
+
"command": "buildchain dev authority admit-merge-group"
|
|
5006
|
+
},
|
|
5007
|
+
{
|
|
5008
|
+
"id": "dev",
|
|
5009
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
5010
|
+
"command": "buildchain dev warrant"
|
|
5011
|
+
},
|
|
4321
5012
|
{
|
|
4322
5013
|
"id": "dev",
|
|
4323
5014
|
"path": "docs/release-governance.md",
|
|
@@ -6318,6 +7009,36 @@
|
|
|
6318
7009
|
"path": "README.md",
|
|
6319
7010
|
"command": "buildchain mark --event native"
|
|
6320
7011
|
},
|
|
7012
|
+
{
|
|
7013
|
+
"id": "next-development",
|
|
7014
|
+
"path": "docs/cli-reference.md",
|
|
7015
|
+
"command": "buildchain next-development"
|
|
7016
|
+
},
|
|
7017
|
+
{
|
|
7018
|
+
"id": "next-development",
|
|
7019
|
+
"path": "docs/cli-reference.md",
|
|
7020
|
+
"command": "buildchain next-development materialize --input"
|
|
7021
|
+
},
|
|
7022
|
+
{
|
|
7023
|
+
"id": "next-development",
|
|
7024
|
+
"path": "docs/cli-reference.md",
|
|
7025
|
+
"command": "buildchain next-development"
|
|
7026
|
+
},
|
|
7027
|
+
{
|
|
7028
|
+
"id": "next-development",
|
|
7029
|
+
"path": "docs/cli-reference.md",
|
|
7030
|
+
"command": "buildchain next-development --help"
|
|
7031
|
+
},
|
|
7032
|
+
{
|
|
7033
|
+
"id": "next-development",
|
|
7034
|
+
"path": "docs/cli-reference.md",
|
|
7035
|
+
"command": "buildchain next-development materialize"
|
|
7036
|
+
},
|
|
7037
|
+
{
|
|
7038
|
+
"id": "next-development",
|
|
7039
|
+
"path": "docs/cli-reference.md",
|
|
7040
|
+
"command": "buildchain next-development materialize --help"
|
|
7041
|
+
},
|
|
6321
7042
|
{
|
|
6322
7043
|
"id": "npm-dry-run",
|
|
6323
7044
|
"path": "docs/cli-reference.md",
|
|
@@ -7293,6 +8014,11 @@
|
|
|
7293
8014
|
"path": "docs/cli-reference.md",
|
|
7294
8015
|
"command": "buildchain release-tail plan --declaration"
|
|
7295
8016
|
},
|
|
8017
|
+
{
|
|
8018
|
+
"id": "release-tail",
|
|
8019
|
+
"path": "docs/cli-reference.md",
|
|
8020
|
+
"command": "buildchain release-tail rehearse --capsule"
|
|
8021
|
+
},
|
|
7296
8022
|
{
|
|
7297
8023
|
"id": "release-tail",
|
|
7298
8024
|
"path": "docs/cli-reference.md",
|
|
@@ -7343,6 +8069,16 @@
|
|
|
7343
8069
|
"path": "docs/cli-reference.md",
|
|
7344
8070
|
"command": "buildchain release-tail plan --help"
|
|
7345
8071
|
},
|
|
8072
|
+
{
|
|
8073
|
+
"id": "release-tail",
|
|
8074
|
+
"path": "docs/cli-reference.md",
|
|
8075
|
+
"command": "buildchain release-tail rehearse"
|
|
8076
|
+
},
|
|
8077
|
+
{
|
|
8078
|
+
"id": "release-tail",
|
|
8079
|
+
"path": "docs/cli-reference.md",
|
|
8080
|
+
"command": "buildchain release-tail rehearse --help"
|
|
8081
|
+
},
|
|
7346
8082
|
{
|
|
7347
8083
|
"id": "release-tail",
|
|
7348
8084
|
"path": "docs/cli-reference.md",
|
|
@@ -7383,6 +8119,11 @@
|
|
|
7383
8119
|
"path": "docs/release-tail-provider-plane.md",
|
|
7384
8120
|
"command": "buildchain release-tail plan"
|
|
7385
8121
|
},
|
|
8122
|
+
{
|
|
8123
|
+
"id": "release-tail",
|
|
8124
|
+
"path": "docs/v4-publication-rehearsal.md",
|
|
8125
|
+
"command": "buildchain release-tail rehearse"
|
|
8126
|
+
},
|
|
7386
8127
|
{
|
|
7387
8128
|
"id": "release-transaction",
|
|
7388
8129
|
"path": "docs/cli-reference.md",
|
|
@@ -7573,6 +8314,86 @@
|
|
|
7573
8314
|
"path": "README.md",
|
|
7574
8315
|
"command": "buildchain span --event native"
|
|
7575
8316
|
},
|
|
8317
|
+
{
|
|
8318
|
+
"id": "tail-reseal",
|
|
8319
|
+
"path": "docs/cli-reference.md",
|
|
8320
|
+
"command": "buildchain tail-reseal"
|
|
8321
|
+
},
|
|
8322
|
+
{
|
|
8323
|
+
"id": "tail-reseal",
|
|
8324
|
+
"path": "docs/cli-reference.md",
|
|
8325
|
+
"command": "buildchain tail-reseal admit --request"
|
|
8326
|
+
},
|
|
8327
|
+
{
|
|
8328
|
+
"id": "tail-reseal",
|
|
8329
|
+
"path": "docs/cli-reference.md",
|
|
8330
|
+
"command": "buildchain tail-reseal plan --request"
|
|
8331
|
+
},
|
|
8332
|
+
{
|
|
8333
|
+
"id": "tail-reseal",
|
|
8334
|
+
"path": "docs/cli-reference.md",
|
|
8335
|
+
"command": "buildchain tail-reseal seal --request"
|
|
8336
|
+
},
|
|
8337
|
+
{
|
|
8338
|
+
"id": "tail-reseal",
|
|
8339
|
+
"path": "docs/cli-reference.md",
|
|
8340
|
+
"command": "buildchain tail-reseal verify-platform --request"
|
|
8341
|
+
},
|
|
8342
|
+
{
|
|
8343
|
+
"id": "tail-reseal",
|
|
8344
|
+
"path": "docs/cli-reference.md",
|
|
8345
|
+
"command": "buildchain tail-reseal"
|
|
8346
|
+
},
|
|
8347
|
+
{
|
|
8348
|
+
"id": "tail-reseal",
|
|
8349
|
+
"path": "docs/cli-reference.md",
|
|
8350
|
+
"command": "buildchain tail-reseal --help"
|
|
8351
|
+
},
|
|
8352
|
+
{
|
|
8353
|
+
"id": "tail-reseal",
|
|
8354
|
+
"path": "docs/cli-reference.md",
|
|
8355
|
+
"command": "buildchain tail-reseal admit"
|
|
8356
|
+
},
|
|
8357
|
+
{
|
|
8358
|
+
"id": "tail-reseal",
|
|
8359
|
+
"path": "docs/cli-reference.md",
|
|
8360
|
+
"command": "buildchain tail-reseal admit --help"
|
|
8361
|
+
},
|
|
8362
|
+
{
|
|
8363
|
+
"id": "tail-reseal",
|
|
8364
|
+
"path": "docs/cli-reference.md",
|
|
8365
|
+
"command": "buildchain tail-reseal plan"
|
|
8366
|
+
},
|
|
8367
|
+
{
|
|
8368
|
+
"id": "tail-reseal",
|
|
8369
|
+
"path": "docs/cli-reference.md",
|
|
8370
|
+
"command": "buildchain tail-reseal plan --help"
|
|
8371
|
+
},
|
|
8372
|
+
{
|
|
8373
|
+
"id": "tail-reseal",
|
|
8374
|
+
"path": "docs/cli-reference.md",
|
|
8375
|
+
"command": "buildchain tail-reseal seal"
|
|
8376
|
+
},
|
|
8377
|
+
{
|
|
8378
|
+
"id": "tail-reseal",
|
|
8379
|
+
"path": "docs/cli-reference.md",
|
|
8380
|
+
"command": "buildchain tail-reseal seal --help"
|
|
8381
|
+
},
|
|
8382
|
+
{
|
|
8383
|
+
"id": "tail-reseal",
|
|
8384
|
+
"path": "docs/cli-reference.md",
|
|
8385
|
+
"command": "buildchain tail-reseal verify-platform"
|
|
8386
|
+
},
|
|
8387
|
+
{
|
|
8388
|
+
"id": "tail-reseal",
|
|
8389
|
+
"path": "docs/cli-reference.md",
|
|
8390
|
+
"command": "buildchain tail-reseal verify-platform --help"
|
|
8391
|
+
},
|
|
8392
|
+
{
|
|
8393
|
+
"id": "tail-reseal",
|
|
8394
|
+
"path": "docs/v4-tail-reseal.md",
|
|
8395
|
+
"command": "buildchain tail-reseal plan"
|
|
8396
|
+
},
|
|
7576
8397
|
{
|
|
7577
8398
|
"id": "transaction-inspect",
|
|
7578
8399
|
"path": "docs/cli-reference.md",
|
|
@@ -8024,9 +8845,9 @@
|
|
|
8024
8845
|
"cliRegistryPath": "dist/site/cli-registry.json",
|
|
8025
8846
|
"workflowRegistryPath": "dist/site/workflow-registry.json",
|
|
8026
8847
|
"pageRegistryPath": "dist/site/page-registry.json",
|
|
8027
|
-
"cliRegistryDigest": "
|
|
8028
|
-
"workflowRegistryDigest": "
|
|
8029
|
-
"pageRegistryDigest": "
|
|
8848
|
+
"cliRegistryDigest": "ea47a31ce7ef3577f23e22055ab7be7715c3af494bcef63f76b426f2883086aa",
|
|
8849
|
+
"workflowRegistryDigest": "88b05db32891abf379387990481283c91a3407c2bd5cd78a5fe47f5a13e1a9e8",
|
|
8850
|
+
"pageRegistryDigest": "9d9d0590c8d3110fc5a95978852ee25337567f93980b2562cc1159f0d5219ade"
|
|
8030
8851
|
},
|
|
8031
8852
|
"comparison": {
|
|
8032
8853
|
"missingCliRegistry": [],
|