@kungfu-tech/buildchain 3.0.6-alpha.2 → 3.0.6-alpha.3
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/contracts/release-candidate-recovery-v1.schema.json +102 -0
- package/dist/site/buildchain-contract.json +100 -25
- package/dist/site/buildchain-site.json +23 -13
- package/dist/site/capability-registry.json +2 -2
- package/dist/site/controller-registry.json +38 -2
- package/dist/site/kfd-claims.json +52 -8
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +3 -3
- package/dist/site/node-api-registry.json +153 -13
- package/dist/site/page-registry.json +16 -6
- package/dist/site/public-surface-audit.json +42 -7
- package/dist/site/publication-authority-registry.json +6 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +1 -0
- package/dist/site/site-manifest.json +7 -7
- package/dist/site/workflow-registry.json +49 -4
- package/docs/node-api-reference.md +42 -23
- package/docs/publish-transaction.md +10 -1
- package/docs/release-candidate.md +87 -10
- package/package.json +2 -1
- package/packages/core/buildchain-contract.js +30 -2
- package/packages/core/index.js +7 -0
- package/packages/core/release-candidate-recovery.js +386 -0
- package/scripts/check-inventory.mjs +12 -2
- package/scripts/release-candidate-resolver.mjs +35 -3
- package/scripts/resume-from-candidate-run.mjs +498 -0
- package/scripts/site-capability-metadata.mjs +1 -0
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"manualCount": 5,
|
|
52
52
|
"pageCount": 5,
|
|
53
53
|
"cliCommandCount": 25,
|
|
54
|
-
"nodeApiCount":
|
|
54
|
+
"nodeApiCount": 12,
|
|
55
55
|
"workflowCount": 3,
|
|
56
56
|
"actionCount": 2
|
|
57
57
|
},
|
|
@@ -292,7 +292,7 @@
|
|
|
292
292
|
"pageCount": 10,
|
|
293
293
|
"cliCommandCount": 0,
|
|
294
294
|
"nodeApiCount": 2,
|
|
295
|
-
"workflowCount":
|
|
295
|
+
"workflowCount": 40,
|
|
296
296
|
"actionCount": 1
|
|
297
297
|
},
|
|
298
298
|
"manuals": [
|
|
@@ -2091,6 +2091,42 @@
|
|
|
2091
2091
|
"classification": "included",
|
|
2092
2092
|
"source": "workflow-call-input"
|
|
2093
2093
|
},
|
|
2094
|
+
"resume-buildchain-runtime-sha": {
|
|
2095
|
+
"classification": "included",
|
|
2096
|
+
"source": "workflow-call-input"
|
|
2097
|
+
},
|
|
2098
|
+
"resume-candidate-repository": {
|
|
2099
|
+
"classification": "included",
|
|
2100
|
+
"source": "workflow-call-input"
|
|
2101
|
+
},
|
|
2102
|
+
"resume-candidate-run-id": {
|
|
2103
|
+
"classification": "included",
|
|
2104
|
+
"source": "workflow-call-input"
|
|
2105
|
+
},
|
|
2106
|
+
"resume-expected-candidate-root": {
|
|
2107
|
+
"classification": "included",
|
|
2108
|
+
"source": "workflow-call-input"
|
|
2109
|
+
},
|
|
2110
|
+
"resume-expected-candidate-runtime-sha": {
|
|
2111
|
+
"classification": "included",
|
|
2112
|
+
"source": "workflow-call-input"
|
|
2113
|
+
},
|
|
2114
|
+
"resume-expected-source-tree": {
|
|
2115
|
+
"classification": "included",
|
|
2116
|
+
"source": "workflow-call-input"
|
|
2117
|
+
},
|
|
2118
|
+
"resume-expected-workflow-file": {
|
|
2119
|
+
"classification": "included",
|
|
2120
|
+
"source": "workflow-call-input"
|
|
2121
|
+
},
|
|
2122
|
+
"resume-expected-workflow-name": {
|
|
2123
|
+
"classification": "included",
|
|
2124
|
+
"source": "workflow-call-input"
|
|
2125
|
+
},
|
|
2126
|
+
"resume-transaction-id": {
|
|
2127
|
+
"classification": "included",
|
|
2128
|
+
"source": "workflow-call-input"
|
|
2129
|
+
},
|
|
2094
2130
|
"runner-preset": {
|
|
2095
2131
|
"classification": "digest-only",
|
|
2096
2132
|
"source": "workflow-call-input"
|
|
@@ -2153,7 +2189,7 @@
|
|
|
2153
2189
|
"controller-receipt"
|
|
2154
2190
|
]
|
|
2155
2191
|
},
|
|
2156
|
-
"digest": "sha256:
|
|
2192
|
+
"digest": "sha256:bc03b3ac295e33b738fe5168e14ebf4d0fabf2325b4ae4a3d2b3c12afe816068"
|
|
2157
2193
|
},
|
|
2158
2194
|
{
|
|
2159
2195
|
"schemaVersion": 1,
|
|
@@ -2346,5 +2382,5 @@
|
|
|
2346
2382
|
"digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555"
|
|
2347
2383
|
}
|
|
2348
2384
|
],
|
|
2349
|
-
"digest": "sha256:
|
|
2385
|
+
"digest": "sha256:cc205cd0abe4ba5023d8afc38dea9d3f17c06f4a3622a6b8ccd3fc90b10e3fb7"
|
|
2350
2386
|
}
|
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
},
|
|
15
15
|
"runtimeContract": {
|
|
16
16
|
"contract": "kungfu-buildchain-runtime-contract-world",
|
|
17
|
-
"compatibilityDigest": "sha256:
|
|
17
|
+
"compatibilityDigest": "sha256:80cfdf1786019217c439810f1a80d2866bf8f7ef35a6fa569e1a687fb2bf4cbe",
|
|
18
18
|
"majorLine": "v3"
|
|
19
19
|
},
|
|
20
20
|
"publicSurfaceReverseAudit": {
|
|
21
21
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
22
22
|
"path": "dist/site/public-surface-audit.json",
|
|
23
23
|
"status": "passed",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "0bf7f1ba89493e333e8eaf266373f7fefb11c0c7d3b3e7dd7a98d753695e02d5",
|
|
25
25
|
"summary": {
|
|
26
26
|
"cliCommandCount": 112,
|
|
27
|
-
"workflowCount":
|
|
27
|
+
"workflowCount": 64,
|
|
28
28
|
"actionCount": 6,
|
|
29
29
|
"sitePageCount": 65,
|
|
30
30
|
"docCommandRefCount": 881,
|
|
@@ -246,10 +246,10 @@
|
|
|
246
246
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
247
247
|
"path": "dist/site/public-surface-audit.json",
|
|
248
248
|
"status": "passed",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "0bf7f1ba89493e333e8eaf266373f7fefb11c0c7d3b3e7dd7a98d753695e02d5",
|
|
250
250
|
"summary": {
|
|
251
251
|
"cliCommandCount": 112,
|
|
252
|
-
"workflowCount":
|
|
252
|
+
"workflowCount": 64,
|
|
253
253
|
"actionCount": 6,
|
|
254
254
|
"sitePageCount": 65,
|
|
255
255
|
"docCommandRefCount": 881,
|
|
@@ -1628,6 +1628,18 @@
|
|
|
1628
1628
|
"public": true,
|
|
1629
1629
|
"packageExport": "./release-candidate"
|
|
1630
1630
|
},
|
|
1631
|
+
{
|
|
1632
|
+
"id": "export:./release-candidate-recovery",
|
|
1633
|
+
"name": "@kungfu-tech/buildchain/release-candidate-recovery",
|
|
1634
|
+
"kind": "package-export",
|
|
1635
|
+
"sourcePath": "packages/core/release-candidate-recovery.js",
|
|
1636
|
+
"evidencePath": "packages/core/release-candidate-recovery.js",
|
|
1637
|
+
"availability": "shipped",
|
|
1638
|
+
"visibility": "public",
|
|
1639
|
+
"participantFacing": true,
|
|
1640
|
+
"public": true,
|
|
1641
|
+
"packageExport": "./release-candidate-recovery"
|
|
1642
|
+
},
|
|
1631
1643
|
{
|
|
1632
1644
|
"id": "export:./stable-candidate-ledger",
|
|
1633
1645
|
"name": "@kungfu-tech/buildchain/stable-candidate-ledger",
|
|
@@ -3582,7 +3594,7 @@
|
|
|
3582
3594
|
"visibility": "public",
|
|
3583
3595
|
"participantFacing": true,
|
|
3584
3596
|
"public": true,
|
|
3585
|
-
"inputCount":
|
|
3597
|
+
"inputCount": 106,
|
|
3586
3598
|
"inputs": [
|
|
3587
3599
|
"allow-repository",
|
|
3588
3600
|
"artifact-name",
|
|
@@ -3676,6 +3688,15 @@
|
|
|
3676
3688
|
"release-propagation-config-path",
|
|
3677
3689
|
"required-artifact-count",
|
|
3678
3690
|
"required-status-check",
|
|
3691
|
+
"resume-buildchain-runtime-sha",
|
|
3692
|
+
"resume-candidate-repository",
|
|
3693
|
+
"resume-candidate-run-id",
|
|
3694
|
+
"resume-expected-candidate-root",
|
|
3695
|
+
"resume-expected-candidate-runtime-sha",
|
|
3696
|
+
"resume-expected-source-tree",
|
|
3697
|
+
"resume-expected-workflow-file",
|
|
3698
|
+
"resume-expected-workflow-name",
|
|
3699
|
+
"resume-transaction-id",
|
|
3679
3700
|
"runner-preset",
|
|
3680
3701
|
"standalone-binary-distribution",
|
|
3681
3702
|
"target-ref",
|
|
@@ -4197,6 +4218,20 @@
|
|
|
4197
4218
|
"inputs": [],
|
|
4198
4219
|
"reverseAuditSource": ".github/workflows"
|
|
4199
4220
|
},
|
|
4221
|
+
{
|
|
4222
|
+
"id": "workflow:buildchain-candidate-recovery-dogfood-failure",
|
|
4223
|
+
"name": "workflow:buildchain-candidate-recovery-dogfood-failure",
|
|
4224
|
+
"kind": "workflow",
|
|
4225
|
+
"sourcePath": ".github/workflows/buildchain-candidate-recovery-dogfood-failure.yml",
|
|
4226
|
+
"evidencePath": ".github/workflows/buildchain-candidate-recovery-dogfood-failure.yml",
|
|
4227
|
+
"availability": "shipped",
|
|
4228
|
+
"visibility": "public",
|
|
4229
|
+
"participantFacing": true,
|
|
4230
|
+
"public": true,
|
|
4231
|
+
"inputCount": 0,
|
|
4232
|
+
"inputs": [],
|
|
4233
|
+
"reverseAuditSource": ".github/workflows"
|
|
4234
|
+
},
|
|
4200
4235
|
{
|
|
4201
4236
|
"id": "workflow:buildchain-dev-delivery",
|
|
4202
4237
|
"name": "workflow:buildchain-dev-delivery",
|
|
@@ -4822,7 +4857,7 @@
|
|
|
4822
4857
|
"visibility": "public",
|
|
4823
4858
|
"participantFacing": true,
|
|
4824
4859
|
"public": true,
|
|
4825
|
-
"inputCount":
|
|
4860
|
+
"inputCount": 98,
|
|
4826
4861
|
"inputs": [
|
|
4827
4862
|
"allow-repository",
|
|
4828
4863
|
"artifact-name",
|
|
@@ -4908,6 +4943,15 @@
|
|
|
4908
4943
|
"release-propagation-config-path",
|
|
4909
4944
|
"required-artifact-count",
|
|
4910
4945
|
"required-status-check",
|
|
4946
|
+
"resume-buildchain-runtime-sha",
|
|
4947
|
+
"resume-candidate-repository",
|
|
4948
|
+
"resume-candidate-run-id",
|
|
4949
|
+
"resume-expected-candidate-root",
|
|
4950
|
+
"resume-expected-candidate-runtime-sha",
|
|
4951
|
+
"resume-expected-source-tree",
|
|
4952
|
+
"resume-expected-workflow-file",
|
|
4953
|
+
"resume-expected-workflow-name",
|
|
4954
|
+
"resume-transaction-id",
|
|
4911
4955
|
"runner-preset",
|
|
4912
4956
|
"standalone-binary-distribution",
|
|
4913
4957
|
"target-ref",
|
|
@@ -6303,6 +6347,6 @@
|
|
|
6303
6347
|
}
|
|
6304
6348
|
}
|
|
6305
6349
|
],
|
|
6306
|
-
"publicSurfaceCount":
|
|
6350
|
+
"publicSurfaceCount": 401
|
|
6307
6351
|
}
|
|
6308
6352
|
}
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"title": "Release Candidate Passport",
|
|
137
137
|
"path": "docs/release-candidate.md",
|
|
138
138
|
"plane": "verify",
|
|
139
|
-
"digest": "sha256:
|
|
139
|
+
"digest": "sha256:71161bb57229fe6b66ca131189d3ff3f1dd1a8ca7f6894aa1f596827cb8167f3",
|
|
140
140
|
"capabilityGroup": "reusable-build",
|
|
141
141
|
"audience": [
|
|
142
142
|
"release-operator",
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
"title": "Generated Node API reference",
|
|
333
333
|
"path": "docs/node-api-reference.md",
|
|
334
334
|
"plane": "use",
|
|
335
|
-
"digest": "sha256:
|
|
335
|
+
"digest": "sha256:3fbfe0227cf929f0ddc2050605d071643cee0b302a4c31920b4f9047c923ae8c",
|
|
336
336
|
"capabilityGroup": "api-cli-reference",
|
|
337
337
|
"audience": [
|
|
338
338
|
"agent",
|
|
@@ -417,7 +417,7 @@
|
|
|
417
417
|
"title": "Publish transaction",
|
|
418
418
|
"path": "docs/publish-transaction.md",
|
|
419
419
|
"plane": "verify",
|
|
420
|
-
"digest": "sha256:
|
|
420
|
+
"digest": "sha256:72466943bb459f6857f23ac6f92bcf4714dcd2f535c38a9f0e34864b36404e06",
|
|
421
421
|
"capabilityGroup": "release-passport-trust",
|
|
422
422
|
"audience": [
|
|
423
423
|
"release-operator"
|
|
@@ -1881,7 +1881,7 @@
|
|
|
1881
1881
|
],
|
|
1882
1882
|
"source": {
|
|
1883
1883
|
"path": "packages/core/buildchain-contract.js",
|
|
1884
|
-
"line":
|
|
1884
|
+
"line": 973
|
|
1885
1885
|
},
|
|
1886
1886
|
"example": "import { contractSummary } from \"@kungfu-tech/buildchain\";",
|
|
1887
1887
|
"maturity": "stable",
|
|
@@ -1910,7 +1910,7 @@
|
|
|
1910
1910
|
],
|
|
1911
1911
|
"source": {
|
|
1912
1912
|
"path": "packages/core/buildchain-contract.js",
|
|
1913
|
-
"line":
|
|
1913
|
+
"line": 815
|
|
1914
1914
|
},
|
|
1915
1915
|
"example": "import { createBuildchainContractLock } from \"@kungfu-tech/buildchain\";",
|
|
1916
1916
|
"maturity": "stable",
|
|
@@ -1968,7 +1968,7 @@
|
|
|
1968
1968
|
],
|
|
1969
1969
|
"source": {
|
|
1970
1970
|
"path": "packages/core/buildchain-contract.js",
|
|
1971
|
-
"line":
|
|
1971
|
+
"line": 881
|
|
1972
1972
|
},
|
|
1973
1973
|
"example": "import { evaluateBuildchainContractLock } from \"@kungfu-tech/buildchain\";",
|
|
1974
1974
|
"maturity": "stable",
|
|
@@ -1997,7 +1997,7 @@
|
|
|
1997
1997
|
],
|
|
1998
1998
|
"source": {
|
|
1999
1999
|
"path": "packages/core/buildchain-contract.js",
|
|
2000
|
-
"line":
|
|
2000
|
+
"line": 790
|
|
2001
2001
|
},
|
|
2002
2002
|
"example": "import { finalizeBuildchainContractWorld } from \"@kungfu-tech/buildchain\";",
|
|
2003
2003
|
"maturity": "stable",
|
|
@@ -2026,7 +2026,7 @@
|
|
|
2026
2026
|
],
|
|
2027
2027
|
"source": {
|
|
2028
2028
|
"path": "packages/core/buildchain-contract.js",
|
|
2029
|
-
"line":
|
|
2029
|
+
"line": 866
|
|
2030
2030
|
},
|
|
2031
2031
|
"example": "import { readBuildchainContractLock } from \"@kungfu-tech/buildchain\";",
|
|
2032
2032
|
"maturity": "stable",
|
|
@@ -2055,7 +2055,7 @@
|
|
|
2055
2055
|
],
|
|
2056
2056
|
"source": {
|
|
2057
2057
|
"path": "packages/core/buildchain-contract.js",
|
|
2058
|
-
"line":
|
|
2058
|
+
"line": 846
|
|
2059
2059
|
},
|
|
2060
2060
|
"example": "import { readBuildchainContractWorld } from \"@kungfu-tech/buildchain\";",
|
|
2061
2061
|
"maturity": "stable",
|
|
@@ -2084,7 +2084,7 @@
|
|
|
2084
2084
|
],
|
|
2085
2085
|
"source": {
|
|
2086
2086
|
"path": "packages/core/buildchain-contract.js",
|
|
2087
|
-
"line":
|
|
2087
|
+
"line": 985
|
|
2088
2088
|
},
|
|
2089
2089
|
"example": "import { renderBuildchainContractDriftIssueBody } from \"@kungfu-tech/buildchain\";",
|
|
2090
2090
|
"maturity": "stable",
|
|
@@ -14780,6 +14780,112 @@
|
|
|
14780
14780
|
"agent"
|
|
14781
14781
|
]
|
|
14782
14782
|
},
|
|
14783
|
+
{
|
|
14784
|
+
"id": "packages/core/release-candidate-recovery.js#recoveryFailure",
|
|
14785
|
+
"name": "recoveryFailure",
|
|
14786
|
+
"kind": "function",
|
|
14787
|
+
"signature": "function recoveryFailure(error)",
|
|
14788
|
+
"parameters": [
|
|
14789
|
+
{
|
|
14790
|
+
"name": "error",
|
|
14791
|
+
"signature": "error"
|
|
14792
|
+
}
|
|
14793
|
+
],
|
|
14794
|
+
"returns": "unknown",
|
|
14795
|
+
"errors": [
|
|
14796
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
14797
|
+
],
|
|
14798
|
+
"sideEffects": [
|
|
14799
|
+
"none-detected-by-static-source-scan"
|
|
14800
|
+
],
|
|
14801
|
+
"source": {
|
|
14802
|
+
"path": "packages/core/release-candidate-recovery.js",
|
|
14803
|
+
"line": 376
|
|
14804
|
+
},
|
|
14805
|
+
"example": "import { recoveryFailure } from \"@kungfu-tech/buildchain\";",
|
|
14806
|
+
"maturity": "stable",
|
|
14807
|
+
"audience": [
|
|
14808
|
+
"developer",
|
|
14809
|
+
"agent"
|
|
14810
|
+
]
|
|
14811
|
+
},
|
|
14812
|
+
{
|
|
14813
|
+
"id": "packages/core/release-candidate-recovery.js#RELEASE_CANDIDATE_RECOVERY_CONTRACT",
|
|
14814
|
+
"name": "RELEASE_CANDIDATE_RECOVERY_CONTRACT",
|
|
14815
|
+
"kind": "constant",
|
|
14816
|
+
"signature": "const RELEASE_CANDIDATE_RECOVERY_CONTRACT",
|
|
14817
|
+
"parameters": [],
|
|
14818
|
+
"returns": "value",
|
|
14819
|
+
"errors": [
|
|
14820
|
+
"Import does not declare a throw contract."
|
|
14821
|
+
],
|
|
14822
|
+
"sideEffects": [
|
|
14823
|
+
"none-on-import"
|
|
14824
|
+
],
|
|
14825
|
+
"source": {
|
|
14826
|
+
"path": "packages/core/release-candidate-recovery.js",
|
|
14827
|
+
"line": 11
|
|
14828
|
+
},
|
|
14829
|
+
"example": "import { RELEASE_CANDIDATE_RECOVERY_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
14830
|
+
"maturity": "stable",
|
|
14831
|
+
"audience": [
|
|
14832
|
+
"developer",
|
|
14833
|
+
"agent"
|
|
14834
|
+
]
|
|
14835
|
+
},
|
|
14836
|
+
{
|
|
14837
|
+
"id": "packages/core/release-candidate-recovery.js#ReleaseCandidateRecoveryError",
|
|
14838
|
+
"name": "ReleaseCandidateRecoveryError",
|
|
14839
|
+
"kind": "class",
|
|
14840
|
+
"signature": "class ReleaseCandidateRecoveryError",
|
|
14841
|
+
"parameters": [],
|
|
14842
|
+
"returns": "ReleaseCandidateRecoveryError",
|
|
14843
|
+
"errors": [
|
|
14844
|
+
"Construction and method errors follow the linked source implementation."
|
|
14845
|
+
],
|
|
14846
|
+
"sideEffects": [
|
|
14847
|
+
"class-dependent"
|
|
14848
|
+
],
|
|
14849
|
+
"source": {
|
|
14850
|
+
"path": "packages/core/release-candidate-recovery.js",
|
|
14851
|
+
"line": 18
|
|
14852
|
+
},
|
|
14853
|
+
"example": "import { ReleaseCandidateRecoveryError } from \"@kungfu-tech/buildchain\";",
|
|
14854
|
+
"maturity": "stable",
|
|
14855
|
+
"audience": [
|
|
14856
|
+
"developer",
|
|
14857
|
+
"agent"
|
|
14858
|
+
]
|
|
14859
|
+
},
|
|
14860
|
+
{
|
|
14861
|
+
"id": "packages/core/release-candidate-recovery.js#verifyReleaseCandidateRecovery",
|
|
14862
|
+
"name": "verifyReleaseCandidateRecovery",
|
|
14863
|
+
"kind": "function",
|
|
14864
|
+
"signature": "function verifyReleaseCandidateRecovery({ candidateRepository, targetRepository, expectedRunId, expectedWorkflowFile, expectedWorkflowName, channel, targetRef, targetSha, targetTree, expectedSourceTree = \"\", expectedCandidateRoot = \"\", expectedRuntimeSha, expectedTransactionId = \"\", existingTransaction = undefined, run, workflow, pullRequest, ancestry, passport, buildSummary, controllerReceipts = [], platformManifests = [], productPayloadManifests = [], artifacts = [], currentToolingSha, recoveryRunId = \"\", createdAt = new Date().toISOString(), } = {})",
|
|
14865
|
+
"parameters": [
|
|
14866
|
+
{
|
|
14867
|
+
"name": "parameter1",
|
|
14868
|
+
"signature": "{ candidateRepository, targetRepository, expectedRunId, expectedWorkflowFile, expectedWorkflowName, channel, targetRef, targetSha, targetTree, expectedSourceTree = \"\", expectedCandidateRoot = \"\", expectedRuntimeSha, expectedTransactionId = \"\", existingTransaction = undefined, run, workflow, pullRequest, ancestry, passport, buildSummary, controllerReceipts = [], platformManifests = [], productPayloadManifests = [], artifacts = [], currentToolingSha, recoveryRunId = \"\", createdAt = new Date().toISOString(), } = {}"
|
|
14869
|
+
}
|
|
14870
|
+
],
|
|
14871
|
+
"returns": "unknown",
|
|
14872
|
+
"errors": [
|
|
14873
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
14874
|
+
],
|
|
14875
|
+
"sideEffects": [
|
|
14876
|
+
"none-detected-by-static-source-scan"
|
|
14877
|
+
],
|
|
14878
|
+
"source": {
|
|
14879
|
+
"path": "packages/core/release-candidate-recovery.js",
|
|
14880
|
+
"line": 256
|
|
14881
|
+
},
|
|
14882
|
+
"example": "import { verifyReleaseCandidateRecovery } from \"@kungfu-tech/buildchain\";",
|
|
14883
|
+
"maturity": "stable",
|
|
14884
|
+
"audience": [
|
|
14885
|
+
"developer",
|
|
14886
|
+
"agent"
|
|
14887
|
+
]
|
|
14888
|
+
},
|
|
14783
14889
|
{
|
|
14784
14890
|
"id": "packages/core/release-candidate.js#createReleaseCandidatePassport",
|
|
14785
14891
|
"name": "createReleaseCandidatePassport",
|
|
@@ -17516,14 +17622,14 @@
|
|
|
17516
17622
|
"specifier": "@kungfu-tech/buildchain",
|
|
17517
17623
|
"export": ".",
|
|
17518
17624
|
"target": "./packages/core/index.js",
|
|
17519
|
-
"digest": "sha256:
|
|
17625
|
+
"digest": "sha256:6f22c5a7afd733e03d948cd322e01f7255b973780c89a70892c869eb3c15d05f",
|
|
17520
17626
|
"summary": "Root toolkit export for Buildchain's public Node API.",
|
|
17521
17627
|
"capabilityGroup": "api-cli-reference",
|
|
17522
17628
|
"audience": [
|
|
17523
17629
|
"developer",
|
|
17524
17630
|
"agent"
|
|
17525
17631
|
],
|
|
17526
|
-
"symbolCount":
|
|
17632
|
+
"symbolCount": 562,
|
|
17527
17633
|
"symbolIds": [
|
|
17528
17634
|
"packages/core/release-activation-transaction.js#abortReleaseActivationTransaction",
|
|
17529
17635
|
"packages/core/release-passport.js#AGENT_INDEX_CONTRACT",
|
|
@@ -17944,6 +18050,7 @@
|
|
|
17944
18050
|
"packages/core/publish-transaction.js#readReleaseTransaction",
|
|
17945
18051
|
"packages/core/release-activation-transaction.js#recordReleaseActivationPhase",
|
|
17946
18052
|
"packages/core/release-propagation-work-transitions.js#recordReleasePropagationStage",
|
|
18053
|
+
"packages/core/release-candidate-recovery.js#recoveryFailure",
|
|
17947
18054
|
"packages/core/logging.js#redactBuildchainLogAttributes",
|
|
17948
18055
|
"packages/core/diagnostics.js#redactDiagnosticsValue",
|
|
17949
18056
|
"packages/core/issue-reporting.js#redactIssueText",
|
|
@@ -17953,6 +18060,7 @@
|
|
|
17953
18060
|
"packages/core/release-activation-transaction.js#RELEASE_ACTIVATION_PHASES",
|
|
17954
18061
|
"packages/core/release-activation-transaction.js#RELEASE_ACTIVATION_RECEIPT_SET_CONTRACT",
|
|
17955
18062
|
"packages/core/release-candidate.js#RELEASE_CANDIDATE_PASSPORT_CONTRACT",
|
|
18063
|
+
"packages/core/release-candidate-recovery.js#RELEASE_CANDIDATE_RECOVERY_CONTRACT",
|
|
17956
18064
|
"packages/core/release-passport.js#RELEASE_CHECK_REPORT_CONTRACT",
|
|
17957
18065
|
"packages/core/release-passport.js#RELEASE_EVIDENCE_ATTACHMENT_CONTRACT",
|
|
17958
18066
|
"packages/core/release-passport-contract.js#RELEASE_PASSPORT_CHECK_MANIFEST_CONTRACT",
|
|
@@ -17971,6 +18079,7 @@
|
|
|
17971
18079
|
"packages/core/release-propagation-work-constants.js#RELEASE_PROPAGATION_WORK_CONTRACT",
|
|
17972
18080
|
"packages/core/release-propagation-work-constants.js#RELEASE_PROPAGATION_WORK_STAGES",
|
|
17973
18081
|
"packages/core/release-activation-transaction.js#releaseActivationRoot",
|
|
18082
|
+
"packages/core/release-candidate-recovery.js#ReleaseCandidateRecoveryError",
|
|
17974
18083
|
"packages/core/readme-badges.js#renderBadgeBundleBlock",
|
|
17975
18084
|
"packages/core/buildchain-contract.js#renderBuildchainContractDriftIssueBody",
|
|
17976
18085
|
"packages/core/homebrew.js#renderHomebrewFormula",
|
|
@@ -18065,6 +18174,7 @@
|
|
|
18065
18174
|
"packages/core/publication-authority.js#verifyPublicationQualificationReceipt",
|
|
18066
18175
|
"packages/core/publication-reproducibility.js#verifyPublicationReproducibility",
|
|
18067
18176
|
"packages/core/publication-sealed-bundle.js#verifyPublicationSealedBundle",
|
|
18177
|
+
"packages/core/release-candidate-recovery.js#verifyReleaseCandidateRecovery",
|
|
18068
18178
|
"packages/core/release-passport.js#verifyReleasePassport",
|
|
18069
18179
|
"packages/core/release-propagation-work.js#verifyReleasePropagationWork",
|
|
18070
18180
|
"packages/core/web-surface-publication-candidate.js#WEB_SURFACE_PRODUCTION_DECISION_CONTRACT",
|
|
@@ -18172,14 +18282,14 @@
|
|
|
18172
18282
|
"specifier": "@kungfu-tech/buildchain/core",
|
|
18173
18283
|
"export": "./core",
|
|
18174
18284
|
"target": "./packages/core/index.js",
|
|
18175
|
-
"digest": "sha256:
|
|
18285
|
+
"digest": "sha256:6f22c5a7afd733e03d948cd322e01f7255b973780c89a70892c869eb3c15d05f",
|
|
18176
18286
|
"summary": "Alias for the root public toolkit export.",
|
|
18177
18287
|
"capabilityGroup": "api-cli-reference",
|
|
18178
18288
|
"audience": [
|
|
18179
18289
|
"developer",
|
|
18180
18290
|
"agent"
|
|
18181
18291
|
],
|
|
18182
|
-
"symbolCount":
|
|
18292
|
+
"symbolCount": 562,
|
|
18183
18293
|
"symbolIds": [
|
|
18184
18294
|
"packages/core/release-activation-transaction.js#abortReleaseActivationTransaction",
|
|
18185
18295
|
"packages/core/release-passport.js#AGENT_INDEX_CONTRACT",
|
|
@@ -18600,6 +18710,7 @@
|
|
|
18600
18710
|
"packages/core/publish-transaction.js#readReleaseTransaction",
|
|
18601
18711
|
"packages/core/release-activation-transaction.js#recordReleaseActivationPhase",
|
|
18602
18712
|
"packages/core/release-propagation-work-transitions.js#recordReleasePropagationStage",
|
|
18713
|
+
"packages/core/release-candidate-recovery.js#recoveryFailure",
|
|
18603
18714
|
"packages/core/logging.js#redactBuildchainLogAttributes",
|
|
18604
18715
|
"packages/core/diagnostics.js#redactDiagnosticsValue",
|
|
18605
18716
|
"packages/core/issue-reporting.js#redactIssueText",
|
|
@@ -18609,6 +18720,7 @@
|
|
|
18609
18720
|
"packages/core/release-activation-transaction.js#RELEASE_ACTIVATION_PHASES",
|
|
18610
18721
|
"packages/core/release-activation-transaction.js#RELEASE_ACTIVATION_RECEIPT_SET_CONTRACT",
|
|
18611
18722
|
"packages/core/release-candidate.js#RELEASE_CANDIDATE_PASSPORT_CONTRACT",
|
|
18723
|
+
"packages/core/release-candidate-recovery.js#RELEASE_CANDIDATE_RECOVERY_CONTRACT",
|
|
18612
18724
|
"packages/core/release-passport.js#RELEASE_CHECK_REPORT_CONTRACT",
|
|
18613
18725
|
"packages/core/release-passport.js#RELEASE_EVIDENCE_ATTACHMENT_CONTRACT",
|
|
18614
18726
|
"packages/core/release-passport-contract.js#RELEASE_PASSPORT_CHECK_MANIFEST_CONTRACT",
|
|
@@ -18627,6 +18739,7 @@
|
|
|
18627
18739
|
"packages/core/release-propagation-work-constants.js#RELEASE_PROPAGATION_WORK_CONTRACT",
|
|
18628
18740
|
"packages/core/release-propagation-work-constants.js#RELEASE_PROPAGATION_WORK_STAGES",
|
|
18629
18741
|
"packages/core/release-activation-transaction.js#releaseActivationRoot",
|
|
18742
|
+
"packages/core/release-candidate-recovery.js#ReleaseCandidateRecoveryError",
|
|
18630
18743
|
"packages/core/readme-badges.js#renderBadgeBundleBlock",
|
|
18631
18744
|
"packages/core/buildchain-contract.js#renderBuildchainContractDriftIssueBody",
|
|
18632
18745
|
"packages/core/homebrew.js#renderHomebrewFormula",
|
|
@@ -18721,6 +18834,7 @@
|
|
|
18721
18834
|
"packages/core/publication-authority.js#verifyPublicationQualificationReceipt",
|
|
18722
18835
|
"packages/core/publication-reproducibility.js#verifyPublicationReproducibility",
|
|
18723
18836
|
"packages/core/publication-sealed-bundle.js#verifyPublicationSealedBundle",
|
|
18837
|
+
"packages/core/release-candidate-recovery.js#verifyReleaseCandidateRecovery",
|
|
18724
18838
|
"packages/core/release-passport.js#verifyReleasePassport",
|
|
18725
18839
|
"packages/core/release-propagation-work.js#verifyReleasePropagationWork",
|
|
18726
18840
|
"packages/core/web-surface-publication-candidate.js#WEB_SURFACE_PRODUCTION_DECISION_CONTRACT",
|
|
@@ -18961,7 +19075,7 @@
|
|
|
18961
19075
|
"specifier": "@kungfu-tech/buildchain/buildchain-contract",
|
|
18962
19076
|
"export": "./buildchain-contract",
|
|
18963
19077
|
"target": "./packages/core/buildchain-contract.js",
|
|
18964
|
-
"digest": "sha256:
|
|
19078
|
+
"digest": "sha256:90e88e4ac4759838afc4d760811ab30aad3e79066ba64fc69c81a31f3fffd291",
|
|
18965
19079
|
"summary": "Runtime contract world and compatibility digest APIs for floating-ref drift checks.",
|
|
18966
19080
|
"capabilityGroup": "governance-versioning",
|
|
18967
19081
|
"audience": [
|
|
@@ -19986,6 +20100,32 @@
|
|
|
19986
20100
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
19987
20101
|
"nonDuplicationRationale": "Existing package subpath retained as the canonical API boundary for this capability."
|
|
19988
20102
|
},
|
|
20103
|
+
{
|
|
20104
|
+
"specifier": "@kungfu-tech/buildchain/release-candidate-recovery",
|
|
20105
|
+
"export": "./release-candidate-recovery",
|
|
20106
|
+
"target": "./packages/core/release-candidate-recovery.js",
|
|
20107
|
+
"digest": "sha256:effbc455f83062b52dd11ac72341160d30c7a0c5f35fd829059776eb5cd423ba",
|
|
20108
|
+
"summary": "Fail-closed verification and immutable receipts for reusing a successful sealed candidate run without rebuilding product payloads.",
|
|
20109
|
+
"capabilityGroup": "release-passport-trust",
|
|
20110
|
+
"audience": [
|
|
20111
|
+
"developer",
|
|
20112
|
+
"agent"
|
|
20113
|
+
],
|
|
20114
|
+
"symbolCount": 4,
|
|
20115
|
+
"symbolIds": [
|
|
20116
|
+
"packages/core/release-candidate-recovery.js#recoveryFailure",
|
|
20117
|
+
"packages/core/release-candidate-recovery.js#RELEASE_CANDIDATE_RECOVERY_CONTRACT",
|
|
20118
|
+
"packages/core/release-candidate-recovery.js#ReleaseCandidateRecoveryError",
|
|
20119
|
+
"packages/core/release-candidate-recovery.js#verifyReleaseCandidateRecovery"
|
|
20120
|
+
],
|
|
20121
|
+
"owner": "buildchain-core",
|
|
20122
|
+
"maturity": "stable",
|
|
20123
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
20124
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
20125
|
+
"deprecationReplacement": "",
|
|
20126
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
20127
|
+
"nonDuplicationRationale": "Existing package subpath retained as the canonical API boundary for this capability."
|
|
20128
|
+
},
|
|
19989
20129
|
{
|
|
19990
20130
|
"specifier": "@kungfu-tech/buildchain/stable-candidate-ledger",
|
|
19991
20131
|
"export": "./stable-candidate-ledger",
|
|
@@ -20255,7 +20395,7 @@
|
|
|
20255
20395
|
{
|
|
20256
20396
|
"id": "node-api-reference",
|
|
20257
20397
|
"path": "docs/node-api-reference.md",
|
|
20258
|
-
"digest": "sha256:
|
|
20398
|
+
"digest": "sha256:3fbfe0227cf929f0ddc2050605d071643cee0b302a4c31920b4f9047c923ae8c"
|
|
20259
20399
|
},
|
|
20260
20400
|
{
|
|
20261
20401
|
"id": "build-facts",
|