@kungfu-tech/buildchain 3.0.9-alpha.8 → 4.0.0-alpha.0
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/AGENTS.md +39 -0
- package/README.md +17 -13
- package/actions/promote-buildchain-ref/README.md +0 -10
- package/actions/release-tail/README.md +6 -10
- package/architecture/internal-capabilities.json +502 -0
- package/architecture/maintainability-baseline.json +59 -0
- package/architecture/maintainability-policy.json +1384 -0
- package/architecture/release-tail-contract-inventory.json +587 -0
- package/architecture/v3-core-mechanism-inventory.json +1043 -0
- package/architecture/v3-core-mechanism-inventory.md +67 -0
- package/architecture/v4-adopter-delivery-parity.json +47 -0
- package/architecture/v4-architecture-constitution.md +210 -0
- package/architecture/v4-bootstrap-authority.json +56 -0
- package/architecture/v4-canonical-contract-fixtures.json +105 -0
- package/architecture/v4-capability-state-machine-manifest.json +480 -0
- package/architecture/v4-capability-state-machine-manifest.schema.json +202 -0
- package/architecture/v4-delivery-warrant-shadow-bootstrap-plan.json +830 -0
- package/architecture/v4-delivery-warrant-shadow-bootstrap-plan.md +223 -0
- package/architecture/v4-delivery-warrant-shadow-bootstrap-plan.schema.json +318 -0
- package/architecture/v4-delivery-warrant-shadow-fixtures.json +227 -0
- package/architecture/v4-delivery-warrant-shadow-fixtures.schema.json +67 -0
- package/architecture/v4-exception-ledger.json +5 -0
- package/architecture/v4-exception-ledger.schema.json +56 -0
- package/architecture/v4-partial-mutation-recovery-qualification.json +65 -0
- package/architecture/v4-platform-stage-checkpoints.json +97 -0
- package/architecture/v4-provider-operation-journal-contract.json +113 -0
- package/architecture/v4-release-activation-shadow-domain.json +61 -0
- package/architecture/v4-release-train-parity.json +68 -0
- package/architecture/v4-rust-libnode-bridge-evaluation.json +107 -0
- package/architecture/v4-rust-libnode-bridge-spike.md +85 -0
- package/architecture/v4-stable-publication-fence.json +66 -0
- package/architecture/v4-stage-capsule-contract.json +90 -0
- package/architecture/v4-stage-capsule-qualification.json +99 -0
- package/architecture/v4-stage-capsule-resume-planner.json +52 -0
- package/architecture/v4-stage-capsule-store-contract.json +72 -0
- package/bin/buildchain.mjs +15 -6
- package/contracts/auditable-demo-scenario-v1.schema.json +1 -1
- package/contracts/buildchain-v2-residuals-v1.json +2 -2
- package/contracts/fixtures/v4-delivery-warrant-trace-v1/golden.json +158 -0
- package/contracts/fixtures/v4-delivery-warrant-trace-v1/property.json +380 -0
- package/contracts/fixtures/v4-delivery-warrant-trace-v1/replay.json +163 -0
- package/contracts/fixtures/v4-partial-mutation-recovery-v1/shared.json +155 -0
- package/contracts/fixtures/v4-provider-operation-journal-v1/shared.json +457 -0
- package/contracts/fixtures/v4-provider-readback-idempotency-v1/shared.json +682 -0
- package/contracts/fixtures/v4-release-activation-shadow-v1/shared.json +53 -0
- package/contracts/fixtures/v4-stable-publication-fence-v1/shared.json +56 -0
- package/contracts/fixtures/v4-stage-capsule-resume-v1/late-platform-failure.json +176 -0
- package/contracts/fixtures/v4-stage-capsule-store-v1/shared.json +132 -0
- package/contracts/fixtures/v4-stage-capsule-v1/shared.json +111 -0
- package/contracts/v4-canonical-contracts-v1.schema.json +182 -0
- package/contracts/v4-delivery-warrant-semantic-diff-report-v1.schema.json +284 -0
- package/contracts/v4-delivery-warrant-trace-v1.schema.json +215 -0
- package/contracts/v4-host-contract-v1.schema.json +135 -0
- package/contracts/v4-partial-mutation-recovery-v1.schema.json +168 -0
- package/contracts/v4-provider-operation-journal-v1.schema.json +381 -0
- package/contracts/v4-release-activation-shadow-v1.schema.json +186 -0
- package/contracts/v4-stable-publication-fence-v1.schema.json +125 -0
- package/contracts/v4-stage-capsule-resume-v1.schema.json +225 -0
- package/contracts/v4-stage-capsule-store-v1.schema.json +154 -0
- package/contracts/v4-stage-capsule-v1.schema.json +178 -0
- package/crates/buildchain-v4-bridge/Cargo.lock +213 -0
- package/crates/buildchain-v4-bridge/Cargo.toml +12 -0
- package/crates/buildchain-v4-bridge/src/main.rs +495 -0
- package/dist/site/agent-index.json +0 -3
- package/dist/site/artifact-schemas.json +0 -6
- package/dist/site/buildchain-contract.json +103 -397
- package/dist/site/buildchain-site.json +302 -270
- package/dist/site/capability-registry.json +9 -11
- package/dist/site/cli-registry.json +8 -30
- package/dist/site/controller-registry.json +48 -8
- package/dist/site/kfd-claims.json +129 -142
- package/dist/site/kfd-upstream-aggregate.json +9 -9
- package/dist/site/manual-registry.json +18 -49
- package/dist/site/node-api-registry.json +1882 -4118
- package/dist/site/page-registry.json +278 -230
- package/dist/site/public-surface-audit.json +87 -185
- package/dist/site/publication-authority-registry.json +11 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +3 -7
- package/dist/site/schemas/kfd-support-projection-v1.schema.json +106 -0
- package/dist/site/site-manifest.json +22 -38
- package/dist/site/workflow-registry.json +80 -35
- package/docs/MAP.md +8 -4
- package/docs/auditable-demo.md +2 -2
- package/docs/aws-us-elastic-runner-burst-plane.md +7 -59
- package/docs/cli-reference.md +15 -92
- package/docs/cli.md +14 -14
- package/docs/dev-alpha-candidate-patrol.md +3 -11
- package/docs/dev-delivery-warrant.md +28 -100
- package/docs/engineering-housekeeper.md +12 -4
- package/docs/getting-started.md +1 -1
- package/docs/install.md +5 -5
- package/docs/kfd-support.md +2 -7
- package/docs/lifecycle-protocol.md +2 -4
- package/docs/node-api-reference.md +414 -523
- package/docs/release-flow.md +31 -31
- package/docs/release-governance.md +16 -28
- package/docs/release-passport.md +2 -15
- package/docs/release-tail-contract.md +13 -6
- package/docs/release-tail-provider-plane.md +13 -19
- package/docs/release-train.md +4 -4
- package/docs/reusable-build-surface.md +14 -27
- package/docs/site-bundle-contract.md +1 -5
- package/docs/stable-candidate-patrol.md +7 -7
- package/docs/v4-canonical-contracts.md +92 -0
- package/docs/v4-delivery-warrant-read-candidate.md +73 -0
- package/docs/v4-delivery-warrant-semantic-diff.md +75 -0
- package/docs/v4-production-release.md +63 -0
- package/docs/v4-stage-capsule.md +193 -0
- package/docs/versioning.md +3 -3
- package/package.json +19 -17
- package/packages/core/adopter-delivery-gate.js +576 -0
- package/packages/core/adopter-delivery-json.js +66 -0
- package/packages/core/artifact-signing.js +0 -61
- package/packages/core/artifact-verification-envelope.js +5 -5
- package/packages/core/build-facts.js +12 -4
- package/packages/core/buildchain-agent-manuals.js +0 -2
- package/packages/core/buildchain-config.js +4 -69
- package/packages/core/buildchain-contract.js +232 -46
- package/packages/core/buildchain-kfd-claims.js +1 -1
- package/packages/core/channel-candidate.js +0 -8
- package/packages/core/channel-promotion-baseline.js +0 -52
- package/packages/core/controller-evidence.js +3 -4
- package/packages/core/dev-alpha-candidate-selection.js +2 -10
- package/packages/core/dev-delivery-warrant-cancellation.js +0 -1
- package/packages/core/dev-delivery-warrant-settlement.js +1 -5
- package/packages/core/dev-delivery-warrant.js +12 -52
- package/packages/core/diagnostics.js +3 -8
- package/packages/core/github-governance-authority.js +3 -1
- package/packages/core/kfd-adopter-category-driver.js +167 -0
- package/packages/core/kfd-adopter-manifest.js +47 -46
- package/packages/core/kfd-gate.js +15 -45
- package/packages/core/paper-agent-entry.js +7 -16
- package/packages/core/paper-fleet.js +2 -2
- package/packages/core/paper-repository.js +2 -3
- package/packages/core/paper-scaffold-content.js +2 -23
- package/packages/core/paper.js +11 -43
- package/packages/core/publication-reproducibility.js +4 -4
- package/packages/core/release-line-bootstrap.js +21 -8
- package/packages/core/release-passport-contract.js +5 -5
- package/packages/core/release-passport.js +20 -131
- package/packages/core/self-dogfood-version.js +48 -35
- package/packages/core/spawn-command.js +232 -8
- package/packages/core/v4-adopter-delivery-parity.js +219 -0
- package/packages/core/v4-canonical-contracts.js +284 -0
- package/packages/core/v4-delivery-warrant-fixture-runner.js +371 -0
- package/packages/core/v4-delivery-warrant-read-candidate.js +279 -0
- package/packages/core/v4-delivery-warrant-semantic-diff-gate.js +352 -0
- package/packages/core/v4-delivery-warrant-shadow-adapter.js +447 -0
- package/packages/core/v4-partial-mutation-recovery-qualification.js +395 -0
- package/packages/core/v4-platform-stage-checkpoints.js +471 -0
- package/packages/core/v4-provider-operation-journal.js +531 -0
- package/packages/core/v4-provider-readback-idempotency.js +394 -0
- package/packages/core/v4-release-activation-shadow.js +519 -0
- package/packages/core/v4-stable-publication-fence.js +357 -0
- package/packages/core/v4-stage-capsule-local-store.js +426 -0
- package/packages/core/v4-stage-capsule-qualification-campaign.js +512 -0
- package/packages/core/v4-stage-capsule-qualification.js +456 -0
- package/packages/core/v4-stage-capsule-resume-planner.js +397 -0
- package/packages/core/v4-stage-capsule-store.js +401 -0
- package/packages/core/v4-stage-capsule.js +319 -0
- package/scripts/assemble-self-publication-admission.mjs +1 -1
- package/scripts/audit-publication-control-plane.mjs +5 -5
- package/scripts/auditable-demo-bundle-verification.mjs +3 -2
- package/scripts/auditable-demo-platform.mjs +2 -2
- package/scripts/auditable-demo-renditions.mjs +1 -1
- package/scripts/auditable-demo.mjs +2 -2
- package/scripts/aws-macos-jit-controller-core.mjs +13 -346
- package/scripts/aws-macos-jit-controller-runtime.mjs +2 -210
- package/scripts/aws-macos-jit-controller.mjs +37 -275
- package/scripts/aws-macos-jit-core.mjs +3 -41
- package/scripts/aws-macos-jit.mjs +0 -12
- package/scripts/aws-windows-jit-campaign.mjs +2 -2
- package/scripts/aws-windows-jit-controller-core.mjs +1 -1
- package/scripts/aws-windows-jit-controller.mjs +3 -3
- package/scripts/build-contract-core.mjs +3 -8
- package/scripts/build-standalone-binary.mjs +3 -14
- package/scripts/buildchain-channel-router.mjs +4 -0
- package/scripts/buildchain-cli-help.mjs +7 -13
- package/scripts/buildchain-contract-lock.mjs +0 -6
- package/scripts/check-action-bundles.mjs +3 -4
- package/scripts/check-internal-architecture.mjs +7 -6
- package/scripts/check-inventory.mjs +30 -25
- package/scripts/check-v4-public-dogfood-contract.mjs +270 -0
- package/scripts/create-release-bundle.mjs +8 -4
- package/scripts/dev-alpha-candidate-patrol.mjs +1 -22
- package/scripts/dev-delivery-proof.mjs +2 -54
- package/scripts/dev-delivery-warrant.mjs +59 -77
- package/scripts/dev-pr-auto-merge.mjs +4 -30
- package/scripts/dev-pr-delivery-warrant.mjs +0 -55
- package/scripts/dispatch-artifact-signing-authority.mjs +7 -4
- package/scripts/generate-buildchain-kfd-witnesses.mjs +94 -88
- package/scripts/generate-channel-build-workflow.mjs +54 -24
- package/scripts/generate-channel-promotion-workflow.mjs +15 -6
- package/scripts/generate-site-bundle.mjs +5 -21
- package/scripts/git-fetch-process-tree.mjs +34 -1
- package/scripts/init-repo.mjs +64 -159
- package/scripts/inspect-artifact-signing-requests.mjs +0 -6
- package/scripts/locked-source-checkout.mjs +3 -4
- package/scripts/maintainability-metrics.mjs +8 -2
- package/scripts/npm-publish-dry-run.mjs +2 -2
- package/scripts/npm-publish-transaction.mjs +2 -2
- package/scripts/publication-commit-evidence.mjs +23 -69
- package/scripts/release-candidate-resolver.mjs +11 -17
- package/scripts/release-tail.mjs +3 -49
- package/scripts/resume-from-candidate-run.mjs +9 -123
- package/scripts/run-lifecycle-core.mjs +12 -13
- package/scripts/seal-artifact-signing-requests.mjs +17 -21
- package/scripts/site-capability-metadata.mjs +2 -7
- package/scripts/stable-candidate-qualification.mjs +10 -10
- package/scripts/v4-architecture.mjs +12 -2
- package/scripts/v4-bridge-bootstrap.mjs +141 -0
- package/scripts/v4-bridge-evidence.mjs +141 -0
- package/scripts/v4-host-adapter.mjs +182 -0
- package/scripts/v4-platform-stage-checkpoint-rehearsal.mjs +207 -0
- package/scripts/v4-stage-capsule-qualification.mjs +528 -0
- package/scripts/v4-stage-capsule-resume-rehearsal.mjs +57 -0
- package/scripts/v4-warrant-shadow-plan.mjs +601 -0
- package/scripts/verify-golden-path.mjs +5 -5
- package/scripts/web-surface-cloudfront-rewrite.mjs +15 -15
- package/scripts/web-surface-core.mjs +2 -8
- package/scripts/workflow-call-contract.mjs +5 -184
- package/contracts/fixtures/kfd-adopter-release-v1/kfd-4-perspective.json +0 -16
- package/contracts/fixtures/kfd-adopter-release-v1/kfd-4-replay.json +0 -57
- package/contracts/fixtures/next-development-transition-v1/anchored-manual-waiting.json +0 -47
- package/contracts/fixtures/next-development-transition-v1/semver-auto-planned.json +0 -47
- package/contracts/fixtures/next-development-transition-v1/version-model-cases.json +0 -40
- package/contracts/next-development-request-v1.schema.json +0 -66
- package/contracts/next-development-transition-v1.schema.json +0 -292
- package/contracts/publication-rehearsal-capsule-v1.schema.json +0 -173
- package/dist/site/schemas/publication-rehearsal-capsule-v1.schema.json +0 -269
- package/dist/site/schemas/release-tail-capabilities-v1.schema.json +0 -353
- package/dist/site/schemas/release-tail-provider-bindings-v1.schema.json +0 -94
- package/docs/next-development-transition.md +0 -119
- package/docs/publication-rehearsal.md +0 -94
- package/packages/core/buildchain-compatibility-proof.js +0 -631
- package/packages/core/dev-delivery-native-proof.js +0 -333
- package/packages/core/dev-delivery-warrant-shadow.js +0 -502
- package/packages/core/next-development-candidate-reservation.js +0 -186
- package/packages/core/next-development-controller.js +0 -726
- package/packages/core/next-development-projection.js +0 -288
- package/packages/core/next-development-transition.js +0 -738
- package/packages/core/publication-rehearsal-projection.js +0 -173
- package/packages/core/publication-rehearsal-runtime.js +0 -921
- package/scripts/aws-macos-jit-instance-rehydrate.mjs +0 -260
- package/scripts/aws-macos-jit-source-rebind.mjs +0 -724
- package/scripts/dev-delivery-native-run.mjs +0 -187
- package/scripts/dev-delivery-two-phase.mjs +0 -598
- package/scripts/generate-next-development-guidance.mjs +0 -49
- package/scripts/materialize-self-release-candidate-version.mjs +0 -137
- package/scripts/next-development-self-dogfood-harness.mjs +0 -409
- package/scripts/next-development-self-dogfood.mjs +0 -532
- package/scripts/next-development-transition.mjs +0 -47
- package/scripts/release-candidate-tail-reseal.mjs +0 -426
- package/templates/native-dev-delivery.yml +0 -82
|
@@ -1,333 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
devDeliveryClone as clone,
|
|
3
|
-
devDeliveryContentRoot,
|
|
4
|
-
devDeliveryExactRoot as exactRoot,
|
|
5
|
-
devDeliveryExactSha as exactSha,
|
|
6
|
-
devDeliveryProtectedBase as protectedBase,
|
|
7
|
-
devDeliveryRepository as repository,
|
|
8
|
-
devDeliveryText as text,
|
|
9
|
-
devDeliveryTimestamp as timestamp,
|
|
10
|
-
} from "./dev-delivery-common.js";
|
|
11
|
-
|
|
12
|
-
export const NATIVE_QUALIFICATION_PROOF_SCHEMA =
|
|
13
|
-
"kungfu.buildchain.native-qualification-proof/v1";
|
|
14
|
-
export const NATIVE_PROOF_REUSE_DECISION_SCHEMA =
|
|
15
|
-
"kungfu.buildchain.native-proof-reuse-decision/v1";
|
|
16
|
-
export const DEV_DELIVERY_QUALIFICATION_RECEIPT_SCHEMA =
|
|
17
|
-
"kungfu.buildchain.dev-delivery-qualification-receipt/v1";
|
|
18
|
-
|
|
19
|
-
const NATIVE_QUALIFICATION_ROOT_SEMANTICS = "semantic-native-identity-v1";
|
|
20
|
-
|
|
21
|
-
function exactRoots(values, label) {
|
|
22
|
-
if (!Array.isArray(values) || values.length === 0) {
|
|
23
|
-
throw new Error(`${label} must contain at least one content root`);
|
|
24
|
-
}
|
|
25
|
-
return [...new Set(values.map((value) => exactRoot(value, label)))].sort();
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
function normalizedPaths(values) {
|
|
29
|
-
if (!Array.isArray(values)) throw new Error("paths must be a JSON array");
|
|
30
|
-
return [
|
|
31
|
-
...new Set(
|
|
32
|
-
values
|
|
33
|
-
.map(text)
|
|
34
|
-
.map((entry) => entry.replace(/^\.\//u, "").replace(/\/+$/u, ""))
|
|
35
|
-
.filter(Boolean),
|
|
36
|
-
),
|
|
37
|
-
].sort();
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
function proofIdentity(body) {
|
|
41
|
-
const identity = clone(body);
|
|
42
|
-
delete identity.qualifiedAt;
|
|
43
|
-
delete identity.observationRoot;
|
|
44
|
-
return identity;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
function proofObservation(body) {
|
|
48
|
-
return { qualifiedAt: body.qualifiedAt };
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
function rooted(body) {
|
|
52
|
-
return { ...body, decisionRoot: devDeliveryContentRoot(body) };
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export function createNativeQualificationProof(input = {}) {
|
|
56
|
-
const body = {
|
|
57
|
-
schema: NATIVE_QUALIFICATION_PROOF_SCHEMA,
|
|
58
|
-
rootSemantics: NATIVE_QUALIFICATION_ROOT_SEMANTICS,
|
|
59
|
-
repository: repository(input.repository),
|
|
60
|
-
protectedBase: protectedBase(input.protectedBase),
|
|
61
|
-
sourceIdentityRoot: exactRoot(
|
|
62
|
-
input.sourceIdentityRoot,
|
|
63
|
-
"sourceIdentityRoot",
|
|
64
|
-
),
|
|
65
|
-
sourcePatchRoot: exactRoot(input.sourcePatchRoot, "sourcePatchRoot"),
|
|
66
|
-
planRoot: exactRoot(input.planRoot, "planRoot"),
|
|
67
|
-
closureRoot: exactRoot(input.closureRoot, "closureRoot"),
|
|
68
|
-
dependencyRoot: exactRoot(input.dependencyRoot, "dependencyRoot"),
|
|
69
|
-
toolchainRoot: exactRoot(input.toolchainRoot, "toolchainRoot"),
|
|
70
|
-
qualifiedBase: exactSha(input.qualifiedBase, "qualifiedBase"),
|
|
71
|
-
affectedPaths: normalizedPaths(input.affectedPaths || []),
|
|
72
|
-
shardEvidenceRoots: exactRoots(
|
|
73
|
-
input.shardEvidenceRoots,
|
|
74
|
-
"shardEvidenceRoots",
|
|
75
|
-
),
|
|
76
|
-
qualifiedAt: timestamp(input.qualifiedAt, "qualifiedAt"),
|
|
77
|
-
};
|
|
78
|
-
body.observationRoot = devDeliveryContentRoot(proofObservation(body));
|
|
79
|
-
return {
|
|
80
|
-
...body,
|
|
81
|
-
proofRoot: devDeliveryContentRoot(proofIdentity(body)),
|
|
82
|
-
};
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export function verifyNativeQualificationProof(proofInput, expected = {}) {
|
|
86
|
-
try {
|
|
87
|
-
const proof = clone(proofInput || {});
|
|
88
|
-
if (proof.schema !== NATIVE_QUALIFICATION_PROOF_SCHEMA) {
|
|
89
|
-
return { ok: false, reason: "unsupported-schema" };
|
|
90
|
-
}
|
|
91
|
-
const proofRoot = proof.proofRoot;
|
|
92
|
-
delete proof.proofRoot;
|
|
93
|
-
if (proof.rootSemantics !== NATIVE_QUALIFICATION_ROOT_SEMANTICS) {
|
|
94
|
-
return { ok: false, reason: "unsupported-root-semantics" };
|
|
95
|
-
}
|
|
96
|
-
if (devDeliveryContentRoot(proofIdentity(proof)) !== proofRoot) {
|
|
97
|
-
return { ok: false, reason: "proof-root-drift" };
|
|
98
|
-
}
|
|
99
|
-
if (
|
|
100
|
-
devDeliveryContentRoot(proofObservation(proof)) !== proof.observationRoot
|
|
101
|
-
) {
|
|
102
|
-
return { ok: false, reason: "observation-root-drift" };
|
|
103
|
-
}
|
|
104
|
-
for (const [field, value] of Object.entries(expected)) {
|
|
105
|
-
if (value !== undefined && proof[field] !== value) {
|
|
106
|
-
return { ok: false, reason: `${field}-mismatch` };
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
createNativeQualificationProof(proof);
|
|
110
|
-
return { ok: true, reason: "exact-native-proof", proofRoot };
|
|
111
|
-
} catch (error) {
|
|
112
|
-
return { ok: false, reason: "invalid-proof", error: error.message };
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
function pathsOverlap(changedPath, affectedPath) {
|
|
117
|
-
if (affectedPath === "*" || affectedPath === "**") return true;
|
|
118
|
-
return (
|
|
119
|
-
changedPath === affectedPath ||
|
|
120
|
-
changedPath.startsWith(`${affectedPath}/`) ||
|
|
121
|
-
affectedPath.startsWith(`${changedPath}/`)
|
|
122
|
-
);
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
function nativeReuseBody(proof, current) {
|
|
126
|
-
const verification = verifyNativeQualificationProof(proof);
|
|
127
|
-
const currentBase = current.currentBase
|
|
128
|
-
? exactSha(current.currentBase, "currentBase")
|
|
129
|
-
: null;
|
|
130
|
-
const changedPaths = normalizedPaths(current.changedPaths || []);
|
|
131
|
-
const base = {
|
|
132
|
-
schema: NATIVE_PROOF_REUSE_DECISION_SCHEMA,
|
|
133
|
-
proofRoot: verification.ok ? proof.proofRoot : null,
|
|
134
|
-
repository: verification.ok ? proof.repository : null,
|
|
135
|
-
protectedBase: verification.ok ? proof.protectedBase : null,
|
|
136
|
-
qualifiedBase: verification.ok ? proof.qualifiedBase : null,
|
|
137
|
-
currentBase,
|
|
138
|
-
graphKnown: current.graphKnown === true,
|
|
139
|
-
changedPaths,
|
|
140
|
-
overlappingPaths: [],
|
|
141
|
-
reusable: false,
|
|
142
|
-
action: "rerun-full-native-qualification",
|
|
143
|
-
reason: verification.reason,
|
|
144
|
-
requiredValidation: "full-native",
|
|
145
|
-
};
|
|
146
|
-
if (!verification.ok) return base;
|
|
147
|
-
|
|
148
|
-
const semanticFields = [
|
|
149
|
-
"sourceIdentityRoot",
|
|
150
|
-
"sourcePatchRoot",
|
|
151
|
-
"planRoot",
|
|
152
|
-
"closureRoot",
|
|
153
|
-
"dependencyRoot",
|
|
154
|
-
"toolchainRoot",
|
|
155
|
-
];
|
|
156
|
-
for (const field of semanticFields) {
|
|
157
|
-
if (!current[field] || current[field] !== proof[field]) {
|
|
158
|
-
return {
|
|
159
|
-
...base,
|
|
160
|
-
reason: `${field}-changed-or-unknown`,
|
|
161
|
-
};
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
if (!currentBase) {
|
|
165
|
-
return { ...base, reason: "current-base-unknown" };
|
|
166
|
-
}
|
|
167
|
-
if (currentBase === proof.qualifiedBase) {
|
|
168
|
-
return {
|
|
169
|
-
...base,
|
|
170
|
-
reusable: true,
|
|
171
|
-
action: "accept-fresh-native-proof",
|
|
172
|
-
reason: "exact-qualified-base",
|
|
173
|
-
requiredValidation: "exact-merge-group",
|
|
174
|
-
};
|
|
175
|
-
}
|
|
176
|
-
if (current.graphKnown !== true || !Array.isArray(current.changedPaths)) {
|
|
177
|
-
return { ...base, reason: "base-delta-attribution-unknown" };
|
|
178
|
-
}
|
|
179
|
-
if (proof.affectedPaths.length === 0) {
|
|
180
|
-
return { ...base, reason: "affected-closure-paths-unknown" };
|
|
181
|
-
}
|
|
182
|
-
const overlap = changedPaths.filter((changedPath) =>
|
|
183
|
-
proof.affectedPaths.some((affectedPath) =>
|
|
184
|
-
pathsOverlap(changedPath, affectedPath),
|
|
185
|
-
),
|
|
186
|
-
);
|
|
187
|
-
if (overlap.length > 0) {
|
|
188
|
-
return {
|
|
189
|
-
...base,
|
|
190
|
-
action: "rerun-affected-native-shards",
|
|
191
|
-
reason: "base-delta-overlaps-affected-closure",
|
|
192
|
-
requiredValidation: "incremental-or-full-native",
|
|
193
|
-
overlappingPaths: overlap,
|
|
194
|
-
};
|
|
195
|
-
}
|
|
196
|
-
return {
|
|
197
|
-
...base,
|
|
198
|
-
reusable: true,
|
|
199
|
-
action: "reuse-native-proof",
|
|
200
|
-
reason: "semantic-source-stable-and-base-delta-disjoint",
|
|
201
|
-
requiredValidation: "exact-merge-group",
|
|
202
|
-
};
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
export function createNativeProofReuseDecision({ proof, current = {} } = {}) {
|
|
206
|
-
return rooted(nativeReuseBody(proof, current));
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
export function verifyNativeProofReuseDecision(
|
|
210
|
-
decisionInput,
|
|
211
|
-
{ proof, current = {} } = {},
|
|
212
|
-
) {
|
|
213
|
-
try {
|
|
214
|
-
const decision = clone(decisionInput || {});
|
|
215
|
-
if (decision.schema !== NATIVE_PROOF_REUSE_DECISION_SCHEMA) {
|
|
216
|
-
return { ok: false, reason: "unsupported-schema" };
|
|
217
|
-
}
|
|
218
|
-
const decisionRoot = decision.decisionRoot;
|
|
219
|
-
delete decision.decisionRoot;
|
|
220
|
-
if (devDeliveryContentRoot(decision) !== decisionRoot) {
|
|
221
|
-
return { ok: false, reason: "decision-root-drift" };
|
|
222
|
-
}
|
|
223
|
-
const recomputed = nativeReuseBody(proof, current);
|
|
224
|
-
if (JSON.stringify(decision) !== JSON.stringify(recomputed)) {
|
|
225
|
-
return { ok: false, reason: "decision-input-drift" };
|
|
226
|
-
}
|
|
227
|
-
return {
|
|
228
|
-
ok: decision.reusable === true,
|
|
229
|
-
reason: decision.reason,
|
|
230
|
-
decisionRoot,
|
|
231
|
-
action: decision.action,
|
|
232
|
-
};
|
|
233
|
-
} catch (error) {
|
|
234
|
-
return { ok: false, reason: "invalid-decision", error: error.message };
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
export function createDevDeliveryWarrantQualifier({
|
|
239
|
-
transition,
|
|
240
|
-
assertWarrantMutation,
|
|
241
|
-
} = {}) {
|
|
242
|
-
return function qualifyDevDeliveryWarrant(
|
|
243
|
-
queueInput,
|
|
244
|
-
warrant,
|
|
245
|
-
{
|
|
246
|
-
nativeProof,
|
|
247
|
-
reuseDecision,
|
|
248
|
-
current = {},
|
|
249
|
-
now = new Date().toISOString(),
|
|
250
|
-
} = {},
|
|
251
|
-
) {
|
|
252
|
-
const currentTime = timestamp(now, "now");
|
|
253
|
-
const transaction = transition(
|
|
254
|
-
queueInput,
|
|
255
|
-
(queue, before) => {
|
|
256
|
-
assertWarrantMutation(before, warrant, currentTime);
|
|
257
|
-
if (before.activeWarrant.phase !== "provisional") {
|
|
258
|
-
throw new Error(
|
|
259
|
-
"only a provisional Delivery Warrant can be qualified",
|
|
260
|
-
);
|
|
261
|
-
}
|
|
262
|
-
const active = before.activeWarrant;
|
|
263
|
-
const proofVerification = verifyNativeQualificationProof(nativeProof, {
|
|
264
|
-
repository: before.repository,
|
|
265
|
-
protectedBase: before.protectedBase,
|
|
266
|
-
sourceIdentityRoot: active.sourceIdentityRoot,
|
|
267
|
-
sourcePatchRoot: active.sourcePatchRoot,
|
|
268
|
-
planRoot: active.planRoot,
|
|
269
|
-
closureRoot: active.closureRoot,
|
|
270
|
-
dependencyRoot: active.dependencyRoot,
|
|
271
|
-
toolchainRoot: active.toolchainRoot,
|
|
272
|
-
});
|
|
273
|
-
if (!proofVerification.ok) {
|
|
274
|
-
throw new Error(`native proof rejected: ${proofVerification.reason}`);
|
|
275
|
-
}
|
|
276
|
-
const reuseVerification = verifyNativeProofReuseDecision(
|
|
277
|
-
reuseDecision,
|
|
278
|
-
{
|
|
279
|
-
proof: nativeProof,
|
|
280
|
-
current: {
|
|
281
|
-
...current,
|
|
282
|
-
sourceIdentityRoot: active.sourceIdentityRoot,
|
|
283
|
-
sourcePatchRoot: active.sourcePatchRoot,
|
|
284
|
-
planRoot: active.planRoot,
|
|
285
|
-
closureRoot: active.closureRoot,
|
|
286
|
-
dependencyRoot: active.dependencyRoot,
|
|
287
|
-
toolchainRoot: active.toolchainRoot,
|
|
288
|
-
},
|
|
289
|
-
},
|
|
290
|
-
);
|
|
291
|
-
if (!reuseVerification.ok) {
|
|
292
|
-
throw new Error(
|
|
293
|
-
`native proof is not reusable: ${reuseVerification.reason}`,
|
|
294
|
-
);
|
|
295
|
-
}
|
|
296
|
-
queue.activeWarrant.phase = "qualified";
|
|
297
|
-
queue.activeWarrant.nativeProofRoot = proofVerification.proofRoot;
|
|
298
|
-
queue.activeWarrant.nativeProofReuseRoot =
|
|
299
|
-
reuseVerification.decisionRoot;
|
|
300
|
-
queue.activeWarrant.qualifiedAt = currentTime;
|
|
301
|
-
queue.activeWarrant.nextAction =
|
|
302
|
-
"Enter the GitHub merge queue at the exact fenced PR head; merge_group remains final authority.";
|
|
303
|
-
const candidate = queue.candidates.find(
|
|
304
|
-
(entry) => entry.candidateId === queue.activeWarrant.candidateId,
|
|
305
|
-
);
|
|
306
|
-
candidate.status = "qualified";
|
|
307
|
-
candidate.updatedAt = currentTime;
|
|
308
|
-
return { candidate, warrant: queue.activeWarrant };
|
|
309
|
-
},
|
|
310
|
-
currentTime,
|
|
311
|
-
);
|
|
312
|
-
const receipt = {
|
|
313
|
-
schema: DEV_DELIVERY_QUALIFICATION_RECEIPT_SCHEMA,
|
|
314
|
-
action: "qualified-warrant",
|
|
315
|
-
candidateId: transaction.result.candidate.candidateId,
|
|
316
|
-
fencingToken: transaction.result.warrant.fencingToken,
|
|
317
|
-
leaseGeneration: transaction.result.warrant.generation,
|
|
318
|
-
phase: transaction.result.warrant.phase,
|
|
319
|
-
nativeProofRoot: transaction.result.warrant.nativeProofRoot,
|
|
320
|
-
nativeProofReuseRoot: transaction.result.warrant.nativeProofReuseRoot,
|
|
321
|
-
qualifiedAt: transaction.result.warrant.qualifiedAt,
|
|
322
|
-
expectedOldStateRoot: transaction.expectedOldStateRoot,
|
|
323
|
-
nextStateRoot: transaction.after.stateRoot,
|
|
324
|
-
nextAction: transaction.result.warrant.nextAction,
|
|
325
|
-
};
|
|
326
|
-
return {
|
|
327
|
-
queue: transaction.after,
|
|
328
|
-
warrant: transaction.result.warrant,
|
|
329
|
-
receipt,
|
|
330
|
-
receiptRoot: devDeliveryContentRoot(receipt),
|
|
331
|
-
};
|
|
332
|
-
};
|
|
333
|
-
}
|