@kungfu-tech/buildchain 3.0.5-alpha.6 → 3.0.5-alpha.7
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/README.md +31 -0
- package/bin/buildchain.mjs +1 -1
- package/contracts/auditable-demo-media-profiles-v1.json +61 -0
- package/contracts/auditable-demo-scenario-v1.schema.json +153 -0
- package/contracts/evidence/auditable-demo-responsive-web-delivery-v1.json +3 -3
- package/contracts/evidence/auditable-demo-web-delivery-v1.json +3 -3
- package/dist/site/buildchain-contract.json +57 -6
- package/dist/site/buildchain-site.json +38 -22
- package/dist/site/capability-registry.json +1 -1
- package/dist/site/cli-registry.json +6 -2
- package/dist/site/kfd-claims.json +49 -9
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +3 -3
- package/dist/site/node-api-registry.json +203 -21
- package/dist/site/page-registry.json +28 -8
- package/dist/site/public-surface-audit.json +94 -6
- package/dist/site/publication-authority-registry.json +42 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +7 -7
- package/dist/site/workflow-registry.json +63 -0
- package/docs/auditable-demo.md +74 -7
- package/docs/cli-reference.md +24 -2
- package/docs/node-api-reference.md +63 -45
- package/package.json +1 -1
- package/packages/core/buildchain-contract.js +36 -1
- package/packages/core/buildchain-publication-authority.js +2 -0
- package/packages/core/release-propagation-pickup.js +386 -0
- package/packages/core/release-propagation-release.js +61 -18
- package/packages/core/release-propagation.js +12 -2
- package/scripts/auditable-demo-platform.mjs +506 -0
- package/scripts/auditable-demo-renditions.mjs +6 -1
- package/scripts/auditable-demo.mjs +14 -4
- package/scripts/build-standalone-binary.mjs +4 -0
- package/scripts/buildchain-cli-help.mjs +2 -1
- package/scripts/check-inventory.mjs +5 -0
- package/scripts/generate-site-bundle.mjs +2 -0
- package/scripts/release-propagation.mjs +77 -2
|
@@ -3315,21 +3315,25 @@
|
|
|
3315
3315
|
{
|
|
3316
3316
|
"id": "release-propagation",
|
|
3317
3317
|
"source": "bin/buildchain.mjs",
|
|
3318
|
-
"usage": "buildchain release-propagation <plan|write-lock> ...",
|
|
3318
|
+
"usage": "buildchain release-propagation <plan|write-lock|work|pickup> ...",
|
|
3319
3319
|
"paths": [
|
|
3320
3320
|
"release-propagation",
|
|
3321
|
+
"release-propagation pickup",
|
|
3321
3322
|
"release-propagation plan",
|
|
3323
|
+
"release-propagation work",
|
|
3322
3324
|
"release-propagation write-lock"
|
|
3323
3325
|
],
|
|
3324
3326
|
"syntaxes": [
|
|
3325
3327
|
"buildchain release-propagation",
|
|
3326
|
-
"buildchain release-propagation <plan|write-lock> ..."
|
|
3328
|
+
"buildchain release-propagation <plan|write-lock|work|pickup> ..."
|
|
3327
3329
|
],
|
|
3328
3330
|
"options": [],
|
|
3329
3331
|
"aliases": [],
|
|
3330
3332
|
"helpCommands": [
|
|
3331
3333
|
"buildchain release-propagation --help",
|
|
3334
|
+
"buildchain release-propagation pickup --help",
|
|
3332
3335
|
"buildchain release-propagation plan --help",
|
|
3336
|
+
"buildchain release-propagation work --help",
|
|
3333
3337
|
"buildchain release-propagation write-lock --help"
|
|
3334
3338
|
],
|
|
3335
3339
|
"purpose": "Plan channel-preserving downstream release PRs and write exact upstream release locks.",
|
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
},
|
|
15
15
|
"runtimeContract": {
|
|
16
16
|
"contract": "kungfu-buildchain-runtime-contract-world",
|
|
17
|
-
"compatibilityDigest": "sha256:
|
|
17
|
+
"compatibilityDigest": "sha256:76c3dd58a02887ecd6af33d63e749fef0a988a820fea99bdf4cb078cc48caa83",
|
|
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": "708b4219635bdf511a27042584e05577d924d7760046d4130fea020fb3d1de72",
|
|
25
25
|
"summary": {
|
|
26
26
|
"cliCommandCount": 112,
|
|
27
|
-
"workflowCount":
|
|
27
|
+
"workflowCount": 59,
|
|
28
28
|
"actionCount": 6,
|
|
29
29
|
"sitePageCount": 63,
|
|
30
|
-
"docCommandRefCount":
|
|
30
|
+
"docCommandRefCount": 822,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -246,13 +246,13 @@
|
|
|
246
246
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
247
247
|
"path": "dist/site/public-surface-audit.json",
|
|
248
248
|
"status": "passed",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "708b4219635bdf511a27042584e05577d924d7760046d4130fea020fb3d1de72",
|
|
250
250
|
"summary": {
|
|
251
251
|
"cliCommandCount": 112,
|
|
252
|
-
"workflowCount":
|
|
252
|
+
"workflowCount": 59,
|
|
253
253
|
"actionCount": 6,
|
|
254
254
|
"sitePageCount": 63,
|
|
255
|
-
"docCommandRefCount":
|
|
255
|
+
"docCommandRefCount": 822,
|
|
256
256
|
"failureCount": 0
|
|
257
257
|
},
|
|
258
258
|
"auditBoundary": {
|
|
@@ -3066,7 +3066,7 @@
|
|
|
3066
3066
|
},
|
|
3067
3067
|
{
|
|
3068
3068
|
"id": "cli:release-propagation",
|
|
3069
|
-
"name": "buildchain release-propagation <plan|write-lock> ...",
|
|
3069
|
+
"name": "buildchain release-propagation <plan|write-lock|work|pickup> ...",
|
|
3070
3070
|
"kind": "cli-command",
|
|
3071
3071
|
"sourcePath": "bin/buildchain.mjs",
|
|
3072
3072
|
"evidencePath": "bin/buildchain.mjs",
|
|
@@ -3436,6 +3436,32 @@
|
|
|
3436
3436
|
"inputs": [],
|
|
3437
3437
|
"reverseAuditSource": ".github/workflows"
|
|
3438
3438
|
},
|
|
3439
|
+
{
|
|
3440
|
+
"id": "workflow:.declarative-auditable-demo",
|
|
3441
|
+
"name": "workflow:.declarative-auditable-demo",
|
|
3442
|
+
"kind": "workflow",
|
|
3443
|
+
"sourcePath": ".github/workflows/.declarative-auditable-demo.yml",
|
|
3444
|
+
"evidencePath": ".github/workflows/.declarative-auditable-demo.yml",
|
|
3445
|
+
"availability": "shipped",
|
|
3446
|
+
"visibility": "public",
|
|
3447
|
+
"participantFacing": true,
|
|
3448
|
+
"public": true,
|
|
3449
|
+
"inputCount": 11,
|
|
3450
|
+
"inputs": [
|
|
3451
|
+
"artifact-retention-days",
|
|
3452
|
+
"binary-artifact-digest",
|
|
3453
|
+
"binary-artifact-name",
|
|
3454
|
+
"buildchain-repository",
|
|
3455
|
+
"materialize",
|
|
3456
|
+
"materialize-base-ref",
|
|
3457
|
+
"media-profile",
|
|
3458
|
+
"render-media",
|
|
3459
|
+
"renderer-image",
|
|
3460
|
+
"scenario-path",
|
|
3461
|
+
"source-ref"
|
|
3462
|
+
],
|
|
3463
|
+
"reverseAuditSource": ".github/workflows"
|
|
3464
|
+
},
|
|
3439
3465
|
{
|
|
3440
3466
|
"id": "workflow:.gate-profile",
|
|
3441
3467
|
"name": "workflow:.gate-profile",
|
|
@@ -3978,6 +4004,20 @@
|
|
|
3978
4004
|
"inputs": [],
|
|
3979
4005
|
"reverseAuditSource": ".github/workflows"
|
|
3980
4006
|
},
|
|
4007
|
+
{
|
|
4008
|
+
"id": "workflow:auditable-demo",
|
|
4009
|
+
"name": "workflow:auditable-demo",
|
|
4010
|
+
"kind": "workflow",
|
|
4011
|
+
"sourcePath": ".github/workflows/auditable-demo.yml",
|
|
4012
|
+
"evidencePath": ".github/workflows/auditable-demo.yml",
|
|
4013
|
+
"availability": "shipped",
|
|
4014
|
+
"visibility": "public",
|
|
4015
|
+
"participantFacing": true,
|
|
4016
|
+
"public": true,
|
|
4017
|
+
"inputCount": 0,
|
|
4018
|
+
"inputs": [],
|
|
4019
|
+
"reverseAuditSource": ".github/workflows"
|
|
4020
|
+
},
|
|
3981
4021
|
{
|
|
3982
4022
|
"id": "workflow:binary-distribution",
|
|
3983
4023
|
"name": "workflow:binary-distribution",
|
|
@@ -6098,6 +6138,6 @@
|
|
|
6098
6138
|
}
|
|
6099
6139
|
}
|
|
6100
6140
|
],
|
|
6101
|
-
"publicSurfaceCount":
|
|
6141
|
+
"publicSurfaceCount": 392
|
|
6102
6142
|
}
|
|
6103
6143
|
}
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"title": "Auditable demo artifact pipeline",
|
|
38
38
|
"path": "docs/auditable-demo.md",
|
|
39
39
|
"plane": "verify",
|
|
40
|
-
"digest": "sha256:
|
|
40
|
+
"digest": "sha256:a99175216b3774748b253814c1933683cace8107a34083dd711f639f3e680c61",
|
|
41
41
|
"capabilityGroup": "reusable-build",
|
|
42
42
|
"audience": [
|
|
43
43
|
"consumer",
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
"title": "Generated CLI reference",
|
|
318
318
|
"path": "docs/cli-reference.md",
|
|
319
319
|
"plane": "use",
|
|
320
|
-
"digest": "sha256:
|
|
320
|
+
"digest": "sha256:94207fa353e87b087ecf53b6cebe6dfffdc1311b2b6bc90b511d83d5757e7827",
|
|
321
321
|
"capabilityGroup": "api-cli-reference",
|
|
322
322
|
"audience": [
|
|
323
323
|
"agent",
|
|
@@ -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:c67e43ac62b7771c997c089da1541e573b7bb3202bdef01816a782b876e403c3",
|
|
336
336
|
"capabilityGroup": "api-cli-reference",
|
|
337
337
|
"audience": [
|
|
338
338
|
"agent",
|
|
@@ -1881,7 +1881,7 @@
|
|
|
1881
1881
|
],
|
|
1882
1882
|
"source": {
|
|
1883
1883
|
"path": "packages/core/buildchain-contract.js",
|
|
1884
|
-
"line":
|
|
1884
|
+
"line": 945
|
|
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": 787
|
|
1914
1914
|
},
|
|
1915
1915
|
"example": "import { createBuildchainContractLock } from \"@kungfu-tech/buildchain\";",
|
|
1916
1916
|
"maturity": "stable",
|
|
@@ -1939,7 +1939,7 @@
|
|
|
1939
1939
|
],
|
|
1940
1940
|
"source": {
|
|
1941
1941
|
"path": "packages/core/buildchain-contract.js",
|
|
1942
|
-
"line":
|
|
1942
|
+
"line": 110
|
|
1943
1943
|
},
|
|
1944
1944
|
"example": "import { createBuildchainContractWorld } from \"@kungfu-tech/buildchain\";",
|
|
1945
1945
|
"maturity": "stable",
|
|
@@ -1968,7 +1968,7 @@
|
|
|
1968
1968
|
],
|
|
1969
1969
|
"source": {
|
|
1970
1970
|
"path": "packages/core/buildchain-contract.js",
|
|
1971
|
-
"line":
|
|
1971
|
+
"line": 853
|
|
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": 762
|
|
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": 838
|
|
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": 818
|
|
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": 957
|
|
2088
2088
|
},
|
|
2089
2089
|
"example": "import { renderBuildchainContractDriftIssueBody } from \"@kungfu-tech/buildchain\";",
|
|
2090
2090
|
"maturity": "stable",
|
|
@@ -3493,7 +3493,7 @@
|
|
|
3493
3493
|
],
|
|
3494
3494
|
"source": {
|
|
3495
3495
|
"path": "packages/core/buildchain-publication-authority.js",
|
|
3496
|
-
"line":
|
|
3496
|
+
"line": 53
|
|
3497
3497
|
},
|
|
3498
3498
|
"example": "import { buildchainPublicationAuthorityDescriptors } from \"@kungfu-tech/buildchain\";",
|
|
3499
3499
|
"maturity": "stable",
|
|
@@ -3522,7 +3522,7 @@
|
|
|
3522
3522
|
],
|
|
3523
3523
|
"source": {
|
|
3524
3524
|
"path": "packages/core/buildchain-publication-authority.js",
|
|
3525
|
-
"line":
|
|
3525
|
+
"line": 78
|
|
3526
3526
|
},
|
|
3527
3527
|
"example": "import { createBuildchainPublicationAuthorityRegistry } from \"@kungfu-tech/buildchain\";",
|
|
3528
3528
|
"maturity": "stable",
|
|
@@ -14932,6 +14932,170 @@
|
|
|
14932
14932
|
"agent"
|
|
14933
14933
|
]
|
|
14934
14934
|
},
|
|
14935
|
+
{
|
|
14936
|
+
"id": "packages/core/release-propagation-pickup.js#createManualUpstreamPickupCapture",
|
|
14937
|
+
"name": "createManualUpstreamPickupCapture",
|
|
14938
|
+
"kind": "function",
|
|
14939
|
+
"signature": "function createManualUpstreamPickupCapture({ plan, expectedDownstreamBaseSha, })",
|
|
14940
|
+
"parameters": [
|
|
14941
|
+
{
|
|
14942
|
+
"name": "parameter1",
|
|
14943
|
+
"signature": "{ plan, expectedDownstreamBaseSha, }"
|
|
14944
|
+
}
|
|
14945
|
+
],
|
|
14946
|
+
"returns": "unknown",
|
|
14947
|
+
"errors": [
|
|
14948
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
14949
|
+
],
|
|
14950
|
+
"sideEffects": [
|
|
14951
|
+
"none-detected-by-static-source-scan"
|
|
14952
|
+
],
|
|
14953
|
+
"source": {
|
|
14954
|
+
"path": "packages/core/release-propagation-pickup.js",
|
|
14955
|
+
"line": 360
|
|
14956
|
+
},
|
|
14957
|
+
"example": "import { createManualUpstreamPickupCapture } from \"@kungfu-tech/buildchain\";",
|
|
14958
|
+
"maturity": "stable",
|
|
14959
|
+
"audience": [
|
|
14960
|
+
"developer",
|
|
14961
|
+
"agent"
|
|
14962
|
+
]
|
|
14963
|
+
},
|
|
14964
|
+
{
|
|
14965
|
+
"id": "packages/core/release-propagation-pickup.js#createManualUpstreamPickupPlan",
|
|
14966
|
+
"name": "createManualUpstreamPickupPlan",
|
|
14967
|
+
"kind": "function",
|
|
14968
|
+
"signature": "function createManualUpstreamPickupPlan({ config: configInput, sourceId, channel, currentVersion, upstreamRelease, })",
|
|
14969
|
+
"parameters": [
|
|
14970
|
+
{
|
|
14971
|
+
"name": "parameter1",
|
|
14972
|
+
"signature": "{ config: configInput, sourceId, channel, currentVersion, upstreamRelease, }"
|
|
14973
|
+
}
|
|
14974
|
+
],
|
|
14975
|
+
"returns": "unknown",
|
|
14976
|
+
"errors": [
|
|
14977
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
14978
|
+
],
|
|
14979
|
+
"sideEffects": [
|
|
14980
|
+
"none-detected-by-static-source-scan"
|
|
14981
|
+
],
|
|
14982
|
+
"source": {
|
|
14983
|
+
"path": "packages/core/release-propagation-pickup.js",
|
|
14984
|
+
"line": 302
|
|
14985
|
+
},
|
|
14986
|
+
"example": "import { createManualUpstreamPickupPlan } from \"@kungfu-tech/buildchain\";",
|
|
14987
|
+
"maturity": "stable",
|
|
14988
|
+
"audience": [
|
|
14989
|
+
"developer",
|
|
14990
|
+
"agent"
|
|
14991
|
+
]
|
|
14992
|
+
},
|
|
14993
|
+
{
|
|
14994
|
+
"id": "packages/core/release-propagation-pickup.js#MANUAL_UPSTREAM_PICKUP_CONFIG_CONTRACT",
|
|
14995
|
+
"name": "MANUAL_UPSTREAM_PICKUP_CONFIG_CONTRACT",
|
|
14996
|
+
"kind": "constant",
|
|
14997
|
+
"signature": "const MANUAL_UPSTREAM_PICKUP_CONFIG_CONTRACT",
|
|
14998
|
+
"parameters": [],
|
|
14999
|
+
"returns": "value",
|
|
15000
|
+
"errors": [
|
|
15001
|
+
"Import does not declare a throw contract."
|
|
15002
|
+
],
|
|
15003
|
+
"sideEffects": [
|
|
15004
|
+
"none-on-import"
|
|
15005
|
+
],
|
|
15006
|
+
"source": {
|
|
15007
|
+
"path": "packages/core/release-propagation-pickup.js",
|
|
15008
|
+
"line": 16
|
|
15009
|
+
},
|
|
15010
|
+
"example": "import { MANUAL_UPSTREAM_PICKUP_CONFIG_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
15011
|
+
"maturity": "stable",
|
|
15012
|
+
"audience": [
|
|
15013
|
+
"developer",
|
|
15014
|
+
"agent"
|
|
15015
|
+
]
|
|
15016
|
+
},
|
|
15017
|
+
{
|
|
15018
|
+
"id": "packages/core/release-propagation-pickup.js#MANUAL_UPSTREAM_PICKUP_PLAN_CONTRACT",
|
|
15019
|
+
"name": "MANUAL_UPSTREAM_PICKUP_PLAN_CONTRACT",
|
|
15020
|
+
"kind": "constant",
|
|
15021
|
+
"signature": "const MANUAL_UPSTREAM_PICKUP_PLAN_CONTRACT",
|
|
15022
|
+
"parameters": [],
|
|
15023
|
+
"returns": "value",
|
|
15024
|
+
"errors": [
|
|
15025
|
+
"Import does not declare a throw contract."
|
|
15026
|
+
],
|
|
15027
|
+
"sideEffects": [
|
|
15028
|
+
"none-on-import"
|
|
15029
|
+
],
|
|
15030
|
+
"source": {
|
|
15031
|
+
"path": "packages/core/release-propagation-pickup.js",
|
|
15032
|
+
"line": 18
|
|
15033
|
+
},
|
|
15034
|
+
"example": "import { MANUAL_UPSTREAM_PICKUP_PLAN_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
15035
|
+
"maturity": "stable",
|
|
15036
|
+
"audience": [
|
|
15037
|
+
"developer",
|
|
15038
|
+
"agent"
|
|
15039
|
+
]
|
|
15040
|
+
},
|
|
15041
|
+
{
|
|
15042
|
+
"id": "packages/core/release-propagation-pickup.js#normalizeManualUpstreamPickupConfig",
|
|
15043
|
+
"name": "normalizeManualUpstreamPickupConfig",
|
|
15044
|
+
"kind": "function",
|
|
15045
|
+
"signature": "function normalizeManualUpstreamPickupConfig(input)",
|
|
15046
|
+
"parameters": [
|
|
15047
|
+
{
|
|
15048
|
+
"name": "input",
|
|
15049
|
+
"signature": "input"
|
|
15050
|
+
}
|
|
15051
|
+
],
|
|
15052
|
+
"returns": "unknown",
|
|
15053
|
+
"errors": [
|
|
15054
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
15055
|
+
],
|
|
15056
|
+
"sideEffects": [
|
|
15057
|
+
"none-detected-by-static-source-scan"
|
|
15058
|
+
],
|
|
15059
|
+
"source": {
|
|
15060
|
+
"path": "packages/core/release-propagation-pickup.js",
|
|
15061
|
+
"line": 118
|
|
15062
|
+
},
|
|
15063
|
+
"example": "import { normalizeManualUpstreamPickupConfig } from \"@kungfu-tech/buildchain\";",
|
|
15064
|
+
"maturity": "stable",
|
|
15065
|
+
"audience": [
|
|
15066
|
+
"developer",
|
|
15067
|
+
"agent"
|
|
15068
|
+
]
|
|
15069
|
+
},
|
|
15070
|
+
{
|
|
15071
|
+
"id": "packages/core/release-propagation-pickup.js#resolveNpmRegistryRelease",
|
|
15072
|
+
"name": "resolveNpmRegistryRelease",
|
|
15073
|
+
"kind": "function",
|
|
15074
|
+
"signature": "function resolveNpmRegistryRelease({ source: sourceInput, channel, packageMetadata, attestations, })",
|
|
15075
|
+
"parameters": [
|
|
15076
|
+
{
|
|
15077
|
+
"name": "parameter1",
|
|
15078
|
+
"signature": "{ source: sourceInput, channel, packageMetadata, attestations, }"
|
|
15079
|
+
}
|
|
15080
|
+
],
|
|
15081
|
+
"returns": "unknown",
|
|
15082
|
+
"errors": [
|
|
15083
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
15084
|
+
],
|
|
15085
|
+
"sideEffects": [
|
|
15086
|
+
"none-detected-by-static-source-scan"
|
|
15087
|
+
],
|
|
15088
|
+
"source": {
|
|
15089
|
+
"path": "packages/core/release-propagation-pickup.js",
|
|
15090
|
+
"line": 167
|
|
15091
|
+
},
|
|
15092
|
+
"example": "import { resolveNpmRegistryRelease } from \"@kungfu-tech/buildchain\";",
|
|
15093
|
+
"maturity": "stable",
|
|
15094
|
+
"audience": [
|
|
15095
|
+
"developer",
|
|
15096
|
+
"agent"
|
|
15097
|
+
]
|
|
15098
|
+
},
|
|
14935
15099
|
{
|
|
14936
15100
|
"id": "packages/core/release-propagation-work-constants.js#RELEASE_PROPAGATION_STAGE_RECEIPT_CONTRACT",
|
|
14937
15101
|
"name": "RELEASE_PROPAGATION_STAGE_RECEIPT_CONTRACT",
|
|
@@ -15285,7 +15449,7 @@
|
|
|
15285
15449
|
],
|
|
15286
15450
|
"source": {
|
|
15287
15451
|
"path": "packages/core/release-propagation.js",
|
|
15288
|
-
"line":
|
|
15452
|
+
"line": 371
|
|
15289
15453
|
},
|
|
15290
15454
|
"example": "import { createReleasePropagationReceipt } from \"@kungfu-tech/buildchain\";",
|
|
15291
15455
|
"maturity": "stable",
|
|
@@ -15343,7 +15507,7 @@
|
|
|
15343
15507
|
],
|
|
15344
15508
|
"source": {
|
|
15345
15509
|
"path": "packages/core/release-propagation.js",
|
|
15346
|
-
"line":
|
|
15510
|
+
"line": 249
|
|
15347
15511
|
},
|
|
15348
15512
|
"example": "import { planReleasePropagation } from \"@kungfu-tech/buildchain\";",
|
|
15349
15513
|
"maturity": "stable",
|
|
@@ -15376,7 +15540,7 @@
|
|
|
15376
15540
|
],
|
|
15377
15541
|
"source": {
|
|
15378
15542
|
"path": "packages/core/release-propagation.js",
|
|
15379
|
-
"line":
|
|
15543
|
+
"line": 305
|
|
15380
15544
|
},
|
|
15381
15545
|
"example": "import { readReleasePropagationJson } from \"@kungfu-tech/buildchain\";",
|
|
15382
15546
|
"maturity": "stable",
|
|
@@ -15534,7 +15698,7 @@
|
|
|
15534
15698
|
],
|
|
15535
15699
|
"source": {
|
|
15536
15700
|
"path": "packages/core/release-propagation.js",
|
|
15537
|
-
"line":
|
|
15701
|
+
"line": 317
|
|
15538
15702
|
},
|
|
15539
15703
|
"example": "import { writeReleasePropagationLock } from \"@kungfu-tech/buildchain\";",
|
|
15540
15704
|
"maturity": "stable",
|
|
@@ -16138,7 +16302,7 @@
|
|
|
16138
16302
|
"developer",
|
|
16139
16303
|
"agent"
|
|
16140
16304
|
],
|
|
16141
|
-
"symbolCount":
|
|
16305
|
+
"symbolCount": 547,
|
|
16142
16306
|
"symbolIds": [
|
|
16143
16307
|
"packages/core/release-activation-transaction.js#abortReleaseActivationTransaction",
|
|
16144
16308
|
"packages/core/release-passport.js#AGENT_INDEX_CONTRACT",
|
|
@@ -16311,6 +16475,8 @@
|
|
|
16311
16475
|
"packages/core/readme-badges.js#createKfdBadgeSpecsFromStandards",
|
|
16312
16476
|
"packages/core/kfd-product-gates.js#createKfdSupportProjection",
|
|
16313
16477
|
"packages/core/build-facts.js#createKungfuBuildInfoProjection",
|
|
16478
|
+
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupCapture",
|
|
16479
|
+
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupPlan",
|
|
16314
16480
|
"packages/core/release-propagation-capture.js#createPackageReleasePropagationCapture",
|
|
16315
16481
|
"packages/core/paper.js#createPaperAlphaPlan",
|
|
16316
16482
|
"packages/core/paper.js#createPaperBuildPlan",
|
|
@@ -16459,6 +16625,8 @@
|
|
|
16459
16625
|
"packages/core/buildchain-config.js#loadBuildchainConfig",
|
|
16460
16626
|
"packages/core/buildchain-config.js#loadConfiguredAnchorManifest",
|
|
16461
16627
|
"packages/core/release-passport.js#makeReleasePassportFixtureAssets",
|
|
16628
|
+
"packages/core/release-propagation-pickup.js#MANUAL_UPSTREAM_PICKUP_CONFIG_CONTRACT",
|
|
16629
|
+
"packages/core/release-propagation-pickup.js#MANUAL_UPSTREAM_PICKUP_PLAN_CONTRACT",
|
|
16462
16630
|
"packages/core/stable-candidate-ledger.js#markStableCandidatePromoted",
|
|
16463
16631
|
"packages/core/buildchain-layout.js#migrateBuildchainLayout",
|
|
16464
16632
|
"packages/core/buildchain-config.js#normalizeBuildchainConfig",
|
|
@@ -16475,6 +16643,7 @@
|
|
|
16475
16643
|
"packages/core/kfd3-surface-register.js#normalizeKfd3DistributionDeclaration",
|
|
16476
16644
|
"packages/core/kfd.js#normalizeKfdStandardId",
|
|
16477
16645
|
"packages/core/buildchain-config.js#normalizeLifecycleStage",
|
|
16646
|
+
"packages/core/release-propagation-pickup.js#normalizeManualUpstreamPickupConfig",
|
|
16478
16647
|
"packages/core/release-propagation-capture.js#normalizePackageReleasePropagationConfig",
|
|
16479
16648
|
"packages/core/release-propagation.js#normalizeReleasePropagationGraph",
|
|
16480
16649
|
"packages/core/stable-candidate-ledger.js#normalizeStableCandidateLedger",
|
|
@@ -16588,6 +16757,7 @@
|
|
|
16588
16757
|
"packages/core/buildchain-layout.js#resolveKfd2ProductClaimsRegistryPath",
|
|
16589
16758
|
"packages/core/kfd-gate.js#resolveKfd3Metadata",
|
|
16590
16759
|
"packages/core/buildchain-layout.js#resolveKfd3SurfaceRegistryPath",
|
|
16760
|
+
"packages/core/release-propagation-pickup.js#resolveNpmRegistryRelease",
|
|
16591
16761
|
"packages/core/paper-repository.js#resolvePaperRepository",
|
|
16592
16762
|
"packages/core/release-propagation.js#resolvePropagationChannel",
|
|
16593
16763
|
"packages/core/publication-artifact-candidate.js#resolvePublicationCandidateFile",
|
|
@@ -16777,7 +16947,7 @@
|
|
|
16777
16947
|
"developer",
|
|
16778
16948
|
"agent"
|
|
16779
16949
|
],
|
|
16780
|
-
"symbolCount":
|
|
16950
|
+
"symbolCount": 547,
|
|
16781
16951
|
"symbolIds": [
|
|
16782
16952
|
"packages/core/release-activation-transaction.js#abortReleaseActivationTransaction",
|
|
16783
16953
|
"packages/core/release-passport.js#AGENT_INDEX_CONTRACT",
|
|
@@ -16950,6 +17120,8 @@
|
|
|
16950
17120
|
"packages/core/readme-badges.js#createKfdBadgeSpecsFromStandards",
|
|
16951
17121
|
"packages/core/kfd-product-gates.js#createKfdSupportProjection",
|
|
16952
17122
|
"packages/core/build-facts.js#createKungfuBuildInfoProjection",
|
|
17123
|
+
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupCapture",
|
|
17124
|
+
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupPlan",
|
|
16953
17125
|
"packages/core/release-propagation-capture.js#createPackageReleasePropagationCapture",
|
|
16954
17126
|
"packages/core/paper.js#createPaperAlphaPlan",
|
|
16955
17127
|
"packages/core/paper.js#createPaperBuildPlan",
|
|
@@ -17098,6 +17270,8 @@
|
|
|
17098
17270
|
"packages/core/buildchain-config.js#loadBuildchainConfig",
|
|
17099
17271
|
"packages/core/buildchain-config.js#loadConfiguredAnchorManifest",
|
|
17100
17272
|
"packages/core/release-passport.js#makeReleasePassportFixtureAssets",
|
|
17273
|
+
"packages/core/release-propagation-pickup.js#MANUAL_UPSTREAM_PICKUP_CONFIG_CONTRACT",
|
|
17274
|
+
"packages/core/release-propagation-pickup.js#MANUAL_UPSTREAM_PICKUP_PLAN_CONTRACT",
|
|
17101
17275
|
"packages/core/stable-candidate-ledger.js#markStableCandidatePromoted",
|
|
17102
17276
|
"packages/core/buildchain-layout.js#migrateBuildchainLayout",
|
|
17103
17277
|
"packages/core/buildchain-config.js#normalizeBuildchainConfig",
|
|
@@ -17114,6 +17288,7 @@
|
|
|
17114
17288
|
"packages/core/kfd3-surface-register.js#normalizeKfd3DistributionDeclaration",
|
|
17115
17289
|
"packages/core/kfd.js#normalizeKfdStandardId",
|
|
17116
17290
|
"packages/core/buildchain-config.js#normalizeLifecycleStage",
|
|
17291
|
+
"packages/core/release-propagation-pickup.js#normalizeManualUpstreamPickupConfig",
|
|
17117
17292
|
"packages/core/release-propagation-capture.js#normalizePackageReleasePropagationConfig",
|
|
17118
17293
|
"packages/core/release-propagation.js#normalizeReleasePropagationGraph",
|
|
17119
17294
|
"packages/core/stable-candidate-ledger.js#normalizeStableCandidateLedger",
|
|
@@ -17227,6 +17402,7 @@
|
|
|
17227
17402
|
"packages/core/buildchain-layout.js#resolveKfd2ProductClaimsRegistryPath",
|
|
17228
17403
|
"packages/core/kfd-gate.js#resolveKfd3Metadata",
|
|
17229
17404
|
"packages/core/buildchain-layout.js#resolveKfd3SurfaceRegistryPath",
|
|
17405
|
+
"packages/core/release-propagation-pickup.js#resolveNpmRegistryRelease",
|
|
17230
17406
|
"packages/core/paper-repository.js#resolvePaperRepository",
|
|
17231
17407
|
"packages/core/release-propagation.js#resolvePropagationChannel",
|
|
17232
17408
|
"packages/core/publication-artifact-candidate.js#resolvePublicationCandidateFile",
|
|
@@ -17542,7 +17718,7 @@
|
|
|
17542
17718
|
"specifier": "@kungfu-tech/buildchain/buildchain-contract",
|
|
17543
17719
|
"export": "./buildchain-contract",
|
|
17544
17720
|
"target": "./packages/core/buildchain-contract.js",
|
|
17545
|
-
"digest": "sha256:
|
|
17721
|
+
"digest": "sha256:876f747eccd92d31e821c85b2f38a54ba6056704adfb30cbf7e545ff61148625",
|
|
17546
17722
|
"summary": "Runtime contract world and compatibility digest APIs for floating-ref drift checks.",
|
|
17547
17723
|
"capabilityGroup": "governance-versioning",
|
|
17548
17724
|
"audience": [
|
|
@@ -18381,7 +18557,7 @@
|
|
|
18381
18557
|
"specifier": "@kungfu-tech/buildchain/buildchain-publication-authority",
|
|
18382
18558
|
"export": "./buildchain-publication-authority",
|
|
18383
18559
|
"target": "./packages/core/buildchain-publication-authority.js",
|
|
18384
|
-
"digest": "sha256:
|
|
18560
|
+
"digest": "sha256:4ac32145cacbf15e1fa4f8c5daf24c2374a76e9f079afc5bcc8d444c64c2d246",
|
|
18385
18561
|
"summary": "Buildchain-owned closed-world publication authority descriptor registry.",
|
|
18386
18562
|
"capabilityGroup": "release-passport-trust",
|
|
18387
18563
|
"audience": [
|
|
@@ -18622,22 +18798,27 @@
|
|
|
18622
18798
|
"specifier": "@kungfu-tech/buildchain/release-propagation",
|
|
18623
18799
|
"export": "./release-propagation",
|
|
18624
18800
|
"target": "./packages/core/release-propagation.js",
|
|
18625
|
-
"digest": "sha256:
|
|
18801
|
+
"digest": "sha256:959a9474d48da2090debac31eb95927652ad05ded0364ef6b736b6c12af96847",
|
|
18626
18802
|
"summary": "Release propagation graph, plan, and exact upstream lock APIs.",
|
|
18627
18803
|
"capabilityGroup": "site-and-propagation",
|
|
18628
18804
|
"audience": [
|
|
18629
18805
|
"developer",
|
|
18630
18806
|
"agent"
|
|
18631
18807
|
],
|
|
18632
|
-
"symbolCount":
|
|
18808
|
+
"symbolCount": 31,
|
|
18633
18809
|
"symbolIds": [
|
|
18634
18810
|
"packages/core/release-propagation-work-transitions.js#claimReleasePropagationWork",
|
|
18635
18811
|
"packages/core/release-propagation-work-transitions.js#completeReleasePropagationWork",
|
|
18812
|
+
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupCapture",
|
|
18813
|
+
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupPlan",
|
|
18636
18814
|
"packages/core/release-propagation-capture.js#createPackageReleasePropagationCapture",
|
|
18637
18815
|
"packages/core/release-propagation.js#createReleasePropagationLock",
|
|
18638
18816
|
"packages/core/release-propagation.js#createReleasePropagationReceipt",
|
|
18639
18817
|
"packages/core/release-propagation-work.js#createReleasePropagationStageReceipt",
|
|
18640
18818
|
"packages/core/release-propagation-work.js#createReleasePropagationWork",
|
|
18819
|
+
"packages/core/release-propagation-pickup.js#MANUAL_UPSTREAM_PICKUP_CONFIG_CONTRACT",
|
|
18820
|
+
"packages/core/release-propagation-pickup.js#MANUAL_UPSTREAM_PICKUP_PLAN_CONTRACT",
|
|
18821
|
+
"packages/core/release-propagation-pickup.js#normalizeManualUpstreamPickupConfig",
|
|
18641
18822
|
"packages/core/release-propagation-capture.js#normalizePackageReleasePropagationConfig",
|
|
18642
18823
|
"packages/core/release-propagation.js#normalizeReleasePropagationGraph",
|
|
18643
18824
|
"packages/core/release-propagation-capture.js#PACKAGE_RELEASE_PROPAGATION_CONFIG_CONTRACT",
|
|
@@ -18652,6 +18833,7 @@
|
|
|
18652
18833
|
"packages/core/release-propagation-work-constants.js#RELEASE_PROPAGATION_WORK_CONTRACT",
|
|
18653
18834
|
"packages/core/release-propagation-work-constants.js#RELEASE_PROPAGATION_WORK_STAGES",
|
|
18654
18835
|
"packages/core/release-propagation-work-transitions.js#repairReleasePropagationWork",
|
|
18836
|
+
"packages/core/release-propagation-pickup.js#resolveNpmRegistryRelease",
|
|
18655
18837
|
"packages/core/release-propagation.js#resolvePropagationChannel",
|
|
18656
18838
|
"packages/core/release-propagation-work.js#resumeReleasePropagationWork",
|
|
18657
18839
|
"packages/core/release-propagation-work.js#verifyReleasePropagationWork",
|
|
@@ -18765,7 +18947,7 @@
|
|
|
18765
18947
|
{
|
|
18766
18948
|
"id": "node-api-reference",
|
|
18767
18949
|
"path": "docs/node-api-reference.md",
|
|
18768
|
-
"digest": "sha256:
|
|
18950
|
+
"digest": "sha256:c67e43ac62b7771c997c089da1541e573b7bb3202bdef01816a782b876e403c3"
|
|
18769
18951
|
},
|
|
18770
18952
|
{
|
|
18771
18953
|
"id": "build-facts",
|