@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,276 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://buildchain.libkungfu.dev/contracts/v4-tail-reseal-v1.schema.json",
|
|
4
|
+
"title": "Buildchain v4 retained-candidate tail reseal request",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"schema",
|
|
9
|
+
"evaluatedAt",
|
|
10
|
+
"repository",
|
|
11
|
+
"source",
|
|
12
|
+
"target",
|
|
13
|
+
"runtime",
|
|
14
|
+
"warrant",
|
|
15
|
+
"retention",
|
|
16
|
+
"failure",
|
|
17
|
+
"stageResume",
|
|
18
|
+
"signing",
|
|
19
|
+
"releaseTail",
|
|
20
|
+
"platforms"
|
|
21
|
+
],
|
|
22
|
+
"properties": {
|
|
23
|
+
"schema": {
|
|
24
|
+
"const": "kungfu-buildchain-v4-tail-reseal-request/v1"
|
|
25
|
+
},
|
|
26
|
+
"evaluatedAt": { "$ref": "#/$defs/clock" },
|
|
27
|
+
"repository": { "$ref": "#/$defs/text" },
|
|
28
|
+
"source": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"additionalProperties": false,
|
|
31
|
+
"required": [
|
|
32
|
+
"runId",
|
|
33
|
+
"runAttempt",
|
|
34
|
+
"sha",
|
|
35
|
+
"treeSha",
|
|
36
|
+
"sourceRoot",
|
|
37
|
+
"workflowFile",
|
|
38
|
+
"workflowName"
|
|
39
|
+
],
|
|
40
|
+
"properties": {
|
|
41
|
+
"runId": { "$ref": "#/$defs/positiveInteger" },
|
|
42
|
+
"runAttempt": { "$ref": "#/$defs/positiveInteger" },
|
|
43
|
+
"sha": { "$ref": "#/$defs/sha" },
|
|
44
|
+
"treeSha": { "$ref": "#/$defs/sha" },
|
|
45
|
+
"sourceRoot": { "$ref": "#/$defs/root" },
|
|
46
|
+
"workflowFile": { "$ref": "#/$defs/text" },
|
|
47
|
+
"workflowName": { "$ref": "#/$defs/text" }
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"target": {
|
|
51
|
+
"type": "object",
|
|
52
|
+
"additionalProperties": false,
|
|
53
|
+
"required": ["channel", "ref", "baseSha", "version"],
|
|
54
|
+
"properties": {
|
|
55
|
+
"channel": { "const": "alpha" },
|
|
56
|
+
"ref": { "const": "alpha/v4/v4.0" },
|
|
57
|
+
"baseSha": { "$ref": "#/$defs/sha" },
|
|
58
|
+
"version": { "type": "string", "pattern": "^4\\.0\\.0-alpha\\.[0-9]+$" }
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"runtime": {
|
|
62
|
+
"type": "object",
|
|
63
|
+
"additionalProperties": false,
|
|
64
|
+
"required": [
|
|
65
|
+
"repository",
|
|
66
|
+
"ref",
|
|
67
|
+
"sha",
|
|
68
|
+
"contractRoot",
|
|
69
|
+
"consumerPolicyReceiptRoot"
|
|
70
|
+
],
|
|
71
|
+
"properties": {
|
|
72
|
+
"repository": { "const": "kungfu-systems/buildchain" },
|
|
73
|
+
"ref": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"pattern": "^(v4-alpha|train/v4/v4\\.0/[A-Za-z0-9._/-]+)$"
|
|
76
|
+
},
|
|
77
|
+
"sha": { "$ref": "#/$defs/sha" },
|
|
78
|
+
"contractRoot": { "$ref": "#/$defs/root" },
|
|
79
|
+
"consumerPolicyReceiptRoot": { "$ref": "#/$defs/root" }
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"warrant": {
|
|
83
|
+
"type": "object",
|
|
84
|
+
"additionalProperties": false,
|
|
85
|
+
"required": [
|
|
86
|
+
"candidateId",
|
|
87
|
+
"generation",
|
|
88
|
+
"fencingToken",
|
|
89
|
+
"status",
|
|
90
|
+
"lineageRoot",
|
|
91
|
+
"qualificationRoot",
|
|
92
|
+
"stateReadbackRoot"
|
|
93
|
+
],
|
|
94
|
+
"properties": {
|
|
95
|
+
"candidateId": { "$ref": "#/$defs/token" },
|
|
96
|
+
"generation": { "$ref": "#/$defs/positiveInteger" },
|
|
97
|
+
"fencingToken": { "$ref": "#/$defs/token" },
|
|
98
|
+
"status": { "const": "qualified" },
|
|
99
|
+
"lineageRoot": { "$ref": "#/$defs/root" },
|
|
100
|
+
"qualificationRoot": { "$ref": "#/$defs/root" },
|
|
101
|
+
"stateReadbackRoot": { "$ref": "#/$defs/root" }
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"retention": {
|
|
105
|
+
"type": "object",
|
|
106
|
+
"additionalProperties": false,
|
|
107
|
+
"required": ["status", "retainUntil", "policyRoot", "readbackRoot"],
|
|
108
|
+
"properties": {
|
|
109
|
+
"status": { "const": "retained" },
|
|
110
|
+
"retainUntil": { "$ref": "#/$defs/clock" },
|
|
111
|
+
"policyRoot": { "$ref": "#/$defs/root" },
|
|
112
|
+
"readbackRoot": { "$ref": "#/$defs/root" }
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"failure": {
|
|
116
|
+
"type": "object",
|
|
117
|
+
"additionalProperties": false,
|
|
118
|
+
"required": [
|
|
119
|
+
"platformId",
|
|
120
|
+
"stage",
|
|
121
|
+
"jobId",
|
|
122
|
+
"jobName",
|
|
123
|
+
"stepName",
|
|
124
|
+
"code",
|
|
125
|
+
"evidenceRoot"
|
|
126
|
+
],
|
|
127
|
+
"properties": {
|
|
128
|
+
"platformId": { "const": "macos-arm64" },
|
|
129
|
+
"stage": { "const": "signing-finalization" },
|
|
130
|
+
"jobId": { "$ref": "#/$defs/positiveInteger" },
|
|
131
|
+
"jobName": { "const": "build / Finalize signed artifact macOS ARM64" },
|
|
132
|
+
"stepName": { "const": "Recompute manifest over final signed bytes" },
|
|
133
|
+
"code": { "$ref": "#/$defs/token" },
|
|
134
|
+
"evidenceRoot": { "$ref": "#/$defs/root" }
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"stageResume": {
|
|
138
|
+
"type": "object",
|
|
139
|
+
"additionalProperties": false,
|
|
140
|
+
"required": [
|
|
141
|
+
"planRoot",
|
|
142
|
+
"qualificationRoot",
|
|
143
|
+
"zeroEffectReuse",
|
|
144
|
+
"decisions"
|
|
145
|
+
],
|
|
146
|
+
"properties": {
|
|
147
|
+
"planRoot": { "$ref": "#/$defs/root" },
|
|
148
|
+
"qualificationRoot": { "$ref": "#/$defs/root" },
|
|
149
|
+
"zeroEffectReuse": { "const": true },
|
|
150
|
+
"decisions": {
|
|
151
|
+
"type": "array",
|
|
152
|
+
"minItems": 16,
|
|
153
|
+
"maxItems": 16,
|
|
154
|
+
"items": {
|
|
155
|
+
"type": "object",
|
|
156
|
+
"additionalProperties": false,
|
|
157
|
+
"required": ["stageKey", "decision", "capsuleRoot", "evidenceRoot"],
|
|
158
|
+
"properties": {
|
|
159
|
+
"stageKey": { "$ref": "#/$defs/token" },
|
|
160
|
+
"decision": { "const": "reuse" },
|
|
161
|
+
"capsuleRoot": { "$ref": "#/$defs/root" },
|
|
162
|
+
"evidenceRoot": { "$ref": "#/$defs/root" }
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"signing": {
|
|
169
|
+
"type": "object",
|
|
170
|
+
"additionalProperties": false,
|
|
171
|
+
"required": [
|
|
172
|
+
"authorityRepository",
|
|
173
|
+
"authorityRunId",
|
|
174
|
+
"runtimeSha",
|
|
175
|
+
"requestRoot",
|
|
176
|
+
"delegationRoot",
|
|
177
|
+
"resultArtifact",
|
|
178
|
+
"resultArtifactRoot",
|
|
179
|
+
"credentialAuthorityId",
|
|
180
|
+
"credentialScopeRoot",
|
|
181
|
+
"credentialLeaseRoot",
|
|
182
|
+
"credentialExpiresAt",
|
|
183
|
+
"providerReadbackRoot"
|
|
184
|
+
],
|
|
185
|
+
"properties": {
|
|
186
|
+
"authorityRepository": { "$ref": "#/$defs/text" },
|
|
187
|
+
"authorityRunId": { "$ref": "#/$defs/positiveInteger" },
|
|
188
|
+
"runtimeSha": { "$ref": "#/$defs/sha" },
|
|
189
|
+
"requestRoot": { "$ref": "#/$defs/root" },
|
|
190
|
+
"delegationRoot": { "$ref": "#/$defs/root" },
|
|
191
|
+
"resultArtifact": { "$ref": "#/$defs/text" },
|
|
192
|
+
"resultArtifactRoot": { "$ref": "#/$defs/root" },
|
|
193
|
+
"credentialAuthorityId": { "$ref": "#/$defs/token" },
|
|
194
|
+
"credentialScopeRoot": { "$ref": "#/$defs/root" },
|
|
195
|
+
"credentialLeaseRoot": { "$ref": "#/$defs/root" },
|
|
196
|
+
"credentialExpiresAt": { "$ref": "#/$defs/clock" },
|
|
197
|
+
"providerReadbackRoot": { "$ref": "#/$defs/root" }
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"releaseTail": {
|
|
201
|
+
"type": "object",
|
|
202
|
+
"additionalProperties": false,
|
|
203
|
+
"required": [
|
|
204
|
+
"declarationRoot",
|
|
205
|
+
"transactionRoot",
|
|
206
|
+
"operationRoot",
|
|
207
|
+
"idempotencyKey",
|
|
208
|
+
"providerReadbackRoot"
|
|
209
|
+
],
|
|
210
|
+
"properties": {
|
|
211
|
+
"declarationRoot": { "$ref": "#/$defs/root" },
|
|
212
|
+
"transactionRoot": { "$ref": "#/$defs/root" },
|
|
213
|
+
"operationRoot": { "$ref": "#/$defs/root" },
|
|
214
|
+
"idempotencyKey": { "$ref": "#/$defs/token" },
|
|
215
|
+
"providerReadbackRoot": { "$ref": "#/$defs/root" }
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
"platforms": {
|
|
219
|
+
"type": "array",
|
|
220
|
+
"minItems": 4,
|
|
221
|
+
"maxItems": 4,
|
|
222
|
+
"items": { "$ref": "#/$defs/platform" }
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
"$defs": {
|
|
226
|
+
"root": { "type": "string", "pattern": "^sha256:[0-9a-f]{64}$" },
|
|
227
|
+
"sha": { "type": "string", "pattern": "^[0-9a-f]{40}$" },
|
|
228
|
+
"clock": {
|
|
229
|
+
"type": "string",
|
|
230
|
+
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}\\.[0-9]{3}Z$"
|
|
231
|
+
},
|
|
232
|
+
"text": { "type": "string", "minLength": 1 },
|
|
233
|
+
"token": {
|
|
234
|
+
"type": "string",
|
|
235
|
+
"pattern": "^[A-Za-z0-9][A-Za-z0-9._:/-]*$"
|
|
236
|
+
},
|
|
237
|
+
"positiveInteger": { "type": "integer", "minimum": 1 },
|
|
238
|
+
"platform": {
|
|
239
|
+
"type": "object",
|
|
240
|
+
"additionalProperties": false,
|
|
241
|
+
"required": [
|
|
242
|
+
"id",
|
|
243
|
+
"name",
|
|
244
|
+
"runner",
|
|
245
|
+
"artifactName",
|
|
246
|
+
"artifactRoot",
|
|
247
|
+
"artifactArchiveRoot",
|
|
248
|
+
"manifestArtifactName",
|
|
249
|
+
"manifestRoot",
|
|
250
|
+
"manifestArchiveRoot",
|
|
251
|
+
"artifactPaths",
|
|
252
|
+
"capsuleRoot"
|
|
253
|
+
],
|
|
254
|
+
"properties": {
|
|
255
|
+
"id": {
|
|
256
|
+
"enum": ["linux-arm64", "linux-x64", "macos-arm64", "windows-x64"]
|
|
257
|
+
},
|
|
258
|
+
"name": { "$ref": "#/$defs/text" },
|
|
259
|
+
"runner": { "$ref": "#/$defs/text" },
|
|
260
|
+
"artifactName": { "$ref": "#/$defs/text" },
|
|
261
|
+
"artifactRoot": { "$ref": "#/$defs/root" },
|
|
262
|
+
"artifactArchiveRoot": { "$ref": "#/$defs/root" },
|
|
263
|
+
"manifestArtifactName": { "$ref": "#/$defs/text" },
|
|
264
|
+
"manifestRoot": { "$ref": "#/$defs/root" },
|
|
265
|
+
"manifestArchiveRoot": { "$ref": "#/$defs/root" },
|
|
266
|
+
"artifactPaths": {
|
|
267
|
+
"type": "array",
|
|
268
|
+
"minItems": 1,
|
|
269
|
+
"items": { "$ref": "#/$defs/text" },
|
|
270
|
+
"uniqueItems": true
|
|
271
|
+
},
|
|
272
|
+
"capsuleRoot": { "$ref": "#/$defs/root" }
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
}
|
|
@@ -19,6 +19,11 @@
|
|
|
19
19
|
"schemas/release-passport-v1.schema.json",
|
|
20
20
|
"schemas/kfd-agent-hub-adoption.schema.json",
|
|
21
21
|
"schemas/kfd-product-gate-input-v1.schema.json",
|
|
22
|
+
"schemas/dev-delivery-authority-v2.schema.json",
|
|
23
|
+
"schemas/v4-compatibility-facts-v1.schema.json",
|
|
24
|
+
"schemas/v4-publication-rehearsal-capsule-v1.schema.json",
|
|
25
|
+
"schemas/v4-adopter-delivery-v1.schema.json",
|
|
26
|
+
"schemas/release-tail-capabilities-v1.schema.json",
|
|
22
27
|
"buildchain-contract.json",
|
|
23
28
|
"kfd-upstream-aggregate.json",
|
|
24
29
|
"kfd-claims.json",
|
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|
"schemas/release-passport-v1.schema.json",
|
|
8
8
|
"schemas/kfd-agent-hub-adoption.schema.json",
|
|
9
9
|
"schemas/kfd-product-gate-input-v1.schema.json",
|
|
10
|
+
"schemas/dev-delivery-authority-v2.schema.json",
|
|
11
|
+
"schemas/v4-compatibility-facts-v1.schema.json",
|
|
12
|
+
"schemas/v4-publication-rehearsal-capsule-v1.schema.json",
|
|
13
|
+
"schemas/v4-adopter-delivery-v1.schema.json",
|
|
14
|
+
"schemas/release-tail-capabilities-v1.schema.json",
|
|
10
15
|
"kfd-support.json",
|
|
11
16
|
"artifact-evidence.json",
|
|
12
17
|
"product-mechanism.json",
|
|
@@ -41,6 +46,11 @@
|
|
|
41
46
|
"schemas/release-passport-v1.schema.json",
|
|
42
47
|
"schemas/kfd-agent-hub-adoption.schema.json",
|
|
43
48
|
"schemas/kfd-product-gate-input-v1.schema.json",
|
|
49
|
+
"schemas/dev-delivery-authority-v2.schema.json",
|
|
50
|
+
"schemas/v4-compatibility-facts-v1.schema.json",
|
|
51
|
+
"schemas/v4-publication-rehearsal-capsule-v1.schema.json",
|
|
52
|
+
"schemas/v4-adopter-delivery-v1.schema.json",
|
|
53
|
+
"schemas/release-tail-capabilities-v1.schema.json",
|
|
44
54
|
"buildchain-contract.json",
|
|
45
55
|
"kfd-claims.json",
|
|
46
56
|
"product-mechanism.json",
|