@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
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"contract": "kungfu-buildchain-next-development-transition/v1",
|
|
4
|
+
"idempotencyKey": "sha256:cf805c1933cbc3e571c21af3ae030139bebafb08e2436b3c479c411b2cd2d22c",
|
|
5
|
+
"repository": "example/widget",
|
|
6
|
+
"completedAlpha": {
|
|
7
|
+
"outcome": "succeeded",
|
|
8
|
+
"version": "1.4.2-alpha.7",
|
|
9
|
+
"exactTag": "v1.4.2-alpha.7",
|
|
10
|
+
"releaseSha": "1111111111111111111111111111111111111111",
|
|
11
|
+
"treeSha": "2222222222222222222222222222222222222222",
|
|
12
|
+
"publicationRoot": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
|
|
13
|
+
"completedAt": "2026-08-11T01:00:00.000Z"
|
|
14
|
+
},
|
|
15
|
+
"completedAlphaRoot": "sha256:18e65c63aba0df789e0b0e68903733825d87e292b82bcb8fd3793ca45dca6266",
|
|
16
|
+
"alphaOutcome": "preserved-success",
|
|
17
|
+
"model": {
|
|
18
|
+
"strategy": "anchored",
|
|
19
|
+
"next": "manual"
|
|
20
|
+
},
|
|
21
|
+
"target": {
|
|
22
|
+
"version": null,
|
|
23
|
+
"anchor": null
|
|
24
|
+
},
|
|
25
|
+
"declaredPaths": ["package.json", "release.json"],
|
|
26
|
+
"adapter": {
|
|
27
|
+
"environmentVariable": "BUILDCHAIN_VERSION",
|
|
28
|
+
"sourcePaths": ["package.json"],
|
|
29
|
+
"derivedPaths": [],
|
|
30
|
+
"allowedChangePaths": ["package.json"],
|
|
31
|
+
"readOnlyPaths": ["release.json"],
|
|
32
|
+
"derivationStage": null,
|
|
33
|
+
"verificationStage": "lifecycle.verify"
|
|
34
|
+
},
|
|
35
|
+
"effectBounds": {
|
|
36
|
+
"allowedPaths": ["package.json"],
|
|
37
|
+
"refUpdates": [],
|
|
38
|
+
"forbiddenRefNamespaces": ["refs/heads/alpha/", "refs/tags/"]
|
|
39
|
+
},
|
|
40
|
+
"state": {
|
|
41
|
+
"status": "waiting-anchor",
|
|
42
|
+
"generation": 1,
|
|
43
|
+
"stateRoot": "sha256:4bbca86f960a7c1a10d76d01736422e3129f3f16d3e69e0800a0829201122dd4"
|
|
44
|
+
},
|
|
45
|
+
"materialization": null,
|
|
46
|
+
"transitions": []
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"contract": "kungfu-buildchain-next-development-transition/v1",
|
|
4
|
+
"idempotencyKey": "sha256:37ee52799584a989b059db060b7ce062feb56fbeff452033245046fdf3b21e78",
|
|
5
|
+
"repository": "example/widget",
|
|
6
|
+
"completedAlpha": {
|
|
7
|
+
"outcome": "succeeded",
|
|
8
|
+
"version": "1.4.2-alpha.7",
|
|
9
|
+
"exactTag": "v1.4.2-alpha.7",
|
|
10
|
+
"releaseSha": "1111111111111111111111111111111111111111",
|
|
11
|
+
"treeSha": "2222222222222222222222222222222222222222",
|
|
12
|
+
"publicationRoot": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
|
|
13
|
+
"completedAt": "2026-08-11T01:00:00.000Z"
|
|
14
|
+
},
|
|
15
|
+
"completedAlphaRoot": "sha256:18e65c63aba0df789e0b0e68903733825d87e292b82bcb8fd3793ca45dca6266",
|
|
16
|
+
"alphaOutcome": "preserved-success",
|
|
17
|
+
"model": {
|
|
18
|
+
"strategy": "semver",
|
|
19
|
+
"next": "auto"
|
|
20
|
+
},
|
|
21
|
+
"target": {
|
|
22
|
+
"version": "1.4.2-alpha.8",
|
|
23
|
+
"anchor": null
|
|
24
|
+
},
|
|
25
|
+
"declaredPaths": ["package.json"],
|
|
26
|
+
"adapter": {
|
|
27
|
+
"environmentVariable": "BUILDCHAIN_VERSION",
|
|
28
|
+
"sourcePaths": ["package.json"],
|
|
29
|
+
"derivedPaths": [],
|
|
30
|
+
"allowedChangePaths": ["package.json"],
|
|
31
|
+
"readOnlyPaths": [],
|
|
32
|
+
"derivationStage": null,
|
|
33
|
+
"verificationStage": "lifecycle.verify"
|
|
34
|
+
},
|
|
35
|
+
"effectBounds": {
|
|
36
|
+
"allowedPaths": ["package.json"],
|
|
37
|
+
"refUpdates": [],
|
|
38
|
+
"forbiddenRefNamespaces": ["refs/heads/alpha/", "refs/tags/"]
|
|
39
|
+
},
|
|
40
|
+
"state": {
|
|
41
|
+
"status": "planned",
|
|
42
|
+
"generation": 1,
|
|
43
|
+
"stateRoot": "sha256:4ef8ac1ff07cb14633994625e65a340acb3130ae56bbc88ee81504f09df3fa0f"
|
|
44
|
+
},
|
|
45
|
+
"materialization": null,
|
|
46
|
+
"transitions": []
|
|
47
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"contract": "kungfu-buildchain-next-development-version-model-fixtures/v1",
|
|
3
|
+
"positive": [
|
|
4
|
+
{
|
|
5
|
+
"name": "semver-auto",
|
|
6
|
+
"model": { "strategy": "semver", "next": "auto" }
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"name": "anchored-manual",
|
|
10
|
+
"model": { "strategy": "anchored", "next": "manual" }
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"negative": [
|
|
14
|
+
{
|
|
15
|
+
"name": "semver-manual",
|
|
16
|
+
"model": { "strategy": "semver", "next": "manual" },
|
|
17
|
+
"error": "version model must be semver/auto or anchored/manual"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "anchored-auto",
|
|
21
|
+
"model": { "strategy": "anchored", "next": "auto" },
|
|
22
|
+
"error": "version model must be semver/auto or anchored/manual"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "semver-auto-with-anchor",
|
|
26
|
+
"model": { "strategy": "semver", "next": "auto" },
|
|
27
|
+
"anchor": {
|
|
28
|
+
"manifestPath": "release.json",
|
|
29
|
+
"manifestRoot": "sha256:4444444444444444444444444444444444444444444444444444444444444444"
|
|
30
|
+
},
|
|
31
|
+
"error": "semver/auto must not declare an anchor"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "anchored-manual-target-without-anchor",
|
|
35
|
+
"model": { "strategy": "anchored", "next": "manual" },
|
|
36
|
+
"targetVersion": "22.1.0",
|
|
37
|
+
"error": "anchored/manual targetVersion requires an anchor"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"packages": {
|
|
3
|
+
"buildchain": {
|
|
4
|
+
"name": "@kungfu-tech/buildchain",
|
|
5
|
+
"version": "3.0.9-alpha.16",
|
|
6
|
+
"archivePath": ".buildchain/adopter-delivery-archives/kungfu-tech-buildchain-3.0.9-alpha.16.tgz",
|
|
7
|
+
"archiveRoot": "sha256:3f425e2c77d11f0bee8eb9aa2448566bca7a9d14672a7e528ced3e505b3f14a3",
|
|
8
|
+
"artifactRoot": "sha256:3f425e2c77d11f0bee8eb9aa2448566bca7a9d14672a7e528ced3e505b3f14a3"
|
|
9
|
+
},
|
|
10
|
+
"kfd": {
|
|
11
|
+
"name": "@kungfu-tech/kfd",
|
|
12
|
+
"version": "1.0.0-alpha.65",
|
|
13
|
+
"archivePath": ".buildchain/adopter-delivery-archives/kungfu-tech-kfd-1.0.0-alpha.65.tgz",
|
|
14
|
+
"archiveRoot": "sha256:c4dbd3f954910236d7f0823ea6887f4151e43b871df526ccdd599123421bced2",
|
|
15
|
+
"artifactRoot": "sha256:c0781bcaf191a58561ae32ee2fbedabbb48ed50b5725c356fbd83704089637f8"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"expectedAuthorityRoot": "sha256:9ba0cc6042b189ce749d01003617b57bcd03ea6ecf40e96d19e8ecbbfa347134"
|
|
19
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"input": {
|
|
3
|
+
"authority": {
|
|
4
|
+
"version": "3.0.9-alpha.16",
|
|
5
|
+
"sourceCommit": "6b96bdad8d9f8ccf9275f27d9370a226a9c78465",
|
|
6
|
+
"packageRoot": "sha256:3f425e2c77d11f0bee8eb9aa2448566bca7a9d14672a7e528ced3e505b3f14a3",
|
|
7
|
+
"gateRoot": "sha256:cdcb54ea103fe62a94e2f0755fab5b105802f32e569f47e77d7a1f3ff0636cfc",
|
|
8
|
+
"protocol": {
|
|
9
|
+
"id": "buildchain.adopter/json-assertion",
|
|
10
|
+
"version": "1.0.0",
|
|
11
|
+
"root": "sha256:bcc9fc43402c50e11c68dfec5bba63ecc5b10f2f304921dec2ba95b44c43ad13"
|
|
12
|
+
},
|
|
13
|
+
"profile": {
|
|
14
|
+
"id": "buildchain.adopter/delivery-infrastructure",
|
|
15
|
+
"version": "1.0.0",
|
|
16
|
+
"root": "sha256:94dc2f34f76be8f4627fb84b753ad855492555111b37cbf3edcee68e2f30e126"
|
|
17
|
+
},
|
|
18
|
+
"protected": true,
|
|
19
|
+
"published": true
|
|
20
|
+
},
|
|
21
|
+
"candidate": {
|
|
22
|
+
"version": "4.0.1-alpha.4",
|
|
23
|
+
"sourceCommit": "e0342713c7447960c13bd73377282b2e93f4853d",
|
|
24
|
+
"packageRoot": "sha256:ca25e78191aedb60e999a12100b52caa2b075e29a46f0baa91722f018adb6609",
|
|
25
|
+
"gateRoot": "sha256:cdcb54ea103fe62a94e2f0755fab5b105802f32e569f47e77d7a1f3ff0636cfc",
|
|
26
|
+
"protocol": {
|
|
27
|
+
"id": "buildchain.adopter/json-assertion",
|
|
28
|
+
"version": "1.0.0",
|
|
29
|
+
"root": "sha256:bcc9fc43402c50e11c68dfec5bba63ecc5b10f2f304921dec2ba95b44c43ad13"
|
|
30
|
+
},
|
|
31
|
+
"profile": {
|
|
32
|
+
"id": "buildchain.adopter/delivery-infrastructure",
|
|
33
|
+
"version": "1.0.0",
|
|
34
|
+
"root": "sha256:94dc2f34f76be8f4627fb84b753ad855492555111b37cbf3edcee68e2f30e126"
|
|
35
|
+
},
|
|
36
|
+
"authorityVersion": "3.0.9-alpha.16"
|
|
37
|
+
},
|
|
38
|
+
"gateResult": {
|
|
39
|
+
"schemaVersion": 1,
|
|
40
|
+
"contract": "kungfu-buildchain-adopter-delivery-result",
|
|
41
|
+
"status": "passed",
|
|
42
|
+
"qualifying": false,
|
|
43
|
+
"selfCertified": false,
|
|
44
|
+
"project": {
|
|
45
|
+
"instanceId": "kungfu-systems/buildchain@4.0.1-alpha.4",
|
|
46
|
+
"adopterId": "kungfu-systems/buildchain"
|
|
47
|
+
},
|
|
48
|
+
"artifact": {
|
|
49
|
+
"kind": "package",
|
|
50
|
+
"coordinate": "@kungfu-tech/buildchain@4.0.1-alpha.4",
|
|
51
|
+
"root": "sha256:ca25e78191aedb60e999a12100b52caa2b075e29a46f0baa91722f018adb6609"
|
|
52
|
+
},
|
|
53
|
+
"protocol": {
|
|
54
|
+
"id": "buildchain.adopter/json-assertion",
|
|
55
|
+
"version": "1.0.0",
|
|
56
|
+
"loaded": true,
|
|
57
|
+
"reportRoot": "sha256:01b903f7315a51d0d26d8759194a82d7d45d0d05ad10480dbb6ebf7398445d5c"
|
|
58
|
+
},
|
|
59
|
+
"artifactProfile": {
|
|
60
|
+
"id": "buildchain.artifact/package",
|
|
61
|
+
"version": "1.0.0",
|
|
62
|
+
"loaded": true,
|
|
63
|
+
"valid": true
|
|
64
|
+
},
|
|
65
|
+
"semanticReport": {
|
|
66
|
+
"valid": true,
|
|
67
|
+
"qualifying": false,
|
|
68
|
+
"selfCertified": false,
|
|
69
|
+
"releaseAuthorized": false
|
|
70
|
+
},
|
|
71
|
+
"nonClaims": [
|
|
72
|
+
"A passing delivery gate does not grant runtime permission, release authorization, or independent certification.",
|
|
73
|
+
"Protocol semantics remain owned by the selected protocol driver and its published authority."
|
|
74
|
+
],
|
|
75
|
+
"issues": [],
|
|
76
|
+
"gateRoot": "sha256:8f74b438d1b581c02704d3ff677b2be4dcb5a6d0dc4d9435ef42a368ff834ceb"
|
|
77
|
+
},
|
|
78
|
+
"warrant": {
|
|
79
|
+
"outcome": "merged",
|
|
80
|
+
"sourceHead": "e0342713c7447960c13bd73377282b2e93f4853d",
|
|
81
|
+
"sourceProofRoot": "sha256:2aeeaacaa4f2d136155ac2c478a7939772a162c284a3bfd0458dfb00cce872aa",
|
|
82
|
+
"nativeProofRoot": "sha256:d66669fff994b931c9f89f3c313f37ad625f5aae29af0f6528054b8782b607a5",
|
|
83
|
+
"integrationProofRoot": "sha256:e5623b4de65781d68a73401857d000fba970bdad62a94b5cd7b2d39fee176613"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"lineage": {
|
|
87
|
+
"schemaVersion": 1,
|
|
88
|
+
"contract": "kungfu-buildchain-v4-adopter-delivery-bootstrap-lineage/v1",
|
|
89
|
+
"sourceAuthorityCommit": "6b96bdad8d9f8ccf9275f27d9370a226a9c78465",
|
|
90
|
+
"targetBaseCommit": "e0342713c7447960c13bd73377282b2e93f4853d",
|
|
91
|
+
"authorityArchiveRoot": "sha256:3f425e2c77d11f0bee8eb9aa2448566bca7a9d14672a7e528ced3e505b3f14a3"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"contract": "kungfu-buildchain-v4-adopter-delivery/v1",
|
|
4
|
+
"driverSelector": "json-assertion",
|
|
5
|
+
"artifactProfileSelector": "git-commit",
|
|
6
|
+
"request": {
|
|
7
|
+
"schemaVersion": 1,
|
|
8
|
+
"contract": "kungfu-buildchain-adopter-delivery-request",
|
|
9
|
+
"protocol": {
|
|
10
|
+
"id": "buildchain.adopter/json-assertion",
|
|
11
|
+
"version": "1.0.0"
|
|
12
|
+
},
|
|
13
|
+
"artifactProfile": {
|
|
14
|
+
"id": "buildchain.artifact/git-commit",
|
|
15
|
+
"version": "1.0.0"
|
|
16
|
+
},
|
|
17
|
+
"project": {
|
|
18
|
+
"instanceId": "example.org/adopter@1.0.0",
|
|
19
|
+
"adopterId": "example.org/adopter"
|
|
20
|
+
},
|
|
21
|
+
"artifact": {
|
|
22
|
+
"kind": "git-commit",
|
|
23
|
+
"coordinate": "example.org/adopter@1111111111111111111111111111111111111111",
|
|
24
|
+
"root": "sha256:2222222222222222222222222222222222222222222222222222222222222222"
|
|
25
|
+
},
|
|
26
|
+
"declaration": { "valid": true }
|
|
27
|
+
},
|
|
28
|
+
"context": {}
|
|
29
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"contract": "kungfu-buildchain-v4-adopter-delivery/v1",
|
|
4
|
+
"driverSelector": "private-buildchain-driver",
|
|
5
|
+
"artifactProfileSelector": "git-commit",
|
|
6
|
+
"request": {
|
|
7
|
+
"schemaVersion": 1,
|
|
8
|
+
"contract": "kungfu-buildchain-adopter-delivery-request",
|
|
9
|
+
"protocol": { "id": "private.buildchain/driver", "version": "1.0.0" },
|
|
10
|
+
"artifactProfile": {
|
|
11
|
+
"id": "buildchain.artifact/git-commit",
|
|
12
|
+
"version": "1.0.0"
|
|
13
|
+
},
|
|
14
|
+
"project": {
|
|
15
|
+
"instanceId": "example.org/adopter@1.0.0",
|
|
16
|
+
"adopterId": "example.org/adopter"
|
|
17
|
+
},
|
|
18
|
+
"artifact": {
|
|
19
|
+
"kind": "git-commit",
|
|
20
|
+
"coordinate": "example.org/adopter@1111111111111111111111111111111111111111",
|
|
21
|
+
"root": "sha256:2222222222222222222222222222222222222222222222222222222222222222"
|
|
22
|
+
},
|
|
23
|
+
"declaration": { "valid": true }
|
|
24
|
+
},
|
|
25
|
+
"context": {}
|
|
26
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"contract": "kungfu-buildchain-v4-adopter-delivery-offline-vectors/v1",
|
|
4
|
+
"sourceAuthority": {
|
|
5
|
+
"branch": "dev/v3/v3.0",
|
|
6
|
+
"commit": "6b96bdad8d9f8ccf9275f27d9370a226a9c78465",
|
|
7
|
+
"vectorSuiteRoot": "sha256:c978707556406ffda4ef4192032332c01c2da1cebb6ad8c4f0edfc65d5cef0c7"
|
|
8
|
+
},
|
|
9
|
+
"initialTargetBase": "e5611377efc03178f8687d99968cfdfa3ce2825b",
|
|
10
|
+
"targetBase": "e0342713c7447960c13bd73377282b2e93f4853d",
|
|
11
|
+
"cases": [
|
|
12
|
+
{
|
|
13
|
+
"id": "positive-public-driver",
|
|
14
|
+
"class": "positive",
|
|
15
|
+
"expected": "passed"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "positive-n-minus-one-bootstrap",
|
|
19
|
+
"class": "positive",
|
|
20
|
+
"expected": "passed"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "positive-published-archive",
|
|
24
|
+
"class": "positive",
|
|
25
|
+
"expected": "loaded"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "negative-selector",
|
|
29
|
+
"class": "negative",
|
|
30
|
+
"expected": "fail-closed"
|
|
31
|
+
},
|
|
32
|
+
{ "id": "negative-driver", "class": "negative", "expected": "fail-closed" },
|
|
33
|
+
{
|
|
34
|
+
"id": "negative-archive-identity",
|
|
35
|
+
"class": "negative",
|
|
36
|
+
"expected": "fail-closed"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "negative-bootstrap-lineage",
|
|
40
|
+
"class": "negative",
|
|
41
|
+
"expected": "fail-closed"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "negative-protocol-version",
|
|
45
|
+
"class": "negative",
|
|
46
|
+
"expected": "fail-closed"
|
|
47
|
+
},
|
|
48
|
+
{ "id": "tamper-readback", "class": "tamper", "expected": "fail-closed" }
|
|
49
|
+
]
|
|
50
|
+
}
|