@kungfu-tech/kfd 1.0.0-alpha.19 → 1.0.0-alpha.20
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/.buildchain/kfd-1/contract-world.witness.json +579 -91
- package/.buildchain/kfd-2/kfd-foundation.trust-assessment.json +238 -0
- package/.buildchain/kfd-2/kfd-foundation.trust-claims.json +225 -0
- package/.buildchain/kfd-2/public-release-trust.claim.json +30 -18
- package/.buildchain/kfd-3/collaboration-interface.artifact.json +242 -57
- package/.buildchain/kfd-3/collaboration-interface.json +99 -1
- package/.buildchain/kfd-3/collaboration-interface.prebuild.json +261 -32
- package/README.md +18 -13
- package/buildchain.contract-lock.json +5 -5
- package/decisions/{kfd-1.md → KFD-1.md} +40 -12
- package/decisions/{kfd-2.md → KFD-2.md} +37 -4
- package/decisions/{kfd-3.md → KFD-3.md} +17 -1
- package/docs/KFD-1-usage.md +37 -0
- package/docs/KFD-2-usage.md +123 -0
- package/docs/{kfd-3-collaboration-interface.md → KFD-3-usage.md} +21 -0
- package/docs/KFD-4-usage.md +31 -0
- package/docs/MAP.md +13 -7
- package/kfd.release.json +1 -1
- package/package.json +3 -1
- package/registry.json +4 -4
- package/release-impact.json +41 -5
- package/schemas/kfd-1/contract-world.schema.json +67 -4
- package/schemas/kfd-1/witness.schema.json +113 -0
- package/schemas/kfd-2/trust-assessment.schema.json +313 -0
- package/schemas/kfd-2/trust-claims.schema.json +334 -0
- package/schemas/kfd-3/collaboration-interface.schema.json +60 -0
- package/schemas/kfd-3/witness.schema.json +8 -0
- package/schemas/kfd-standards.schema.json +124 -0
- package/scripts/check.mjs +256 -12
- package/scripts/update-kfd-1-witness.mjs +17 -6
- package/scripts/update-kfd-2-claim.mjs +226 -5
- package/scripts/update-kfd-3-witness.mjs +35 -3
- package/scripts/update-site-bundle.mjs +32 -2
- package/site/kfd-site.json +67 -4
- package/standards.json +634 -11
- package/docs/kfd-2-release-trust.md +0 -78
- /package/decisions/{kfd-4.md → KFD-4.md} +0 -0
|
@@ -10,96 +10,216 @@
|
|
|
10
10
|
"kind": "standard-metadata",
|
|
11
11
|
"name": "KFD standards metadata and release propagation surfaces",
|
|
12
12
|
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-1/contract-world.schema.json",
|
|
13
|
-
"digest": "sha256:
|
|
13
|
+
"digest": "sha256:68aae8bbfcce0776e5f5317e133ae1b494a41ecdea1f992bb51f71d1e75f2ca4"
|
|
14
14
|
},
|
|
15
15
|
"canonicalPolicy": {
|
|
16
16
|
"path": "standards.json",
|
|
17
|
-
"sha256": "
|
|
17
|
+
"sha256": "68aae8bbfcce0776e5f5317e133ae1b494a41ecdea1f992bb51f71d1e75f2ca4"
|
|
18
18
|
},
|
|
19
19
|
"registry": {
|
|
20
20
|
"path": "registry.json",
|
|
21
|
-
"sha256": "
|
|
21
|
+
"sha256": "003842480fb9b3b8847735db729bc94bace4f60a25e730df839f4cb74c9f1ab5"
|
|
22
22
|
},
|
|
23
23
|
"surfaces": [
|
|
24
24
|
{
|
|
25
25
|
"name": "readme",
|
|
26
26
|
"sourcePath": "README.md",
|
|
27
|
-
"sourceSha256": "
|
|
27
|
+
"sourceSha256": "5843355e9758ffd06488486f77fbdbaa9afe78bee8cdde2d82c75a132ff982f5",
|
|
28
28
|
"artifactPath": "README.md",
|
|
29
|
-
"expectedSha256": "
|
|
30
|
-
"byteForByte": true
|
|
29
|
+
"expectedSha256": "5843355e9758ffd06488486f77fbdbaa9afe78bee8cdde2d82c75a132ff982f5",
|
|
30
|
+
"byteForByte": true,
|
|
31
|
+
"class": "cross-time",
|
|
32
|
+
"classes": [
|
|
33
|
+
"cross-time"
|
|
34
|
+
],
|
|
35
|
+
"description": "Published KFD package surface at README.md.",
|
|
36
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
37
|
+
"impactProjection": {
|
|
38
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
39
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
40
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
41
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
42
|
+
}
|
|
31
43
|
},
|
|
32
44
|
{
|
|
33
45
|
"name": "kfd-1-document",
|
|
34
|
-
"sourcePath": "decisions/
|
|
35
|
-
"sourceSha256": "
|
|
36
|
-
"artifactPath": "decisions/
|
|
37
|
-
"expectedSha256": "
|
|
38
|
-
"byteForByte": true
|
|
46
|
+
"sourcePath": "decisions/KFD-1.md",
|
|
47
|
+
"sourceSha256": "0b7b1ec54d661b271f91f02cefa97b11e1d1ef9c637efd2d1878d5f9c9185d80",
|
|
48
|
+
"artifactPath": "decisions/KFD-1.md",
|
|
49
|
+
"expectedSha256": "0b7b1ec54d661b271f91f02cefa97b11e1d1ef9c637efd2d1878d5f9c9185d80",
|
|
50
|
+
"byteForByte": true,
|
|
51
|
+
"class": "cross-time",
|
|
52
|
+
"classes": [
|
|
53
|
+
"cross-time"
|
|
54
|
+
],
|
|
55
|
+
"description": "Published KFD decision text at decisions/KFD-1.md.",
|
|
56
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
57
|
+
"impactProjection": {
|
|
58
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
59
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
60
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
61
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
62
|
+
}
|
|
39
63
|
},
|
|
40
64
|
{
|
|
41
65
|
"name": "kfd-2-document",
|
|
42
|
-
"sourcePath": "decisions/
|
|
43
|
-
"sourceSha256": "
|
|
44
|
-
"artifactPath": "decisions/
|
|
45
|
-
"expectedSha256": "
|
|
46
|
-
"byteForByte": true
|
|
66
|
+
"sourcePath": "decisions/KFD-2.md",
|
|
67
|
+
"sourceSha256": "6bc01776e478afc802c57c4e21a40bcfebf170f90ae039345d883c292053b622",
|
|
68
|
+
"artifactPath": "decisions/KFD-2.md",
|
|
69
|
+
"expectedSha256": "6bc01776e478afc802c57c4e21a40bcfebf170f90ae039345d883c292053b622",
|
|
70
|
+
"byteForByte": true,
|
|
71
|
+
"class": "cross-time",
|
|
72
|
+
"classes": [
|
|
73
|
+
"cross-time"
|
|
74
|
+
],
|
|
75
|
+
"description": "Published KFD decision text at decisions/KFD-2.md.",
|
|
76
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
77
|
+
"impactProjection": {
|
|
78
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
79
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
80
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
81
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
82
|
+
}
|
|
47
83
|
},
|
|
48
84
|
{
|
|
49
85
|
"name": "kfd-3-document",
|
|
50
|
-
"sourcePath": "decisions/
|
|
51
|
-
"sourceSha256": "
|
|
52
|
-
"artifactPath": "decisions/
|
|
53
|
-
"expectedSha256": "
|
|
54
|
-
"byteForByte": true
|
|
86
|
+
"sourcePath": "decisions/KFD-3.md",
|
|
87
|
+
"sourceSha256": "049a7694f50e48774f3f1f74edccb46f0397a61211c027ab0eaa77e12d4e3f14",
|
|
88
|
+
"artifactPath": "decisions/KFD-3.md",
|
|
89
|
+
"expectedSha256": "049a7694f50e48774f3f1f74edccb46f0397a61211c027ab0eaa77e12d4e3f14",
|
|
90
|
+
"byteForByte": true,
|
|
91
|
+
"class": "cross-time",
|
|
92
|
+
"classes": [
|
|
93
|
+
"cross-time"
|
|
94
|
+
],
|
|
95
|
+
"description": "Published KFD decision text at decisions/KFD-3.md.",
|
|
96
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
97
|
+
"impactProjection": {
|
|
98
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
99
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
100
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
101
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
102
|
+
}
|
|
55
103
|
},
|
|
56
104
|
{
|
|
57
105
|
"name": "kfd-4-document",
|
|
58
|
-
"sourcePath": "decisions/
|
|
106
|
+
"sourcePath": "decisions/KFD-4.md",
|
|
59
107
|
"sourceSha256": "7077a6446c8baa60d85426780cb7b2bee488133196b6f53d74f0eb151f6e26e4",
|
|
60
|
-
"artifactPath": "decisions/
|
|
108
|
+
"artifactPath": "decisions/KFD-4.md",
|
|
61
109
|
"expectedSha256": "7077a6446c8baa60d85426780cb7b2bee488133196b6f53d74f0eb151f6e26e4",
|
|
62
|
-
"byteForByte": true
|
|
110
|
+
"byteForByte": true,
|
|
111
|
+
"class": "cross-time",
|
|
112
|
+
"classes": [
|
|
113
|
+
"cross-time"
|
|
114
|
+
],
|
|
115
|
+
"description": "Published KFD decision text at decisions/KFD-4.md.",
|
|
116
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
117
|
+
"impactProjection": {
|
|
118
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
119
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
120
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
121
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
122
|
+
}
|
|
63
123
|
},
|
|
64
124
|
{
|
|
65
125
|
"name": "kfd-registry",
|
|
66
126
|
"sourcePath": "registry.json",
|
|
67
|
-
"sourceSha256": "
|
|
127
|
+
"sourceSha256": "003842480fb9b3b8847735db729bc94bace4f60a25e730df839f4cb74c9f1ab5",
|
|
68
128
|
"artifactPath": "registry.json",
|
|
69
|
-
"expectedSha256": "
|
|
70
|
-
"byteForByte": true
|
|
129
|
+
"expectedSha256": "003842480fb9b3b8847735db729bc94bace4f60a25e730df839f4cb74c9f1ab5",
|
|
130
|
+
"byteForByte": true,
|
|
131
|
+
"class": "integration-time",
|
|
132
|
+
"classes": [
|
|
133
|
+
"integration-time"
|
|
134
|
+
],
|
|
135
|
+
"description": "Published KFD package surface at registry.json.",
|
|
136
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
137
|
+
"impactProjection": {
|
|
138
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
139
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
140
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
141
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
142
|
+
}
|
|
71
143
|
},
|
|
72
144
|
{
|
|
73
145
|
"name": "kfd-standards",
|
|
74
146
|
"sourcePath": "standards.json",
|
|
75
|
-
"sourceSha256": "
|
|
147
|
+
"sourceSha256": "68aae8bbfcce0776e5f5317e133ae1b494a41ecdea1f992bb51f71d1e75f2ca4",
|
|
76
148
|
"artifactPath": "standards.json",
|
|
77
|
-
"expectedSha256": "
|
|
78
|
-
"byteForByte": true
|
|
149
|
+
"expectedSha256": "68aae8bbfcce0776e5f5317e133ae1b494a41ecdea1f992bb51f71d1e75f2ca4",
|
|
150
|
+
"byteForByte": true,
|
|
151
|
+
"class": "integration-time",
|
|
152
|
+
"classes": [
|
|
153
|
+
"integration-time"
|
|
154
|
+
],
|
|
155
|
+
"description": "Published KFD package surface at standards.json.",
|
|
156
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
157
|
+
"impactProjection": {
|
|
158
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
159
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
160
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
161
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
162
|
+
}
|
|
79
163
|
},
|
|
80
164
|
{
|
|
81
165
|
"name": "kfd-standards-schema",
|
|
82
166
|
"sourcePath": "schemas/kfd-standards.schema.json",
|
|
83
|
-
"sourceSha256": "
|
|
167
|
+
"sourceSha256": "1ad05c1e3dd76571e359841f12ffc3620db8ede626eda8ff6393407ffad710c1",
|
|
84
168
|
"artifactPath": "schemas/kfd-standards.schema.json",
|
|
85
|
-
"expectedSha256": "
|
|
86
|
-
"byteForByte": true
|
|
169
|
+
"expectedSha256": "1ad05c1e3dd76571e359841f12ffc3620db8ede626eda8ff6393407ffad710c1",
|
|
170
|
+
"byteForByte": true,
|
|
171
|
+
"class": "integration-time",
|
|
172
|
+
"classes": [
|
|
173
|
+
"integration-time"
|
|
174
|
+
],
|
|
175
|
+
"description": "Published JSON schema surface at schemas/kfd-standards.schema.json.",
|
|
176
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
177
|
+
"impactProjection": {
|
|
178
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
179
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
180
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
181
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
182
|
+
}
|
|
87
183
|
},
|
|
88
184
|
{
|
|
89
185
|
"name": "kfd-1-contract-world-schema",
|
|
90
186
|
"sourcePath": "schemas/kfd-1/contract-world.schema.json",
|
|
91
|
-
"sourceSha256": "
|
|
187
|
+
"sourceSha256": "412d22385cd81a72798cc649c5ddfa961b6ae91ec2727d4300261a55fa5036f3",
|
|
92
188
|
"artifactPath": "schemas/kfd-1/contract-world.schema.json",
|
|
93
|
-
"expectedSha256": "
|
|
94
|
-
"byteForByte": true
|
|
189
|
+
"expectedSha256": "412d22385cd81a72798cc649c5ddfa961b6ae91ec2727d4300261a55fa5036f3",
|
|
190
|
+
"byteForByte": true,
|
|
191
|
+
"class": "integration-time",
|
|
192
|
+
"classes": [
|
|
193
|
+
"integration-time"
|
|
194
|
+
],
|
|
195
|
+
"description": "Published JSON schema surface at schemas/kfd-1/contract-world.schema.json.",
|
|
196
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
197
|
+
"impactProjection": {
|
|
198
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
199
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
200
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
201
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
202
|
+
}
|
|
95
203
|
},
|
|
96
204
|
{
|
|
97
205
|
"name": "kfd-1-witness-schema",
|
|
98
206
|
"sourcePath": "schemas/kfd-1/witness.schema.json",
|
|
99
|
-
"sourceSha256": "
|
|
207
|
+
"sourceSha256": "354e6d0691be8a4c6dfd296fa9a175bb2a3998fdefa70842f2fa2fa441f52cb1",
|
|
100
208
|
"artifactPath": "schemas/kfd-1/witness.schema.json",
|
|
101
|
-
"expectedSha256": "
|
|
102
|
-
"byteForByte": true
|
|
209
|
+
"expectedSha256": "354e6d0691be8a4c6dfd296fa9a175bb2a3998fdefa70842f2fa2fa441f52cb1",
|
|
210
|
+
"byteForByte": true,
|
|
211
|
+
"class": "integration-time",
|
|
212
|
+
"classes": [
|
|
213
|
+
"integration-time"
|
|
214
|
+
],
|
|
215
|
+
"description": "Published JSON schema surface at schemas/kfd-1/witness.schema.json.",
|
|
216
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
217
|
+
"impactProjection": {
|
|
218
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
219
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
220
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
221
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
222
|
+
}
|
|
103
223
|
},
|
|
104
224
|
{
|
|
105
225
|
"name": "kfd-2-trust-taxonomy-schema",
|
|
@@ -107,7 +227,19 @@
|
|
|
107
227
|
"sourceSha256": "a663d301a663cadb8567e3010361f5a630b76b6518ed7603dfd58cbd4e64a658",
|
|
108
228
|
"artifactPath": "schemas/kfd-2/trust-taxonomy.schema.json",
|
|
109
229
|
"expectedSha256": "a663d301a663cadb8567e3010361f5a630b76b6518ed7603dfd58cbd4e64a658",
|
|
110
|
-
"byteForByte": true
|
|
230
|
+
"byteForByte": true,
|
|
231
|
+
"class": "integration-time",
|
|
232
|
+
"classes": [
|
|
233
|
+
"integration-time"
|
|
234
|
+
],
|
|
235
|
+
"description": "Published JSON schema surface at schemas/kfd-2/trust-taxonomy.schema.json.",
|
|
236
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
237
|
+
"impactProjection": {
|
|
238
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
239
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
240
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
241
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
242
|
+
}
|
|
111
243
|
},
|
|
112
244
|
{
|
|
113
245
|
"name": "kfd-2-release-claims-schema",
|
|
@@ -115,7 +247,19 @@
|
|
|
115
247
|
"sourceSha256": "0f52c4a9949f62163a0fbe14fefc2f2f93f548ae18b6b5c07eb87aedca4c0be0",
|
|
116
248
|
"artifactPath": "schemas/kfd-2/release-claims.schema.json",
|
|
117
249
|
"expectedSha256": "0f52c4a9949f62163a0fbe14fefc2f2f93f548ae18b6b5c07eb87aedca4c0be0",
|
|
118
|
-
"byteForByte": true
|
|
250
|
+
"byteForByte": true,
|
|
251
|
+
"class": "integration-time",
|
|
252
|
+
"classes": [
|
|
253
|
+
"integration-time"
|
|
254
|
+
],
|
|
255
|
+
"description": "Published JSON schema surface at schemas/kfd-2/release-claims.schema.json.",
|
|
256
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
257
|
+
"impactProjection": {
|
|
258
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
259
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
260
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
261
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
262
|
+
}
|
|
119
263
|
},
|
|
120
264
|
{
|
|
121
265
|
"name": "kfd-2-release-trust-passport-schema",
|
|
@@ -123,23 +267,59 @@
|
|
|
123
267
|
"sourceSha256": "df7f828605f680f3ff52fe3468cbf8f5e20151fac0d5c31cd9a0de9765efecc1",
|
|
124
268
|
"artifactPath": "schemas/kfd-2/release-trust-passport.schema.json",
|
|
125
269
|
"expectedSha256": "df7f828605f680f3ff52fe3468cbf8f5e20151fac0d5c31cd9a0de9765efecc1",
|
|
126
|
-
"byteForByte": true
|
|
270
|
+
"byteForByte": true,
|
|
271
|
+
"class": "integration-time",
|
|
272
|
+
"classes": [
|
|
273
|
+
"integration-time"
|
|
274
|
+
],
|
|
275
|
+
"description": "Published JSON schema surface at schemas/kfd-2/release-trust-passport.schema.json.",
|
|
276
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
277
|
+
"impactProjection": {
|
|
278
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
279
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
280
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
281
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
282
|
+
}
|
|
127
283
|
},
|
|
128
284
|
{
|
|
129
285
|
"name": "kfd-3-collaboration-interface-schema",
|
|
130
286
|
"sourcePath": "schemas/kfd-3/collaboration-interface.schema.json",
|
|
131
|
-
"sourceSha256": "
|
|
287
|
+
"sourceSha256": "6526be8e59d2f0f645e7f67a8f63a93f017a2dac62701147d49c5f391c5483a3",
|
|
132
288
|
"artifactPath": "schemas/kfd-3/collaboration-interface.schema.json",
|
|
133
|
-
"expectedSha256": "
|
|
134
|
-
"byteForByte": true
|
|
289
|
+
"expectedSha256": "6526be8e59d2f0f645e7f67a8f63a93f017a2dac62701147d49c5f391c5483a3",
|
|
290
|
+
"byteForByte": true,
|
|
291
|
+
"class": "integration-time",
|
|
292
|
+
"classes": [
|
|
293
|
+
"integration-time"
|
|
294
|
+
],
|
|
295
|
+
"description": "Published JSON schema surface at schemas/kfd-3/collaboration-interface.schema.json.",
|
|
296
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
297
|
+
"impactProjection": {
|
|
298
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
299
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
300
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
301
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
302
|
+
}
|
|
135
303
|
},
|
|
136
304
|
{
|
|
137
305
|
"name": "kfd-3-witness-schema",
|
|
138
306
|
"sourcePath": "schemas/kfd-3/witness.schema.json",
|
|
139
|
-
"sourceSha256": "
|
|
307
|
+
"sourceSha256": "86567c1d5d32ac2ce621a596c08d2702c0facea0d0cfcb836ac31a170dc19779",
|
|
140
308
|
"artifactPath": "schemas/kfd-3/witness.schema.json",
|
|
141
|
-
"expectedSha256": "
|
|
142
|
-
"byteForByte": true
|
|
309
|
+
"expectedSha256": "86567c1d5d32ac2ce621a596c08d2702c0facea0d0cfcb836ac31a170dc19779",
|
|
310
|
+
"byteForByte": true,
|
|
311
|
+
"class": "integration-time",
|
|
312
|
+
"classes": [
|
|
313
|
+
"integration-time"
|
|
314
|
+
],
|
|
315
|
+
"description": "Published JSON schema surface at schemas/kfd-3/witness.schema.json.",
|
|
316
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
317
|
+
"impactProjection": {
|
|
318
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
319
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
320
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
321
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
322
|
+
}
|
|
143
323
|
},
|
|
144
324
|
{
|
|
145
325
|
"name": "kfd-4-observer-perspective-schema",
|
|
@@ -147,55 +327,99 @@
|
|
|
147
327
|
"sourceSha256": "e6ae8849b04c326b4ae5efafa08b08dc0f3fcf6844f6956735ff7327c2cfd69c",
|
|
148
328
|
"artifactPath": "schemas/kfd-4/observer-perspective.schema.json",
|
|
149
329
|
"expectedSha256": "e6ae8849b04c326b4ae5efafa08b08dc0f3fcf6844f6956735ff7327c2cfd69c",
|
|
150
|
-
"byteForByte": true
|
|
330
|
+
"byteForByte": true,
|
|
331
|
+
"class": "integration-time",
|
|
332
|
+
"classes": [
|
|
333
|
+
"integration-time"
|
|
334
|
+
],
|
|
335
|
+
"description": "Published JSON schema surface at schemas/kfd-4/observer-perspective.schema.json.",
|
|
336
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
337
|
+
"impactProjection": {
|
|
338
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
339
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
340
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
341
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
342
|
+
}
|
|
151
343
|
},
|
|
152
344
|
{
|
|
153
345
|
"name": "kfd-site-bundle",
|
|
154
346
|
"sourcePath": "site/kfd-site.json",
|
|
155
|
-
"sourceSha256": "
|
|
347
|
+
"sourceSha256": "f416265ea3c2aed6b8cc63f3aef35b4c2c2f8f967a0cf45433f1efcf60b3c825",
|
|
156
348
|
"artifactPath": "site/kfd-site.json",
|
|
157
|
-
"expectedSha256": "
|
|
158
|
-
"byteForByte": true
|
|
349
|
+
"expectedSha256": "f416265ea3c2aed6b8cc63f3aef35b4c2c2f8f967a0cf45433f1efcf60b3c825",
|
|
350
|
+
"byteForByte": true,
|
|
351
|
+
"class": "cross-time",
|
|
352
|
+
"classes": [
|
|
353
|
+
"cross-time"
|
|
354
|
+
],
|
|
355
|
+
"description": "Published KFD package surface at site/kfd-site.json.",
|
|
356
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
357
|
+
"impactProjection": {
|
|
358
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
359
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
360
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
361
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
362
|
+
}
|
|
159
363
|
},
|
|
160
364
|
{
|
|
161
365
|
"name": "kfd-doc-map",
|
|
162
366
|
"sourcePath": "docs/MAP.md",
|
|
163
|
-
"sourceSha256": "
|
|
367
|
+
"sourceSha256": "249e0d188993906aca3e0538c236e3b74fe90474dac34234d6ae83659f0627cf",
|
|
164
368
|
"artifactPath": "docs/MAP.md",
|
|
165
|
-
"expectedSha256": "
|
|
166
|
-
"byteForByte": true
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
"sourceSha256": "d483ff6f8423a2e3f8e5dc547b62139d5c365678f9974d62063f8b523f14edb0",
|
|
180
|
-
"artifactPath": "docs/kfd-3-collaboration-interface.md",
|
|
181
|
-
"expectedSha256": "d483ff6f8423a2e3f8e5dc547b62139d5c365678f9974d62063f8b523f14edb0",
|
|
182
|
-
"byteForByte": true
|
|
369
|
+
"expectedSha256": "249e0d188993906aca3e0538c236e3b74fe90474dac34234d6ae83659f0627cf",
|
|
370
|
+
"byteForByte": true,
|
|
371
|
+
"class": "cross-time",
|
|
372
|
+
"classes": [
|
|
373
|
+
"cross-time"
|
|
374
|
+
],
|
|
375
|
+
"description": "Published documentation surface at docs/MAP.md.",
|
|
376
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
377
|
+
"impactProjection": {
|
|
378
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
379
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
380
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
381
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
382
|
+
}
|
|
183
383
|
},
|
|
184
384
|
{
|
|
185
385
|
"name": "release-impact-ledger",
|
|
186
386
|
"sourcePath": "release-impact.json",
|
|
187
|
-
"sourceSha256": "
|
|
387
|
+
"sourceSha256": "685f65d10491593d28321431eee315bb5fbbedd2d1ccec0747f4a37547b3124a",
|
|
188
388
|
"artifactPath": "release-impact.json",
|
|
189
|
-
"expectedSha256": "
|
|
190
|
-
"byteForByte": true
|
|
389
|
+
"expectedSha256": "685f65d10491593d28321431eee315bb5fbbedd2d1ccec0747f4a37547b3124a",
|
|
390
|
+
"byteForByte": true,
|
|
391
|
+
"class": "cross-time",
|
|
392
|
+
"classes": [
|
|
393
|
+
"cross-time"
|
|
394
|
+
],
|
|
395
|
+
"description": "Published KFD package surface at release-impact.json.",
|
|
396
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
397
|
+
"impactProjection": {
|
|
398
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
399
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
400
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
401
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
402
|
+
}
|
|
191
403
|
},
|
|
192
404
|
{
|
|
193
405
|
"name": "kfd-check-gate",
|
|
194
406
|
"sourcePath": "scripts/check.mjs",
|
|
195
|
-
"sourceSha256": "
|
|
407
|
+
"sourceSha256": "43cd81dcff761004098722f4b69a7e9939fe9559d4785344dd3344933e241f82",
|
|
196
408
|
"artifactPath": "scripts/check.mjs",
|
|
197
|
-
"expectedSha256": "
|
|
198
|
-
"byteForByte": true
|
|
409
|
+
"expectedSha256": "43cd81dcff761004098722f4b69a7e9939fe9559d4785344dd3344933e241f82",
|
|
410
|
+
"byteForByte": true,
|
|
411
|
+
"class": "integration-time",
|
|
412
|
+
"classes": [
|
|
413
|
+
"integration-time"
|
|
414
|
+
],
|
|
415
|
+
"description": "Repository verification or projection script at scripts/check.mjs.",
|
|
416
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
417
|
+
"impactProjection": {
|
|
418
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
419
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
420
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
421
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
422
|
+
}
|
|
199
423
|
},
|
|
200
424
|
{
|
|
201
425
|
"name": "release-propagation-graph",
|
|
@@ -203,7 +427,20 @@
|
|
|
203
427
|
"sourceSha256": "71f9b54b9e76111178635804615fb0b4600f3131a7871b7c7817395b708c6fb3",
|
|
204
428
|
"artifactPath": "buildchain.release-propagation.json",
|
|
205
429
|
"expectedSha256": "71f9b54b9e76111178635804615fb0b4600f3131a7871b7c7817395b708c6fb3",
|
|
206
|
-
"byteForByte": true
|
|
430
|
+
"byteForByte": true,
|
|
431
|
+
"class": "integration-time",
|
|
432
|
+
"classes": [
|
|
433
|
+
"integration-time",
|
|
434
|
+
"cross-time"
|
|
435
|
+
],
|
|
436
|
+
"description": "Published KFD package surface at buildchain.release-propagation.json.",
|
|
437
|
+
"weldRationale": "Consumers can integrate with this surface and later audit or replay it as a released fact.",
|
|
438
|
+
"impactProjection": {
|
|
439
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
440
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
441
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
442
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
443
|
+
}
|
|
207
444
|
},
|
|
208
445
|
{
|
|
209
446
|
"name": "buildchain-build-workflow",
|
|
@@ -211,7 +448,19 @@
|
|
|
211
448
|
"sourceSha256": "264cd15db6f872c72fc58bcd476d1a3a476ec54b520b05268e213f5b59692f5b",
|
|
212
449
|
"artifactPath": ".github/workflows/build.yml",
|
|
213
450
|
"expectedSha256": "264cd15db6f872c72fc58bcd476d1a3a476ec54b520b05268e213f5b59692f5b",
|
|
214
|
-
"byteForByte": true
|
|
451
|
+
"byteForByte": true,
|
|
452
|
+
"class": "integration-time",
|
|
453
|
+
"classes": [
|
|
454
|
+
"integration-time"
|
|
455
|
+
],
|
|
456
|
+
"description": "Release governance workflow surface at .github/workflows/build.yml.",
|
|
457
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
458
|
+
"impactProjection": {
|
|
459
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
460
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
461
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
462
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
463
|
+
}
|
|
215
464
|
},
|
|
216
465
|
{
|
|
217
466
|
"name": "buildchain-ref-promotion-workflow",
|
|
@@ -219,7 +468,19 @@
|
|
|
219
468
|
"sourceSha256": "754a44cedfc174f35dcf54414c04b636bbc0a85e2272f5de8e899a70ee05d7bd",
|
|
220
469
|
"artifactPath": ".github/workflows/buildchain-ref-promotion.yml",
|
|
221
470
|
"expectedSha256": "754a44cedfc174f35dcf54414c04b636bbc0a85e2272f5de8e899a70ee05d7bd",
|
|
222
|
-
"byteForByte": true
|
|
471
|
+
"byteForByte": true,
|
|
472
|
+
"class": "integration-time",
|
|
473
|
+
"classes": [
|
|
474
|
+
"integration-time"
|
|
475
|
+
],
|
|
476
|
+
"description": "Release governance workflow surface at .github/workflows/buildchain-ref-promotion.yml.",
|
|
477
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
478
|
+
"impactProjection": {
|
|
479
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
480
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
481
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
482
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
483
|
+
}
|
|
223
484
|
},
|
|
224
485
|
{
|
|
225
486
|
"name": "release-propagation-workflow",
|
|
@@ -227,7 +488,19 @@
|
|
|
227
488
|
"sourceSha256": "bfc951659843e9d6fe13e0d8000df45204b71e0c58012309a533e369d4695d9d",
|
|
228
489
|
"artifactPath": ".github/workflows/release-propagation.yml",
|
|
229
490
|
"expectedSha256": "bfc951659843e9d6fe13e0d8000df45204b71e0c58012309a533e369d4695d9d",
|
|
230
|
-
"byteForByte": true
|
|
491
|
+
"byteForByte": true,
|
|
492
|
+
"class": "integration-time",
|
|
493
|
+
"classes": [
|
|
494
|
+
"integration-time"
|
|
495
|
+
],
|
|
496
|
+
"description": "Release governance workflow surface at .github/workflows/release-propagation.yml.",
|
|
497
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
498
|
+
"impactProjection": {
|
|
499
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
500
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
501
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
502
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
503
|
+
}
|
|
231
504
|
},
|
|
232
505
|
{
|
|
233
506
|
"name": "verify-workflow",
|
|
@@ -235,31 +508,246 @@
|
|
|
235
508
|
"sourceSha256": "448f4b6b8263399005a9866cee7906f5334cf5e3daea7d13c70768e586576947",
|
|
236
509
|
"artifactPath": ".github/workflows/verify.yml",
|
|
237
510
|
"expectedSha256": "448f4b6b8263399005a9866cee7906f5334cf5e3daea7d13c70768e586576947",
|
|
238
|
-
"byteForByte": true
|
|
511
|
+
"byteForByte": true,
|
|
512
|
+
"class": "integration-time",
|
|
513
|
+
"classes": [
|
|
514
|
+
"integration-time"
|
|
515
|
+
],
|
|
516
|
+
"description": "Release governance workflow surface at .github/workflows/verify.yml.",
|
|
517
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
518
|
+
"impactProjection": {
|
|
519
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
520
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
521
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
522
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
523
|
+
}
|
|
239
524
|
},
|
|
240
525
|
{
|
|
241
526
|
"name": "kfd-package-manifest",
|
|
242
527
|
"sourcePath": "package.json",
|
|
243
|
-
"sourceSha256": "
|
|
528
|
+
"sourceSha256": "25ae49f5ab1c34d07d066b7e8fbe49284808bbf10b3c3b2ebe06373be1020854",
|
|
244
529
|
"artifactPath": "package.json",
|
|
245
|
-
"expectedSha256": "
|
|
246
|
-
"byteForByte": true
|
|
530
|
+
"expectedSha256": "25ae49f5ab1c34d07d066b7e8fbe49284808bbf10b3c3b2ebe06373be1020854",
|
|
531
|
+
"byteForByte": true,
|
|
532
|
+
"class": "integration-time",
|
|
533
|
+
"classes": [
|
|
534
|
+
"integration-time"
|
|
535
|
+
],
|
|
536
|
+
"description": "Published KFD package surface at package.json.",
|
|
537
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
538
|
+
"impactProjection": {
|
|
539
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
540
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
541
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
542
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
543
|
+
}
|
|
247
544
|
},
|
|
248
545
|
{
|
|
249
546
|
"name": "kfd-release-anchor",
|
|
250
547
|
"sourcePath": "kfd.release.json",
|
|
251
|
-
"sourceSha256": "
|
|
548
|
+
"sourceSha256": "128788929dadbf25aa60283c5c5a7f79afd971627c378edd7d85546ee2038f22",
|
|
252
549
|
"artifactPath": "kfd.release.json",
|
|
253
|
-
"expectedSha256": "
|
|
254
|
-
"byteForByte": true
|
|
550
|
+
"expectedSha256": "128788929dadbf25aa60283c5c5a7f79afd971627c378edd7d85546ee2038f22",
|
|
551
|
+
"byteForByte": true,
|
|
552
|
+
"class": "integration-time",
|
|
553
|
+
"classes": [
|
|
554
|
+
"integration-time",
|
|
555
|
+
"cross-time"
|
|
556
|
+
],
|
|
557
|
+
"description": "Published KFD package surface at kfd.release.json.",
|
|
558
|
+
"weldRationale": "Consumers can integrate with this surface and later audit or replay it as a released fact.",
|
|
559
|
+
"impactProjection": {
|
|
560
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
561
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
562
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
563
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
564
|
+
}
|
|
255
565
|
},
|
|
256
566
|
{
|
|
257
567
|
"name": "kfd-2-public-release-trust-claim",
|
|
258
568
|
"sourcePath": ".buildchain/kfd-2/public-release-trust.claim.json",
|
|
259
|
-
"sourceSha256": "
|
|
569
|
+
"sourceSha256": "22c5b4fcbb0f57d8b61c109e3ff9ea782847e090b577bec546d5aa129b12996a",
|
|
260
570
|
"artifactPath": ".buildchain/kfd-2/public-release-trust.claim.json",
|
|
261
|
-
"expectedSha256": "
|
|
262
|
-
"byteForByte": true
|
|
571
|
+
"expectedSha256": "22c5b4fcbb0f57d8b61c109e3ff9ea782847e090b577bec546d5aa129b12996a",
|
|
572
|
+
"byteForByte": true,
|
|
573
|
+
"class": "integration-time",
|
|
574
|
+
"classes": [
|
|
575
|
+
"integration-time"
|
|
576
|
+
],
|
|
577
|
+
"description": "Buildchain release-passport evidence surface at .buildchain/kfd-2/public-release-trust.claim.json.",
|
|
578
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
579
|
+
"impactProjection": {
|
|
580
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
581
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
582
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
583
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"name": "kfd-2-trust-claims-schema",
|
|
588
|
+
"sourcePath": "schemas/kfd-2/trust-claims.schema.json",
|
|
589
|
+
"sourceSha256": "5f452a5973502273f0249116b3a4171549a84515d8ba5286a09f173db4f0e03a",
|
|
590
|
+
"artifactPath": "schemas/kfd-2/trust-claims.schema.json",
|
|
591
|
+
"expectedSha256": "5f452a5973502273f0249116b3a4171549a84515d8ba5286a09f173db4f0e03a",
|
|
592
|
+
"byteForByte": true,
|
|
593
|
+
"class": "integration-time",
|
|
594
|
+
"classes": [
|
|
595
|
+
"integration-time"
|
|
596
|
+
],
|
|
597
|
+
"description": "Published JSON schema surface at schemas/kfd-2/trust-claims.schema.json.",
|
|
598
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
599
|
+
"impactProjection": {
|
|
600
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
601
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
602
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
603
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"name": "kfd-2-trust-assessment-schema",
|
|
608
|
+
"sourcePath": "schemas/kfd-2/trust-assessment.schema.json",
|
|
609
|
+
"sourceSha256": "cdb56fb16d0d2e91e4a9ebaff9cefc212a70fd22701e1185ca75d66af6172a51",
|
|
610
|
+
"artifactPath": "schemas/kfd-2/trust-assessment.schema.json",
|
|
611
|
+
"expectedSha256": "cdb56fb16d0d2e91e4a9ebaff9cefc212a70fd22701e1185ca75d66af6172a51",
|
|
612
|
+
"byteForByte": true,
|
|
613
|
+
"class": "integration-time",
|
|
614
|
+
"classes": [
|
|
615
|
+
"integration-time"
|
|
616
|
+
],
|
|
617
|
+
"description": "Published JSON schema surface at schemas/kfd-2/trust-assessment.schema.json.",
|
|
618
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
619
|
+
"impactProjection": {
|
|
620
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
621
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
622
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
623
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"name": "kfd-2-foundation-trust-claims",
|
|
628
|
+
"sourcePath": ".buildchain/kfd-2/kfd-foundation.trust-claims.json",
|
|
629
|
+
"sourceSha256": "516fe8d96ddecbf4ebb32315fc1b5658e3e56c4180aca97eac2a9ab2c9208679",
|
|
630
|
+
"artifactPath": ".buildchain/kfd-2/kfd-foundation.trust-claims.json",
|
|
631
|
+
"expectedSha256": "516fe8d96ddecbf4ebb32315fc1b5658e3e56c4180aca97eac2a9ab2c9208679",
|
|
632
|
+
"byteForByte": true,
|
|
633
|
+
"class": "integration-time",
|
|
634
|
+
"classes": [
|
|
635
|
+
"integration-time"
|
|
636
|
+
],
|
|
637
|
+
"description": "Buildchain evidence surface at .buildchain/kfd-2/kfd-foundation.trust-claims.json.",
|
|
638
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
639
|
+
"impactProjection": {
|
|
640
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
641
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
642
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
643
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"name": "kfd-2-foundation-trust-assessment",
|
|
648
|
+
"sourcePath": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json",
|
|
649
|
+
"sourceSha256": "287d684a91830455580cee8dba44522a794826ce2255f4bde12f93025dc3b112",
|
|
650
|
+
"artifactPath": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json",
|
|
651
|
+
"expectedSha256": "287d684a91830455580cee8dba44522a794826ce2255f4bde12f93025dc3b112",
|
|
652
|
+
"byteForByte": true,
|
|
653
|
+
"class": "integration-time",
|
|
654
|
+
"classes": [
|
|
655
|
+
"integration-time"
|
|
656
|
+
],
|
|
657
|
+
"description": "Buildchain evidence surface at .buildchain/kfd-2/kfd-foundation.trust-assessment.json.",
|
|
658
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
659
|
+
"impactProjection": {
|
|
660
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
661
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
662
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
663
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"name": "kfd-1-usage-doc",
|
|
668
|
+
"sourcePath": "docs/KFD-1-usage.md",
|
|
669
|
+
"sourceSha256": "3b9691cdd9c0a28c1e428e1cb421939cb17deab37d99c39caff13c058c63846a",
|
|
670
|
+
"artifactPath": "docs/KFD-1-usage.md",
|
|
671
|
+
"expectedSha256": "3b9691cdd9c0a28c1e428e1cb421939cb17deab37d99c39caff13c058c63846a",
|
|
672
|
+
"byteForByte": true,
|
|
673
|
+
"class": "cross-time",
|
|
674
|
+
"classes": [
|
|
675
|
+
"cross-time"
|
|
676
|
+
],
|
|
677
|
+
"description": "Published KFD usage documentation surface at docs/KFD-1-usage.md.",
|
|
678
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
679
|
+
"impactProjection": {
|
|
680
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
681
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
682
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
683
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"name": "kfd-2-usage-doc",
|
|
688
|
+
"sourcePath": "docs/KFD-2-usage.md",
|
|
689
|
+
"sourceSha256": "ff800c6b46d1909c2f0414d9e0c8ae2219edc83a59a066cafda5c970cac3471d",
|
|
690
|
+
"artifactPath": "docs/KFD-2-usage.md",
|
|
691
|
+
"expectedSha256": "ff800c6b46d1909c2f0414d9e0c8ae2219edc83a59a066cafda5c970cac3471d",
|
|
692
|
+
"byteForByte": true,
|
|
693
|
+
"class": "cross-time",
|
|
694
|
+
"classes": [
|
|
695
|
+
"cross-time"
|
|
696
|
+
],
|
|
697
|
+
"description": "Published KFD usage documentation surface at docs/KFD-2-usage.md.",
|
|
698
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
699
|
+
"impactProjection": {
|
|
700
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
701
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
702
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
703
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "kfd-3-usage-doc",
|
|
708
|
+
"sourcePath": "docs/KFD-3-usage.md",
|
|
709
|
+
"sourceSha256": "21ffa3193fa9c74a53ac890c48591ab768fa0871cb4e9cb265e5eae199ec63f7",
|
|
710
|
+
"artifactPath": "docs/KFD-3-usage.md",
|
|
711
|
+
"expectedSha256": "21ffa3193fa9c74a53ac890c48591ab768fa0871cb4e9cb265e5eae199ec63f7",
|
|
712
|
+
"byteForByte": true,
|
|
713
|
+
"class": "cross-time",
|
|
714
|
+
"classes": [
|
|
715
|
+
"cross-time"
|
|
716
|
+
],
|
|
717
|
+
"description": "Published KFD usage documentation surface at docs/KFD-3-usage.md.",
|
|
718
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
719
|
+
"impactProjection": {
|
|
720
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
721
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
722
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
723
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"name": "kfd-4-usage-doc",
|
|
728
|
+
"sourcePath": "docs/KFD-4-usage.md",
|
|
729
|
+
"sourceSha256": "4c223ab68fce18cf881efd268508f57438da8dcf22834f7c032ef3b63a905347",
|
|
730
|
+
"artifactPath": "docs/KFD-4-usage.md",
|
|
731
|
+
"expectedSha256": "4c223ab68fce18cf881efd268508f57438da8dcf22834f7c032ef3b63a905347",
|
|
732
|
+
"byteForByte": true,
|
|
733
|
+
"class": "cross-time",
|
|
734
|
+
"classes": [
|
|
735
|
+
"cross-time"
|
|
736
|
+
],
|
|
737
|
+
"description": "Published KFD usage documentation surface at docs/KFD-4-usage.md.",
|
|
738
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
739
|
+
"impactProjection": {
|
|
740
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
741
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
742
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
743
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
744
|
+
}
|
|
263
745
|
}
|
|
746
|
+
],
|
|
747
|
+
"compatibilityImpactClasses": [
|
|
748
|
+
"breaking",
|
|
749
|
+
"additive",
|
|
750
|
+
"none",
|
|
751
|
+
"unclassifiable"
|
|
264
752
|
]
|
|
265
753
|
}
|