@kungfu-tech/buildchain 3.0.9-alpha.4 → 3.0.9-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/buildchain.mjs +5 -1
- package/dist/site/buildchain-contract.json +9 -9
- package/dist/site/buildchain-site.json +56 -26
- package/dist/site/cli-registry.json +18 -2
- package/dist/site/kfd-claims.json +8 -5
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +6 -6
- package/dist/site/node-api-registry.json +290 -49
- package/dist/site/page-registry.json +46 -16
- package/dist/site/public-surface-audit.json +122 -6
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +10 -10
- package/dist/site/workflow-registry.json +12 -6
- package/docs/cli-reference.md +79 -13
- package/docs/dev-delivery-warrant.md +53 -19
- package/docs/kfd-support.md +7 -2
- package/docs/node-api-reference.md +59 -51
- package/docs/release-governance.md +5 -4
- package/docs/release-passport.md +8 -2
- package/docs/versioning.md +1 -0
- package/package.json +3 -2
- package/packages/core/artifact-verification-envelope.js +5 -5
- package/packages/core/dev-delivery-native-proof.js +333 -0
- package/packages/core/dev-delivery-warrant-settlement.js +5 -1
- package/packages/core/dev-delivery-warrant.js +40 -6
- package/packages/core/kfd-adopter-manifest.js +46 -47
- package/packages/core/release-passport-contract.js +5 -5
- package/packages/core/release-passport.js +5 -4
- package/scripts/aws-macos-jit-controller-core.mjs +82 -2
- package/scripts/aws-macos-jit-controller.mjs +81 -1
- package/scripts/aws-macos-jit-source-rebind.mjs +147 -24
- package/scripts/buildchain-cli-help.mjs +6 -2
- package/scripts/check-internal-architecture.mjs +1 -0
- package/scripts/dev-delivery-native-run.mjs +187 -0
- package/scripts/dev-delivery-proof.mjs +54 -2
- package/scripts/dev-delivery-two-phase.mjs +598 -0
- package/scripts/dev-delivery-warrant.mjs +38 -3
- package/scripts/dev-pr-delivery-warrant.mjs +6 -1
- package/scripts/generate-channel-build-workflow.mjs +4 -0
- package/scripts/init-repo.mjs +16 -0
- package/scripts/release-candidate-tail-reseal.mjs +426 -0
- package/templates/native-dev-delivery.yml +82 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"workflowCount": 69,
|
|
8
8
|
"actionCount": 7,
|
|
9
9
|
"sitePageCount": 72,
|
|
10
|
-
"docCommandRefCount":
|
|
10
|
+
"docCommandRefCount": 946,
|
|
11
11
|
"failureCount": 0
|
|
12
12
|
},
|
|
13
13
|
"enumerated": {
|
|
@@ -2017,6 +2017,9 @@
|
|
|
2017
2017
|
"landing-mode",
|
|
2018
2018
|
"max-merges",
|
|
2019
2019
|
"merge-method",
|
|
2020
|
+
"native-command",
|
|
2021
|
+
"native-heartbeat-seconds",
|
|
2022
|
+
"native-proof-json",
|
|
2020
2023
|
"plan-root",
|
|
2021
2024
|
"project-cut-proof-json",
|
|
2022
2025
|
"queue-admission-context",
|
|
@@ -2033,7 +2036,7 @@
|
|
|
2033
2036
|
"toolchain-root",
|
|
2034
2037
|
"warrant-lease-seconds"
|
|
2035
2038
|
],
|
|
2036
|
-
"inputCount":
|
|
2039
|
+
"inputCount": 39,
|
|
2037
2040
|
"secrets": [
|
|
2038
2041
|
"github-token"
|
|
2039
2042
|
],
|
|
@@ -2046,14 +2049,17 @@
|
|
|
2046
2049
|
"evaluated-count",
|
|
2047
2050
|
"final-base-sha",
|
|
2048
2051
|
"merged-count",
|
|
2052
|
+
"native-proof-root",
|
|
2053
|
+
"native-reuse-decision-root",
|
|
2049
2054
|
"project-cut-proof-root",
|
|
2055
|
+
"qualified-warrant-receipt-root",
|
|
2050
2056
|
"skipped-count",
|
|
2051
2057
|
"source-proof-root",
|
|
2052
2058
|
"warrant-receipt-root",
|
|
2053
2059
|
"warrant-state-commit",
|
|
2054
2060
|
"warrant-state-root"
|
|
2055
2061
|
],
|
|
2056
|
-
"outputCount":
|
|
2062
|
+
"outputCount": 16
|
|
2057
2063
|
},
|
|
2058
2064
|
{
|
|
2059
2065
|
"id": "dev-qualification-patrol",
|
|
@@ -4025,6 +4031,36 @@
|
|
|
4025
4031
|
"path": "docs/cli-reference.md",
|
|
4026
4032
|
"command": "buildchain dev proof"
|
|
4027
4033
|
},
|
|
4034
|
+
{
|
|
4035
|
+
"id": "dev",
|
|
4036
|
+
"path": "docs/cli-reference.md",
|
|
4037
|
+
"command": "buildchain dev proof"
|
|
4038
|
+
},
|
|
4039
|
+
{
|
|
4040
|
+
"id": "dev",
|
|
4041
|
+
"path": "docs/cli-reference.md",
|
|
4042
|
+
"command": "buildchain dev proof"
|
|
4043
|
+
},
|
|
4044
|
+
{
|
|
4045
|
+
"id": "dev",
|
|
4046
|
+
"path": "docs/cli-reference.md",
|
|
4047
|
+
"command": "buildchain dev proof"
|
|
4048
|
+
},
|
|
4049
|
+
{
|
|
4050
|
+
"id": "dev",
|
|
4051
|
+
"path": "docs/cli-reference.md",
|
|
4052
|
+
"command": "buildchain dev proof"
|
|
4053
|
+
},
|
|
4054
|
+
{
|
|
4055
|
+
"id": "dev",
|
|
4056
|
+
"path": "docs/cli-reference.md",
|
|
4057
|
+
"command": "buildchain dev two-phase --repository"
|
|
4058
|
+
},
|
|
4059
|
+
{
|
|
4060
|
+
"id": "dev",
|
|
4061
|
+
"path": "docs/cli-reference.md",
|
|
4062
|
+
"command": "buildchain dev warrant"
|
|
4063
|
+
},
|
|
4028
4064
|
{
|
|
4029
4065
|
"id": "dev",
|
|
4030
4066
|
"path": "docs/cli-reference.md",
|
|
@@ -4100,6 +4136,16 @@
|
|
|
4100
4136
|
"path": "docs/cli-reference.md",
|
|
4101
4137
|
"command": "buildchain dev proof classify"
|
|
4102
4138
|
},
|
|
4139
|
+
{
|
|
4140
|
+
"id": "dev",
|
|
4141
|
+
"path": "docs/cli-reference.md",
|
|
4142
|
+
"command": "buildchain dev proof classify-native"
|
|
4143
|
+
},
|
|
4144
|
+
{
|
|
4145
|
+
"id": "dev",
|
|
4146
|
+
"path": "docs/cli-reference.md",
|
|
4147
|
+
"command": "buildchain dev proof classify-native"
|
|
4148
|
+
},
|
|
4103
4149
|
{
|
|
4104
4150
|
"id": "dev",
|
|
4105
4151
|
"path": "docs/cli-reference.md",
|
|
@@ -4110,6 +4156,16 @@
|
|
|
4110
4156
|
"path": "docs/cli-reference.md",
|
|
4111
4157
|
"command": "buildchain dev proof integration"
|
|
4112
4158
|
},
|
|
4159
|
+
{
|
|
4160
|
+
"id": "dev",
|
|
4161
|
+
"path": "docs/cli-reference.md",
|
|
4162
|
+
"command": "buildchain dev proof native"
|
|
4163
|
+
},
|
|
4164
|
+
{
|
|
4165
|
+
"id": "dev",
|
|
4166
|
+
"path": "docs/cli-reference.md",
|
|
4167
|
+
"command": "buildchain dev proof native"
|
|
4168
|
+
},
|
|
4113
4169
|
{
|
|
4114
4170
|
"id": "dev",
|
|
4115
4171
|
"path": "docs/cli-reference.md",
|
|
@@ -4140,6 +4196,26 @@
|
|
|
4140
4196
|
"path": "docs/cli-reference.md",
|
|
4141
4197
|
"command": "buildchain dev proof verify-integration"
|
|
4142
4198
|
},
|
|
4199
|
+
{
|
|
4200
|
+
"id": "dev",
|
|
4201
|
+
"path": "docs/cli-reference.md",
|
|
4202
|
+
"command": "buildchain dev proof verify-native"
|
|
4203
|
+
},
|
|
4204
|
+
{
|
|
4205
|
+
"id": "dev",
|
|
4206
|
+
"path": "docs/cli-reference.md",
|
|
4207
|
+
"command": "buildchain dev proof verify-native"
|
|
4208
|
+
},
|
|
4209
|
+
{
|
|
4210
|
+
"id": "dev",
|
|
4211
|
+
"path": "docs/cli-reference.md",
|
|
4212
|
+
"command": "buildchain dev proof verify-native-reuse"
|
|
4213
|
+
},
|
|
4214
|
+
{
|
|
4215
|
+
"id": "dev",
|
|
4216
|
+
"path": "docs/cli-reference.md",
|
|
4217
|
+
"command": "buildchain dev proof verify-native-reuse"
|
|
4218
|
+
},
|
|
4143
4219
|
{
|
|
4144
4220
|
"id": "dev",
|
|
4145
4221
|
"path": "docs/cli-reference.md",
|
|
@@ -4150,6 +4226,16 @@
|
|
|
4150
4226
|
"path": "docs/cli-reference.md",
|
|
4151
4227
|
"command": "buildchain dev proof verify-source"
|
|
4152
4228
|
},
|
|
4229
|
+
{
|
|
4230
|
+
"id": "dev",
|
|
4231
|
+
"path": "docs/cli-reference.md",
|
|
4232
|
+
"command": "buildchain dev two-phase"
|
|
4233
|
+
},
|
|
4234
|
+
{
|
|
4235
|
+
"id": "dev",
|
|
4236
|
+
"path": "docs/cli-reference.md",
|
|
4237
|
+
"command": "buildchain dev two-phase --help"
|
|
4238
|
+
},
|
|
4153
4239
|
{
|
|
4154
4240
|
"id": "dev",
|
|
4155
4241
|
"path": "docs/cli-reference.md",
|
|
@@ -4190,6 +4276,16 @@
|
|
|
4190
4276
|
"path": "docs/cli-reference.md",
|
|
4191
4277
|
"command": "buildchain dev warrant observe"
|
|
4192
4278
|
},
|
|
4279
|
+
{
|
|
4280
|
+
"id": "dev",
|
|
4281
|
+
"path": "docs/cli-reference.md",
|
|
4282
|
+
"command": "buildchain dev warrant qualify"
|
|
4283
|
+
},
|
|
4284
|
+
{
|
|
4285
|
+
"id": "dev",
|
|
4286
|
+
"path": "docs/cli-reference.md",
|
|
4287
|
+
"command": "buildchain dev warrant qualify"
|
|
4288
|
+
},
|
|
4193
4289
|
{
|
|
4194
4290
|
"id": "dev",
|
|
4195
4291
|
"path": "docs/cli-reference.md",
|
|
@@ -4245,6 +4341,21 @@
|
|
|
4245
4341
|
"path": "docs/dev-delivery-warrant.md",
|
|
4246
4342
|
"command": "buildchain dev warrant select"
|
|
4247
4343
|
},
|
|
4344
|
+
{
|
|
4345
|
+
"id": "dev",
|
|
4346
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4347
|
+
"command": "buildchain dev proof native"
|
|
4348
|
+
},
|
|
4349
|
+
{
|
|
4350
|
+
"id": "dev",
|
|
4351
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4352
|
+
"command": "buildchain dev proof classify-native"
|
|
4353
|
+
},
|
|
4354
|
+
{
|
|
4355
|
+
"id": "dev",
|
|
4356
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4357
|
+
"command": "buildchain dev warrant qualify"
|
|
4358
|
+
},
|
|
4248
4359
|
{
|
|
4249
4360
|
"id": "dev",
|
|
4250
4361
|
"path": "docs/dev-delivery-warrant.md",
|
|
@@ -4775,6 +4886,11 @@
|
|
|
4775
4886
|
"path": "docs/cli.md",
|
|
4776
4887
|
"command": "buildchain init"
|
|
4777
4888
|
},
|
|
4889
|
+
{
|
|
4890
|
+
"id": "init",
|
|
4891
|
+
"path": "docs/dev-delivery-warrant.md",
|
|
4892
|
+
"command": "buildchain init --type native"
|
|
4893
|
+
},
|
|
4778
4894
|
{
|
|
4779
4895
|
"id": "init",
|
|
4780
4896
|
"path": "docs/getting-started.md",
|
|
@@ -8006,9 +8122,9 @@
|
|
|
8006
8122
|
"cliRegistryPath": "dist/site/cli-registry.json",
|
|
8007
8123
|
"workflowRegistryPath": "dist/site/workflow-registry.json",
|
|
8008
8124
|
"pageRegistryPath": "dist/site/page-registry.json",
|
|
8009
|
-
"cliRegistryDigest": "
|
|
8010
|
-
"workflowRegistryDigest": "
|
|
8011
|
-
"pageRegistryDigest": "
|
|
8125
|
+
"cliRegistryDigest": "2db0002dc06d97c6ab975f3ba395d23a0c6d7fe2796ded9852a7a127e52637cd",
|
|
8126
|
+
"workflowRegistryDigest": "c088fe6df30d1c4c1b1bf3d3d483074814dfd68811c0d8c9cac2ae0cc37e2bf0",
|
|
8127
|
+
"pageRegistryDigest": "7ae6094713bb4f601df84367c0e681fae2df68681ffa299c0e634626b44e5245"
|
|
8012
8128
|
},
|
|
8013
8129
|
"comparison": {
|
|
8014
8130
|
"missingCliRegistry": [],
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"contract": "kungfu-buildchain-publication-release-registry",
|
|
4
|
-
"generatedAt": "2026-08-
|
|
5
|
-
"publishedAt": "2026-08-
|
|
4
|
+
"generatedAt": "2026-08-11T19:43:47.000Z",
|
|
5
|
+
"publishedAt": "2026-08-11T19:43:47.000Z",
|
|
6
6
|
"reproducible": true,
|
|
7
7
|
"timestampPolicy": "ci-injected",
|
|
8
8
|
"deterministicInputs": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"declared Buildchain surface manifest contract"
|
|
20
20
|
],
|
|
21
21
|
"sourceDateEpoch": "0",
|
|
22
|
-
"sourceRevision": "
|
|
22
|
+
"sourceRevision": "c05d3c359fc356f8ab5dfbeffa35a2059e254c46",
|
|
23
23
|
"timestampPolicyDetails": {
|
|
24
24
|
"contract": "kungfu-buildchain-surface-timestamp-policy",
|
|
25
25
|
"timestampFields": [
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"package": {
|
|
34
34
|
"name": "@kungfu-tech/buildchain",
|
|
35
|
-
"version": "3.0.9-alpha.
|
|
35
|
+
"version": "3.0.9-alpha.6",
|
|
36
36
|
"versionSource": "package.json#version"
|
|
37
37
|
},
|
|
38
38
|
"sourceKind": "package-site-bundle",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"contract": "kungfu-buildchain-site-manifest",
|
|
4
|
-
"generatedAt": "2026-08-
|
|
5
|
-
"publishedAt": "2026-08-
|
|
4
|
+
"generatedAt": "2026-08-11T19:43:47.000Z",
|
|
5
|
+
"publishedAt": "2026-08-11T19:43:47.000Z",
|
|
6
6
|
"reproducible": true,
|
|
7
7
|
"timestampPolicy": "ci-injected",
|
|
8
8
|
"deterministicInputs": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"declared Buildchain surface manifest contract"
|
|
20
20
|
],
|
|
21
21
|
"sourceDateEpoch": "0",
|
|
22
|
-
"sourceRevision": "
|
|
22
|
+
"sourceRevision": "c05d3c359fc356f8ab5dfbeffa35a2059e254c46",
|
|
23
23
|
"timestampPolicyDetails": {
|
|
24
24
|
"contract": "kungfu-buildchain-surface-timestamp-policy",
|
|
25
25
|
"timestampFields": [
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"package": {
|
|
39
39
|
"name": "@kungfu-tech/buildchain",
|
|
40
|
-
"version": "3.0.9-alpha.
|
|
40
|
+
"version": "3.0.9-alpha.6",
|
|
41
41
|
"versionSource": "package.json#version"
|
|
42
42
|
},
|
|
43
43
|
"entrypoint": "buildchain-site.json",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"path": "docs/release-passport.md",
|
|
86
86
|
"plane": "verify",
|
|
87
87
|
"exists": true,
|
|
88
|
-
"digest": "sha256:
|
|
88
|
+
"digest": "sha256:70bf29e974b190b249fbbcfd9a5de1e33a9b069de5d7811a25e147b860137629"
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
91
|
"id": "github-artifact-attestation",
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
"path": "docs/cli-reference.md",
|
|
246
246
|
"plane": "use",
|
|
247
247
|
"exists": true,
|
|
248
|
-
"digest": "sha256:
|
|
248
|
+
"digest": "sha256:f77310bb6cbfca2aefbf25c02c5ee01a6c093548e5cc4d1db6b44e742e5d30d8"
|
|
249
249
|
},
|
|
250
250
|
{
|
|
251
251
|
"id": "node-api-reference",
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
"path": "docs/node-api-reference.md",
|
|
254
254
|
"plane": "use",
|
|
255
255
|
"exists": true,
|
|
256
|
-
"digest": "sha256:
|
|
256
|
+
"digest": "sha256:4663cf32a0116a8605e7b8a475fc4b38e02b81ca21af59e49be0043f3eb99a02"
|
|
257
257
|
},
|
|
258
258
|
{
|
|
259
259
|
"id": "build-facts",
|
|
@@ -269,7 +269,7 @@
|
|
|
269
269
|
"path": "docs/kfd-support.md",
|
|
270
270
|
"plane": "verify",
|
|
271
271
|
"exists": true,
|
|
272
|
-
"digest": "sha256:
|
|
272
|
+
"digest": "sha256:f849c3b69c8c716a5ae4e917e43a9a3ab8de977e7672b49697ba242fd320a014"
|
|
273
273
|
},
|
|
274
274
|
{
|
|
275
275
|
"id": "kfd-agent-hub",
|
|
@@ -333,7 +333,7 @@
|
|
|
333
333
|
"path": "docs/release-governance.md",
|
|
334
334
|
"plane": "why",
|
|
335
335
|
"exists": true,
|
|
336
|
-
"digest": "sha256:
|
|
336
|
+
"digest": "sha256:889955042854bb95bc5dd58d2bdd26bdc8259c096e15c0a8d479289ff51448b8"
|
|
337
337
|
},
|
|
338
338
|
{
|
|
339
339
|
"id": "release-flow",
|
|
@@ -357,7 +357,7 @@
|
|
|
357
357
|
"path": "docs/versioning.md",
|
|
358
358
|
"plane": "why",
|
|
359
359
|
"exists": true,
|
|
360
|
-
"digest": "sha256:
|
|
360
|
+
"digest": "sha256:0b1485e9e87a5f185041746e6ce8068373b3a6483fa7d1123f60702de471849b"
|
|
361
361
|
},
|
|
362
362
|
{
|
|
363
363
|
"id": "web-surface-deployments",
|
|
@@ -1856,6 +1856,9 @@
|
|
|
1856
1856
|
"landing-mode",
|
|
1857
1857
|
"max-merges",
|
|
1858
1858
|
"merge-method",
|
|
1859
|
+
"native-command",
|
|
1860
|
+
"native-heartbeat-seconds",
|
|
1861
|
+
"native-proof-json",
|
|
1859
1862
|
"plan-root",
|
|
1860
1863
|
"project-cut-proof-json",
|
|
1861
1864
|
"queue-admission-context",
|
|
@@ -1872,7 +1875,7 @@
|
|
|
1872
1875
|
"toolchain-root",
|
|
1873
1876
|
"warrant-lease-seconds"
|
|
1874
1877
|
],
|
|
1875
|
-
"inputCount":
|
|
1878
|
+
"inputCount": 39,
|
|
1876
1879
|
"secrets": [
|
|
1877
1880
|
"github-token"
|
|
1878
1881
|
],
|
|
@@ -1885,14 +1888,17 @@
|
|
|
1885
1888
|
"evaluated-count",
|
|
1886
1889
|
"final-base-sha",
|
|
1887
1890
|
"merged-count",
|
|
1891
|
+
"native-proof-root",
|
|
1892
|
+
"native-reuse-decision-root",
|
|
1888
1893
|
"project-cut-proof-root",
|
|
1894
|
+
"qualified-warrant-receipt-root",
|
|
1889
1895
|
"skipped-count",
|
|
1890
1896
|
"source-proof-root",
|
|
1891
1897
|
"warrant-receipt-root",
|
|
1892
1898
|
"warrant-state-commit",
|
|
1893
1899
|
"warrant-state-root"
|
|
1894
1900
|
],
|
|
1895
|
-
"outputCount":
|
|
1901
|
+
"outputCount": 16,
|
|
1896
1902
|
"surface": "dev-governance",
|
|
1897
1903
|
"capabilityGroup": "governance-versioning",
|
|
1898
1904
|
"status": "active",
|
|
@@ -1961,7 +1967,7 @@
|
|
|
1961
1967
|
"status": "preview",
|
|
1962
1968
|
"owner": "buildchain-workflows",
|
|
1963
1969
|
"maturity": "preview",
|
|
1964
|
-
"introducedVersion": "3.0.9-alpha.
|
|
1970
|
+
"introducedVersion": "3.0.9-alpha.6",
|
|
1965
1971
|
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1966
1972
|
"deprecationReplacement": "",
|
|
1967
1973
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
@@ -1982,7 +1988,7 @@
|
|
|
1982
1988
|
"status": "preview",
|
|
1983
1989
|
"owner": "buildchain-workflows",
|
|
1984
1990
|
"maturity": "preview",
|
|
1985
|
-
"introducedVersion": "3.0.9-alpha.
|
|
1991
|
+
"introducedVersion": "3.0.9-alpha.6",
|
|
1986
1992
|
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
1987
1993
|
"deprecationReplacement": "",
|
|
1988
1994
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
@@ -2003,7 +2009,7 @@
|
|
|
2003
2009
|
"status": "preview",
|
|
2004
2010
|
"owner": "buildchain-workflows",
|
|
2005
2011
|
"maturity": "preview",
|
|
2006
|
-
"introducedVersion": "3.0.9-alpha.
|
|
2012
|
+
"introducedVersion": "3.0.9-alpha.6",
|
|
2007
2013
|
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2008
2014
|
"deprecationReplacement": "",
|
|
2009
2015
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
@@ -2053,7 +2059,7 @@
|
|
|
2053
2059
|
"status": "preview",
|
|
2054
2060
|
"owner": "buildchain-workflows",
|
|
2055
2061
|
"maturity": "preview",
|
|
2056
|
-
"introducedVersion": "3.0.9-alpha.
|
|
2062
|
+
"introducedVersion": "3.0.9-alpha.6",
|
|
2057
2063
|
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2058
2064
|
"deprecationReplacement": "",
|
|
2059
2065
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
package/docs/cli-reference.md
CHANGED
|
@@ -299,7 +299,18 @@ buildchain dev pr-admit --repository <owner/repo> --branch <dev/vN/vN.M> --pull-
|
|
|
299
299
|
- Syntax:
|
|
300
300
|
|
|
301
301
|
```text
|
|
302
|
-
buildchain dev proof <source|verify-source|classify|replay|integration|verify-integration> [--output <file>] [--json]
|
|
302
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
### `buildchain dev proof classify-native`
|
|
306
|
+
|
|
307
|
+
- Help: `buildchain dev proof classify-native --help`
|
|
308
|
+
- Canonical id: `dev`
|
|
309
|
+
- Options: `--json`, `--output`
|
|
310
|
+
- Syntax:
|
|
311
|
+
|
|
312
|
+
```text
|
|
313
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
303
314
|
```
|
|
304
315
|
|
|
305
316
|
### `buildchain dev proof integration`
|
|
@@ -310,7 +321,18 @@ buildchain dev proof <source|verify-source|classify|replay|integration|verify-in
|
|
|
310
321
|
- Syntax:
|
|
311
322
|
|
|
312
323
|
```text
|
|
313
|
-
buildchain dev proof <source|verify-source|classify|replay|integration|verify-integration> [--output <file>] [--json]
|
|
324
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
### `buildchain dev proof native`
|
|
328
|
+
|
|
329
|
+
- Help: `buildchain dev proof native --help`
|
|
330
|
+
- Canonical id: `dev`
|
|
331
|
+
- Options: `--json`, `--output`
|
|
332
|
+
- Syntax:
|
|
333
|
+
|
|
334
|
+
```text
|
|
335
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
314
336
|
```
|
|
315
337
|
|
|
316
338
|
### `buildchain dev proof replay`
|
|
@@ -321,7 +343,7 @@ buildchain dev proof <source|verify-source|classify|replay|integration|verify-in
|
|
|
321
343
|
- Syntax:
|
|
322
344
|
|
|
323
345
|
```text
|
|
324
|
-
buildchain dev proof <source|verify-source|classify|replay|integration|verify-integration> [--output <file>] [--json]
|
|
346
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
325
347
|
```
|
|
326
348
|
|
|
327
349
|
### `buildchain dev proof source`
|
|
@@ -332,7 +354,7 @@ buildchain dev proof <source|verify-source|classify|replay|integration|verify-in
|
|
|
332
354
|
- Syntax:
|
|
333
355
|
|
|
334
356
|
```text
|
|
335
|
-
buildchain dev proof <source|verify-source|classify|replay|integration|verify-integration> [--output <file>] [--json]
|
|
357
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
336
358
|
```
|
|
337
359
|
|
|
338
360
|
### `buildchain dev proof verify-integration`
|
|
@@ -343,7 +365,29 @@ buildchain dev proof <source|verify-source|classify|replay|integration|verify-in
|
|
|
343
365
|
- Syntax:
|
|
344
366
|
|
|
345
367
|
```text
|
|
346
|
-
buildchain dev proof <source|verify-source|classify|replay|integration|verify-integration> [--output <file>] [--json]
|
|
368
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
369
|
+
```
|
|
370
|
+
|
|
371
|
+
### `buildchain dev proof verify-native`
|
|
372
|
+
|
|
373
|
+
- Help: `buildchain dev proof verify-native --help`
|
|
374
|
+
- Canonical id: `dev`
|
|
375
|
+
- Options: `--json`, `--output`
|
|
376
|
+
- Syntax:
|
|
377
|
+
|
|
378
|
+
```text
|
|
379
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
### `buildchain dev proof verify-native-reuse`
|
|
383
|
+
|
|
384
|
+
- Help: `buildchain dev proof verify-native-reuse --help`
|
|
385
|
+
- Canonical id: `dev`
|
|
386
|
+
- Options: `--json`, `--output`
|
|
387
|
+
- Syntax:
|
|
388
|
+
|
|
389
|
+
```text
|
|
390
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
347
391
|
```
|
|
348
392
|
|
|
349
393
|
### `buildchain dev proof verify-source`
|
|
@@ -354,7 +398,18 @@ buildchain dev proof <source|verify-source|classify|replay|integration|verify-in
|
|
|
354
398
|
- Syntax:
|
|
355
399
|
|
|
356
400
|
```text
|
|
357
|
-
buildchain dev proof <source|verify-source|classify|replay|integration|verify-integration> [--output <file>] [--json]
|
|
401
|
+
buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]
|
|
402
|
+
```
|
|
403
|
+
|
|
404
|
+
### `buildchain dev two-phase`
|
|
405
|
+
|
|
406
|
+
- Help: `buildchain dev two-phase --help`
|
|
407
|
+
- Canonical id: `dev`
|
|
408
|
+
- Options: `--branch`, `--expected-head`, `--native-command`, `--native-proof`, `--pull-request`, `--repository`, `--warrant-result`
|
|
409
|
+
- Syntax:
|
|
410
|
+
|
|
411
|
+
```text
|
|
412
|
+
buildchain dev two-phase --repository <owner/repo> --branch <dev/vN/vN.M> --pull-request <n> --expected-head <sha> --warrant-result <file> [--native-proof <file>] [--native-command <command>]
|
|
358
413
|
```
|
|
359
414
|
|
|
360
415
|
### `buildchain dev warrant cancel-queued`
|
|
@@ -365,7 +420,7 @@ buildchain dev proof <source|verify-source|classify|replay|integration|verify-in
|
|
|
365
420
|
- Syntax:
|
|
366
421
|
|
|
367
422
|
```text
|
|
368
|
-
buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
423
|
+
buildchain dev warrant <submit|select|heartbeat|qualify|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
369
424
|
```
|
|
370
425
|
|
|
371
426
|
### `buildchain dev warrant close`
|
|
@@ -376,7 +431,7 @@ buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|obse
|
|
|
376
431
|
- Syntax:
|
|
377
432
|
|
|
378
433
|
```text
|
|
379
|
-
buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
434
|
+
buildchain dev warrant <submit|select|heartbeat|qualify|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
380
435
|
```
|
|
381
436
|
|
|
382
437
|
### `buildchain dev warrant heartbeat`
|
|
@@ -387,7 +442,7 @@ buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|obse
|
|
|
387
442
|
- Syntax:
|
|
388
443
|
|
|
389
444
|
```text
|
|
390
|
-
buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
445
|
+
buildchain dev warrant <submit|select|heartbeat|qualify|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
391
446
|
```
|
|
392
447
|
|
|
393
448
|
### `buildchain dev warrant observe`
|
|
@@ -398,7 +453,18 @@ buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|obse
|
|
|
398
453
|
- Syntax:
|
|
399
454
|
|
|
400
455
|
```text
|
|
401
|
-
buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
456
|
+
buildchain dev warrant <submit|select|heartbeat|qualify|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
### `buildchain dev warrant qualify`
|
|
460
|
+
|
|
461
|
+
- Help: `buildchain dev warrant qualify --help`
|
|
462
|
+
- Canonical id: `dev`
|
|
463
|
+
- Options: `--branch`, `--execute`, `--json`, `--output`, `--repository`
|
|
464
|
+
- Syntax:
|
|
465
|
+
|
|
466
|
+
```text
|
|
467
|
+
buildchain dev warrant <submit|select|heartbeat|qualify|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
402
468
|
```
|
|
403
469
|
|
|
404
470
|
### `buildchain dev warrant recover`
|
|
@@ -409,7 +475,7 @@ buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|obse
|
|
|
409
475
|
- Syntax:
|
|
410
476
|
|
|
411
477
|
```text
|
|
412
|
-
buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
478
|
+
buildchain dev warrant <submit|select|heartbeat|qualify|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
413
479
|
```
|
|
414
480
|
|
|
415
481
|
### `buildchain dev warrant select`
|
|
@@ -420,7 +486,7 @@ buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|obse
|
|
|
420
486
|
- Syntax:
|
|
421
487
|
|
|
422
488
|
```text
|
|
423
|
-
buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
489
|
+
buildchain dev warrant <submit|select|heartbeat|qualify|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
424
490
|
```
|
|
425
491
|
|
|
426
492
|
### `buildchain dev warrant submit`
|
|
@@ -431,7 +497,7 @@ buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|obse
|
|
|
431
497
|
- Syntax:
|
|
432
498
|
|
|
433
499
|
```text
|
|
434
|
-
buildchain dev warrant <submit|select|heartbeat|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
500
|
+
buildchain dev warrant <submit|select|heartbeat|qualify|recover|close|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]
|
|
435
501
|
```
|
|
436
502
|
|
|
437
503
|
## `diagnostics`
|