@kungfu-tech/buildchain 4.0.1-alpha.2 → 4.0.1-alpha.21
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/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 +211 -8
- package/architecture/maintainability-policy.json +113 -28
- 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 +6 -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-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/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 +7 -1
- 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-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 +4 -2
- package/contracts/v4-publication-rehearsal-capsule-v1.schema.json +233 -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 +1475 -27
- package/dist/site/buildchain-site.json +627 -31
- package/dist/site/capability-registry.json +17 -14
- package/dist/site/cli-registry.json +205 -3
- package/dist/site/kfd-claims.json +490 -16
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +52 -6
- package/dist/site/node-api-registry.json +14736 -8851
- package/dist/site/page-registry.json +593 -21
- package/dist/site/public-surface-audit.json +837 -48
- package/dist/site/publication-authority-registry.json +44 -8
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +24 -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 +34 -10
- package/dist/site/workflow-registry.json +160 -10
- package/docs/MAP.md +8 -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 +351 -38
- package/docs/next-development-transition.md +118 -0
- package/docs/node-api-reference.md +646 -293
- package/docs/release-tail-provider-plane.md +30 -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-tail-reseal.md +73 -0
- package/docs/versioning.md +4 -3
- package/package.json +34 -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/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 +84 -0
- 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-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 +5 -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/published-delivery-authority.js +266 -0
- package/packages/core/release-candidate-recovery.js +70 -15
- package/packages/core/release-candidate.js +2 -2
- package/packages/core/release-passport.js +36 -9
- 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 +18 -4
- package/packages/core/v4-floating-consumer-policy.js +143 -20
- package/packages/core/v4-floating-consumer-release-passport.js +32 -5
- 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-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 +24 -2
- 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 +23 -4
- 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 +13 -97
- 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 +1 -1
- package/scripts/dev-pr-delivery-warrant.mjs +11 -0
- package/scripts/dev-qualification-patrol.mjs +9 -9
- package/scripts/dispatch-artifact-signing-authority.mjs +1 -1
- package/scripts/generate-channel-promotion-workflow.mjs +2 -2
- package/scripts/generate-next-development-guidance.mjs +49 -0
- package/scripts/generate-release-candidate-passport.mjs +152 -0
- package/scripts/generate-site-bundle.mjs +69 -4
- package/scripts/init-repo.mjs +22 -4
- 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 +2 -2
- 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 +557 -30
- package/scripts/site-capability-metadata.mjs +41 -0
- package/scripts/stable-candidate-qualification.mjs +9 -10
- package/scripts/v4-consumer-policy.mjs +5 -5
- 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",
|
|
@@ -1823,6 +1838,17 @@
|
|
|
1823
1838
|
],
|
|
1824
1839
|
"outputCount": 5
|
|
1825
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
|
+
},
|
|
1826
1852
|
{
|
|
1827
1853
|
"id": "buildchain-ref-promotion",
|
|
1828
1854
|
"path": ".github/workflows/buildchain-ref-promotion.yml",
|
|
@@ -2042,27 +2068,37 @@
|
|
|
2042
2068
|
"dependency-root",
|
|
2043
2069
|
"diagnostic-context",
|
|
2044
2070
|
"dry-run",
|
|
2071
|
+
"environment-root",
|
|
2045
2072
|
"expected-head-sha",
|
|
2046
2073
|
"expected-pr-number",
|
|
2074
|
+
"handoff-workflow-id",
|
|
2047
2075
|
"initiative-root",
|
|
2048
2076
|
"landing-mode",
|
|
2077
|
+
"legacy-active-owner-binding-json",
|
|
2049
2078
|
"max-merges",
|
|
2050
2079
|
"merge-method",
|
|
2080
|
+
"native-command",
|
|
2081
|
+
"native-command-root",
|
|
2082
|
+
"native-heartbeat-seconds",
|
|
2083
|
+
"native-proof-json",
|
|
2051
2084
|
"plan-root",
|
|
2052
2085
|
"project-cut-proof-json",
|
|
2053
2086
|
"queue-admission-context",
|
|
2054
2087
|
"ready-label",
|
|
2088
|
+
"release-blocker-priority-json",
|
|
2055
2089
|
"require-approval",
|
|
2056
2090
|
"required-status-checks",
|
|
2057
2091
|
"same-repository-only",
|
|
2058
2092
|
"shard-evidence-roots-json",
|
|
2059
2093
|
"source-identity-root",
|
|
2060
2094
|
"source-patch-root",
|
|
2095
|
+
"source-workflow-id",
|
|
2096
|
+
"source-workflow-run-id",
|
|
2061
2097
|
"target-branch",
|
|
2062
2098
|
"toolchain-root",
|
|
2063
2099
|
"warrant-lease-seconds"
|
|
2064
2100
|
],
|
|
2065
|
-
"inputCount":
|
|
2101
|
+
"inputCount": 43,
|
|
2066
2102
|
"secrets": [
|
|
2067
2103
|
"github-token"
|
|
2068
2104
|
],
|
|
@@ -2075,14 +2111,20 @@
|
|
|
2075
2111
|
"evaluated-count",
|
|
2076
2112
|
"final-base-sha",
|
|
2077
2113
|
"merged-count",
|
|
2114
|
+
"native-execution-transfer-root",
|
|
2115
|
+
"native-proof-root",
|
|
2116
|
+
"native-reuse-decision-root",
|
|
2078
2117
|
"project-cut-proof-root",
|
|
2118
|
+
"provider-finalizer-boundary-root",
|
|
2119
|
+
"provider-heartbeat-receipt-root",
|
|
2120
|
+
"qualified-warrant-receipt-root",
|
|
2079
2121
|
"skipped-count",
|
|
2080
2122
|
"source-proof-root",
|
|
2081
2123
|
"warrant-receipt-root",
|
|
2082
2124
|
"warrant-state-commit",
|
|
2083
2125
|
"warrant-state-root"
|
|
2084
2126
|
],
|
|
2085
|
-
"outputCount":
|
|
2127
|
+
"outputCount": 19
|
|
2086
2128
|
},
|
|
2087
2129
|
{
|
|
2088
2130
|
"id": "dev-qualification-patrol",
|
|
@@ -2777,22 +2819,28 @@
|
|
|
2777
2819
|
"reusable": true,
|
|
2778
2820
|
"inputs": [
|
|
2779
2821
|
"buildchain-ref",
|
|
2822
|
+
"candidate-root",
|
|
2780
2823
|
"declaration-path",
|
|
2781
2824
|
"execute",
|
|
2782
2825
|
"provider-bindings-path",
|
|
2826
|
+
"rehearsal-authority-path",
|
|
2827
|
+
"rehearsal-capsule-path",
|
|
2828
|
+
"rehearsal-evidence-path",
|
|
2829
|
+
"rehearsal-mode",
|
|
2783
2830
|
"state-path"
|
|
2784
2831
|
],
|
|
2785
|
-
"inputCount":
|
|
2832
|
+
"inputCount": 10,
|
|
2786
2833
|
"secrets": [
|
|
2787
2834
|
"http-token"
|
|
2788
2835
|
],
|
|
2789
2836
|
"secretCount": 1,
|
|
2790
2837
|
"outputs": [
|
|
2838
|
+
"rehearsal-evidence-root",
|
|
2791
2839
|
"state-root",
|
|
2792
2840
|
"transaction-root",
|
|
2793
2841
|
"transaction-state"
|
|
2794
2842
|
],
|
|
2795
|
-
"outputCount":
|
|
2843
|
+
"outputCount": 4
|
|
2796
2844
|
},
|
|
2797
2845
|
{
|
|
2798
2846
|
"id": "release-verify",
|
|
@@ -2865,6 +2913,34 @@
|
|
|
2865
2913
|
],
|
|
2866
2914
|
"outputCount": 6
|
|
2867
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
|
+
},
|
|
2868
2944
|
{
|
|
2869
2945
|
"id": "v4-public-consumer-dogfood",
|
|
2870
2946
|
"path": ".github/workflows/v4-public-consumer-dogfood.yml",
|
|
@@ -2876,6 +2952,17 @@
|
|
|
2876
2952
|
"outputs": [],
|
|
2877
2953
|
"outputCount": 0
|
|
2878
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
|
+
},
|
|
2879
2966
|
{
|
|
2880
2967
|
"id": "v4-stage-capsule-canary",
|
|
2881
2968
|
"path": ".github/workflows/v4-stage-capsule-canary.yml",
|
|
@@ -2894,6 +2981,28 @@
|
|
|
2894
2981
|
"outputs": [],
|
|
2895
2982
|
"outputCount": 0
|
|
2896
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
|
+
},
|
|
2897
3006
|
{
|
|
2898
3007
|
"id": "verify",
|
|
2899
3008
|
"path": ".github/workflows/verify.yml",
|
|
@@ -3029,6 +3138,7 @@
|
|
|
3029
3138
|
"release-passport-promotion-routing-json",
|
|
3030
3139
|
"release-passport-v4-consumer-policy-certification-json",
|
|
3031
3140
|
"release-passport-v4-consumer-policy-certification-root",
|
|
3141
|
+
"release-passport-v4-runtime-resume-evidence-command",
|
|
3032
3142
|
"release-passport-v4-runtime-resume-evidence-json",
|
|
3033
3143
|
"release-tail-state-path",
|
|
3034
3144
|
"require-governance",
|
|
@@ -3043,20 +3153,25 @@
|
|
|
3043
3153
|
"transaction-state-path",
|
|
3044
3154
|
"verification-command"
|
|
3045
3155
|
],
|
|
3046
|
-
"inputCount":
|
|
3156
|
+
"inputCount": 84
|
|
3047
3157
|
},
|
|
3048
3158
|
{
|
|
3049
3159
|
"id": "release-tail",
|
|
3050
3160
|
"path": "actions/release-tail/action.yml",
|
|
3051
3161
|
"inputs": [
|
|
3162
|
+
"candidate-root",
|
|
3052
3163
|
"declaration",
|
|
3053
3164
|
"execute",
|
|
3054
3165
|
"github-token",
|
|
3055
3166
|
"http-token",
|
|
3056
3167
|
"provider-bindings",
|
|
3168
|
+
"rehearsal-authority",
|
|
3169
|
+
"rehearsal-capsule",
|
|
3170
|
+
"rehearsal-evidence-path",
|
|
3171
|
+
"rehearsal-mode",
|
|
3057
3172
|
"state-path"
|
|
3058
3173
|
],
|
|
3059
|
-
"inputCount":
|
|
3174
|
+
"inputCount": 11
|
|
3060
3175
|
},
|
|
3061
3176
|
{
|
|
3062
3177
|
"id": "report-buildchain-issue",
|
|
@@ -3269,6 +3384,10 @@
|
|
|
3269
3384
|
"id": "manual:dev-alpha-candidate-patrol",
|
|
3270
3385
|
"category": "manual"
|
|
3271
3386
|
},
|
|
3387
|
+
{
|
|
3388
|
+
"id": "manual:dev-delivery-qualification-landing-adr",
|
|
3389
|
+
"category": "manual"
|
|
3390
|
+
},
|
|
3272
3391
|
{
|
|
3273
3392
|
"id": "manual:dev-delivery-warrant",
|
|
3274
3393
|
"category": "manual"
|
|
@@ -3325,6 +3444,10 @@
|
|
|
3325
3444
|
"id": "manual:migration-inventory",
|
|
3326
3445
|
"category": "manual"
|
|
3327
3446
|
},
|
|
3447
|
+
{
|
|
3448
|
+
"id": "manual:next-development-transition",
|
|
3449
|
+
"category": "manual"
|
|
3450
|
+
},
|
|
3328
3451
|
{
|
|
3329
3452
|
"id": "manual:node-api-reference",
|
|
3330
3453
|
"category": "manual"
|
|
@@ -3417,10 +3540,18 @@
|
|
|
3417
3540
|
"id": "manual:toolkit-observability",
|
|
3418
3541
|
"category": "manual"
|
|
3419
3542
|
},
|
|
3543
|
+
{
|
|
3544
|
+
"id": "manual:v4-adopter-delivery",
|
|
3545
|
+
"category": "manual"
|
|
3546
|
+
},
|
|
3420
3547
|
{
|
|
3421
3548
|
"id": "manual:v4-canonical-contracts",
|
|
3422
3549
|
"category": "manual"
|
|
3423
3550
|
},
|
|
3551
|
+
{
|
|
3552
|
+
"id": "manual:v4-compatibility-facts",
|
|
3553
|
+
"category": "manual"
|
|
3554
|
+
},
|
|
3424
3555
|
{
|
|
3425
3556
|
"id": "manual:v4-delivery-warrant-read-candidate",
|
|
3426
3557
|
"category": "manual"
|
|
@@ -3433,6 +3564,10 @@
|
|
|
3433
3564
|
"id": "manual:v4-production-release",
|
|
3434
3565
|
"category": "manual"
|
|
3435
3566
|
},
|
|
3567
|
+
{
|
|
3568
|
+
"id": "manual:v4-publication-rehearsal",
|
|
3569
|
+
"category": "manual"
|
|
3570
|
+
},
|
|
3436
3571
|
{
|
|
3437
3572
|
"id": "manual:v4-runtime-ref-resume-authority",
|
|
3438
3573
|
"category": "manual"
|
|
@@ -3441,6 +3576,10 @@
|
|
|
3441
3576
|
"id": "manual:v4-stage-capsule",
|
|
3442
3577
|
"category": "manual"
|
|
3443
3578
|
},
|
|
3579
|
+
{
|
|
3580
|
+
"id": "manual:v4-tail-reseal",
|
|
3581
|
+
"category": "manual"
|
|
3582
|
+
},
|
|
3444
3583
|
{
|
|
3445
3584
|
"id": "manual:versioning",
|
|
3446
3585
|
"category": "manual"
|
|
@@ -3455,6 +3594,106 @@
|
|
|
3455
3594
|
}
|
|
3456
3595
|
],
|
|
3457
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
|
+
},
|
|
3458
3697
|
{
|
|
3459
3698
|
"id": "architecture",
|
|
3460
3699
|
"path": "docs/cli-reference.md",
|
|
@@ -3815,6 +4054,26 @@
|
|
|
3815
4054
|
"path": "docs/cli-reference.md",
|
|
3816
4055
|
"command": "buildchain facts aggregate"
|
|
3817
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
|
+
},
|
|
3818
4077
|
{
|
|
3819
4078
|
"id": "build-facts",
|
|
3820
4079
|
"path": "docs/cli-reference.md",
|
|
@@ -3840,6 +4099,46 @@
|
|
|
3840
4099
|
"path": "docs/cli-reference.md",
|
|
3841
4100
|
"command": "buildchain facts aggregate --help"
|
|
3842
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
|
+
},
|
|
3843
4142
|
{
|
|
3844
4143
|
"id": "build-facts",
|
|
3845
4144
|
"path": "docs/cli-reference.md",
|
|
@@ -3875,6 +4174,26 @@
|
|
|
3875
4174
|
"path": "docs/cli.md",
|
|
3876
4175
|
"command": "buildchain facts verify --fact"
|
|
3877
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
|
+
},
|
|
3878
4197
|
{
|
|
3879
4198
|
"id": "candidate",
|
|
3880
4199
|
"path": "docs/cli-reference.md",
|
|
@@ -4063,177 +4382,427 @@
|
|
|
4063
4382
|
{
|
|
4064
4383
|
"id": "dev",
|
|
4065
4384
|
"path": "docs/cli-reference.md",
|
|
4066
|
-
"command": "buildchain dev
|
|
4385
|
+
"command": "buildchain dev authority"
|
|
4067
4386
|
},
|
|
4068
4387
|
{
|
|
4069
4388
|
"id": "dev",
|
|
4070
4389
|
"path": "docs/cli-reference.md",
|
|
4071
|
-
"command": "buildchain dev
|
|
4390
|
+
"command": "buildchain dev authority"
|
|
4072
4391
|
},
|
|
4073
4392
|
{
|
|
4074
4393
|
"id": "dev",
|
|
4075
4394
|
"path": "docs/cli-reference.md",
|
|
4076
|
-
"command": "buildchain dev
|
|
4395
|
+
"command": "buildchain dev authority"
|
|
4077
4396
|
},
|
|
4078
4397
|
{
|
|
4079
4398
|
"id": "dev",
|
|
4080
4399
|
"path": "docs/cli-reference.md",
|
|
4081
|
-
"command": "buildchain dev
|
|
4400
|
+
"command": "buildchain dev authority"
|
|
4082
4401
|
},
|
|
4083
4402
|
{
|
|
4084
4403
|
"id": "dev",
|
|
4085
4404
|
"path": "docs/cli-reference.md",
|
|
4086
|
-
"command": "buildchain dev
|
|
4405
|
+
"command": "buildchain dev authority"
|
|
4087
4406
|
},
|
|
4088
4407
|
{
|
|
4089
4408
|
"id": "dev",
|
|
4090
4409
|
"path": "docs/cli-reference.md",
|
|
4091
|
-
"command": "buildchain dev
|
|
4410
|
+
"command": "buildchain dev authority"
|
|
4092
4411
|
},
|
|
4093
4412
|
{
|
|
4094
4413
|
"id": "dev",
|
|
4095
4414
|
"path": "docs/cli-reference.md",
|
|
4096
|
-
"command": "buildchain dev
|
|
4415
|
+
"command": "buildchain dev authority"
|
|
4097
4416
|
},
|
|
4098
4417
|
{
|
|
4099
4418
|
"id": "dev",
|
|
4100
4419
|
"path": "docs/cli-reference.md",
|
|
4101
|
-
"command": "buildchain dev
|
|
4420
|
+
"command": "buildchain dev authority"
|
|
4102
4421
|
},
|
|
4103
4422
|
{
|
|
4104
4423
|
"id": "dev",
|
|
4105
4424
|
"path": "docs/cli-reference.md",
|
|
4106
|
-
"command": "buildchain dev
|
|
4425
|
+
"command": "buildchain dev authority"
|
|
4107
4426
|
},
|
|
4108
4427
|
{
|
|
4109
4428
|
"id": "dev",
|
|
4110
4429
|
"path": "docs/cli-reference.md",
|
|
4111
|
-
"command": "buildchain dev
|
|
4430
|
+
"command": "buildchain dev authority"
|
|
4112
4431
|
},
|
|
4113
4432
|
{
|
|
4114
4433
|
"id": "dev",
|
|
4115
4434
|
"path": "docs/cli-reference.md",
|
|
4116
|
-
"command": "buildchain dev
|
|
4435
|
+
"command": "buildchain dev authority"
|
|
4117
4436
|
},
|
|
4118
4437
|
{
|
|
4119
4438
|
"id": "dev",
|
|
4120
4439
|
"path": "docs/cli-reference.md",
|
|
4121
|
-
"command": "buildchain dev
|
|
4440
|
+
"command": "buildchain dev merge-queue --repository"
|
|
4122
4441
|
},
|
|
4123
4442
|
{
|
|
4124
4443
|
"id": "dev",
|
|
4125
4444
|
"path": "docs/cli-reference.md",
|
|
4126
|
-
"command": "buildchain dev
|
|
4445
|
+
"command": "buildchain dev pr-admit --repository"
|
|
4127
4446
|
},
|
|
4128
4447
|
{
|
|
4129
4448
|
"id": "dev",
|
|
4130
4449
|
"path": "docs/cli-reference.md",
|
|
4131
|
-
"command": "buildchain dev
|
|
4450
|
+
"command": "buildchain dev proof"
|
|
4132
4451
|
},
|
|
4133
4452
|
{
|
|
4134
4453
|
"id": "dev",
|
|
4135
4454
|
"path": "docs/cli-reference.md",
|
|
4136
|
-
"command": "buildchain dev
|
|
4455
|
+
"command": "buildchain dev proof"
|
|
4137
4456
|
},
|
|
4138
4457
|
{
|
|
4139
4458
|
"id": "dev",
|
|
4140
4459
|
"path": "docs/cli-reference.md",
|
|
4141
|
-
"command": "buildchain dev"
|
|
4460
|
+
"command": "buildchain dev proof"
|
|
4142
4461
|
},
|
|
4143
4462
|
{
|
|
4144
4463
|
"id": "dev",
|
|
4145
4464
|
"path": "docs/cli-reference.md",
|
|
4146
|
-
"command": "buildchain dev
|
|
4465
|
+
"command": "buildchain dev proof"
|
|
4147
4466
|
},
|
|
4148
4467
|
{
|
|
4149
4468
|
"id": "dev",
|
|
4150
4469
|
"path": "docs/cli-reference.md",
|
|
4151
|
-
"command": "buildchain dev
|
|
4470
|
+
"command": "buildchain dev proof"
|
|
4152
4471
|
},
|
|
4153
4472
|
{
|
|
4154
4473
|
"id": "dev",
|
|
4155
4474
|
"path": "docs/cli-reference.md",
|
|
4156
|
-
"command": "buildchain dev
|
|
4475
|
+
"command": "buildchain dev proof"
|
|
4157
4476
|
},
|
|
4158
4477
|
{
|
|
4159
4478
|
"id": "dev",
|
|
4160
4479
|
"path": "docs/cli-reference.md",
|
|
4161
|
-
"command": "buildchain dev
|
|
4480
|
+
"command": "buildchain dev proof"
|
|
4162
4481
|
},
|
|
4163
4482
|
{
|
|
4164
4483
|
"id": "dev",
|
|
4165
4484
|
"path": "docs/cli-reference.md",
|
|
4166
|
-
"command": "buildchain dev
|
|
4485
|
+
"command": "buildchain dev proof"
|
|
4167
4486
|
},
|
|
4168
4487
|
{
|
|
4169
4488
|
"id": "dev",
|
|
4170
4489
|
"path": "docs/cli-reference.md",
|
|
4171
|
-
"command": "buildchain dev proof
|
|
4490
|
+
"command": "buildchain dev proof"
|
|
4172
4491
|
},
|
|
4173
4492
|
{
|
|
4174
4493
|
"id": "dev",
|
|
4175
4494
|
"path": "docs/cli-reference.md",
|
|
4176
|
-
"command": "buildchain dev proof
|
|
4495
|
+
"command": "buildchain dev proof"
|
|
4177
4496
|
},
|
|
4178
4497
|
{
|
|
4179
4498
|
"id": "dev",
|
|
4180
4499
|
"path": "docs/cli-reference.md",
|
|
4181
|
-
"command": "buildchain dev
|
|
4500
|
+
"command": "buildchain dev two-phase --repository"
|
|
4182
4501
|
},
|
|
4183
4502
|
{
|
|
4184
4503
|
"id": "dev",
|
|
4185
4504
|
"path": "docs/cli-reference.md",
|
|
4186
|
-
"command": "buildchain dev
|
|
4505
|
+
"command": "buildchain dev warrant"
|
|
4187
4506
|
},
|
|
4188
4507
|
{
|
|
4189
4508
|
"id": "dev",
|
|
4190
4509
|
"path": "docs/cli-reference.md",
|
|
4191
|
-
"command": "buildchain dev
|
|
4510
|
+
"command": "buildchain dev warrant"
|
|
4192
4511
|
},
|
|
4193
4512
|
{
|
|
4194
4513
|
"id": "dev",
|
|
4195
4514
|
"path": "docs/cli-reference.md",
|
|
4196
|
-
"command": "buildchain dev
|
|
4515
|
+
"command": "buildchain dev warrant"
|
|
4197
4516
|
},
|
|
4198
4517
|
{
|
|
4199
4518
|
"id": "dev",
|
|
4200
4519
|
"path": "docs/cli-reference.md",
|
|
4201
|
-
"command": "buildchain dev
|
|
4520
|
+
"command": "buildchain dev warrant"
|
|
4202
4521
|
},
|
|
4203
4522
|
{
|
|
4204
4523
|
"id": "dev",
|
|
4205
4524
|
"path": "docs/cli-reference.md",
|
|
4206
|
-
"command": "buildchain dev
|
|
4525
|
+
"command": "buildchain dev warrant"
|
|
4207
4526
|
},
|
|
4208
4527
|
{
|
|
4209
4528
|
"id": "dev",
|
|
4210
4529
|
"path": "docs/cli-reference.md",
|
|
4211
|
-
"command": "buildchain dev
|
|
4530
|
+
"command": "buildchain dev warrant"
|
|
4212
4531
|
},
|
|
4213
4532
|
{
|
|
4214
4533
|
"id": "dev",
|
|
4215
4534
|
"path": "docs/cli-reference.md",
|
|
4216
|
-
"command": "buildchain dev
|
|
4535
|
+
"command": "buildchain dev warrant"
|
|
4217
4536
|
},
|
|
4218
4537
|
{
|
|
4219
4538
|
"id": "dev",
|
|
4220
4539
|
"path": "docs/cli-reference.md",
|
|
4221
|
-
"command": "buildchain dev
|
|
4540
|
+
"command": "buildchain dev warrant"
|
|
4222
4541
|
},
|
|
4223
4542
|
{
|
|
4224
4543
|
"id": "dev",
|
|
4225
4544
|
"path": "docs/cli-reference.md",
|
|
4226
|
-
"command": "buildchain dev
|
|
4545
|
+
"command": "buildchain dev warrant"
|
|
4227
4546
|
},
|
|
4228
4547
|
{
|
|
4229
4548
|
"id": "dev",
|
|
4230
4549
|
"path": "docs/cli-reference.md",
|
|
4231
|
-
"command": "buildchain dev
|
|
4550
|
+
"command": "buildchain dev"
|
|
4232
4551
|
},
|
|
4233
4552
|
{
|
|
4234
4553
|
"id": "dev",
|
|
4235
4554
|
"path": "docs/cli-reference.md",
|
|
4236
|
-
"command": "buildchain dev
|
|
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"
|
|
4751
|
+
},
|
|
4752
|
+
{
|
|
4753
|
+
"id": "dev",
|
|
4754
|
+
"path": "docs/cli-reference.md",
|
|
4755
|
+
"command": "buildchain dev proof verify-integration"
|
|
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
|
+
},
|
|
4777
|
+
{
|
|
4778
|
+
"id": "dev",
|
|
4779
|
+
"path": "docs/cli-reference.md",
|
|
4780
|
+
"command": "buildchain dev proof verify-source"
|
|
4781
|
+
},
|
|
4782
|
+
{
|
|
4783
|
+
"id": "dev",
|
|
4784
|
+
"path": "docs/cli-reference.md",
|
|
4785
|
+
"command": "buildchain dev proof verify-source"
|
|
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
|
+
},
|
|
4797
|
+
{
|
|
4798
|
+
"id": "dev",
|
|
4799
|
+
"path": "docs/cli-reference.md",
|
|
4800
|
+
"command": "buildchain dev warrant cancel-queued"
|
|
4801
|
+
},
|
|
4802
|
+
{
|
|
4803
|
+
"id": "dev",
|
|
4804
|
+
"path": "docs/cli-reference.md",
|
|
4805
|
+
"command": "buildchain dev warrant cancel-queued"
|
|
4237
4806
|
},
|
|
4238
4807
|
{
|
|
4239
4808
|
"id": "dev",
|
|
@@ -4265,6 +4834,16 @@
|
|
|
4265
4834
|
"path": "docs/cli-reference.md",
|
|
4266
4835
|
"command": "buildchain dev warrant observe"
|
|
4267
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
|
+
},
|
|
4268
4847
|
{
|
|
4269
4848
|
"id": "dev",
|
|
4270
4849
|
"path": "docs/cli-reference.md",
|
|
@@ -4285,6 +4864,16 @@
|
|
|
4285
4864
|
"path": "docs/cli-reference.md",
|
|
4286
4865
|
"command": "buildchain dev warrant select"
|
|
4287
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
|
+
},
|
|
4288
4877
|
{
|
|
4289
4878
|
"id": "dev",
|
|
4290
4879
|
"path": "docs/cli-reference.md",
|
|
@@ -4310,6 +4899,11 @@
|
|
|
4310
4899
|
"path": "docs/cli.md",
|
|
4311
4900
|
"command": "buildchain dev merge-queue --from-config"
|
|
4312
4901
|
},
|
|
4902
|
+
{
|
|
4903
|
+
"id": "dev",
|
|
4904
|
+
"path": "docs/dev-delivery-qualification-landing-adr.md",
|
|
4905
|
+
"command": "buildchain dev warrant"
|
|
4906
|
+
},
|
|
4313
4907
|
{
|
|
4314
4908
|
"id": "dev",
|
|
4315
4909
|
"path": "docs/dev-delivery-warrant.md",
|
|
@@ -4320,6 +4914,21 @@
|
|
|
4320
4914
|
"path": "docs/dev-delivery-warrant.md",
|
|
4321
4915
|
"command": "buildchain dev warrant select"
|
|
4322
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
|
+
},
|
|
4323
4932
|
{
|
|
4324
4933
|
"id": "dev",
|
|
4325
4934
|
"path": "docs/dev-delivery-warrant.md",
|
|
@@ -4350,6 +4959,56 @@
|
|
|
4350
4959
|
"path": "docs/dev-delivery-warrant.md",
|
|
4351
4960
|
"command": "buildchain dev proof integration"
|
|
4352
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
|
+
},
|
|
4353
5012
|
{
|
|
4354
5013
|
"id": "dev",
|
|
4355
5014
|
"path": "docs/release-governance.md",
|
|
@@ -6350,6 +7009,36 @@
|
|
|
6350
7009
|
"path": "README.md",
|
|
6351
7010
|
"command": "buildchain mark --event native"
|
|
6352
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
|
+
},
|
|
6353
7042
|
{
|
|
6354
7043
|
"id": "npm-dry-run",
|
|
6355
7044
|
"path": "docs/cli-reference.md",
|
|
@@ -7325,6 +8014,11 @@
|
|
|
7325
8014
|
"path": "docs/cli-reference.md",
|
|
7326
8015
|
"command": "buildchain release-tail plan --declaration"
|
|
7327
8016
|
},
|
|
8017
|
+
{
|
|
8018
|
+
"id": "release-tail",
|
|
8019
|
+
"path": "docs/cli-reference.md",
|
|
8020
|
+
"command": "buildchain release-tail rehearse --capsule"
|
|
8021
|
+
},
|
|
7328
8022
|
{
|
|
7329
8023
|
"id": "release-tail",
|
|
7330
8024
|
"path": "docs/cli-reference.md",
|
|
@@ -7375,6 +8069,16 @@
|
|
|
7375
8069
|
"path": "docs/cli-reference.md",
|
|
7376
8070
|
"command": "buildchain release-tail plan --help"
|
|
7377
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
|
+
},
|
|
7378
8082
|
{
|
|
7379
8083
|
"id": "release-tail",
|
|
7380
8084
|
"path": "docs/cli-reference.md",
|
|
@@ -7415,6 +8119,11 @@
|
|
|
7415
8119
|
"path": "docs/release-tail-provider-plane.md",
|
|
7416
8120
|
"command": "buildchain release-tail plan"
|
|
7417
8121
|
},
|
|
8122
|
+
{
|
|
8123
|
+
"id": "release-tail",
|
|
8124
|
+
"path": "docs/v4-publication-rehearsal.md",
|
|
8125
|
+
"command": "buildchain release-tail rehearse"
|
|
8126
|
+
},
|
|
7418
8127
|
{
|
|
7419
8128
|
"id": "release-transaction",
|
|
7420
8129
|
"path": "docs/cli-reference.md",
|
|
@@ -7605,6 +8314,86 @@
|
|
|
7605
8314
|
"path": "README.md",
|
|
7606
8315
|
"command": "buildchain span --event native"
|
|
7607
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
|
+
},
|
|
7608
8397
|
{
|
|
7609
8398
|
"id": "transaction-inspect",
|
|
7610
8399
|
"path": "docs/cli-reference.md",
|
|
@@ -8056,9 +8845,9 @@
|
|
|
8056
8845
|
"cliRegistryPath": "dist/site/cli-registry.json",
|
|
8057
8846
|
"workflowRegistryPath": "dist/site/workflow-registry.json",
|
|
8058
8847
|
"pageRegistryPath": "dist/site/page-registry.json",
|
|
8059
|
-
"cliRegistryDigest": "
|
|
8060
|
-
"workflowRegistryDigest": "
|
|
8061
|
-
"pageRegistryDigest": "
|
|
8848
|
+
"cliRegistryDigest": "ea47a31ce7ef3577f23e22055ab7be7715c3af494bcef63f76b426f2883086aa",
|
|
8849
|
+
"workflowRegistryDigest": "f2ada63d2f32b7dbaed609a74c18be67f6297514cd27e04bcf9f01a6d9a7b71c",
|
|
8850
|
+
"pageRegistryDigest": "9d9d0590c8d3110fc5a95978852ee25337567f93980b2562cc1159f0d5219ade"
|
|
8062
8851
|
},
|
|
8063
8852
|
"comparison": {
|
|
8064
8853
|
"missingCliRegistry": [],
|