@kungfu-tech/kfd 1.0.0-alpha.20 → 1.0.0-alpha.22
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 +55 -34
- package/.buildchain/kfd-2/kfd-foundation.trust-assessment.json +12 -12
- package/.buildchain/kfd-2/kfd-foundation.trust-claims.json +12 -12
- package/.buildchain/kfd-2/public-release-trust.claim.json +14 -14
- package/.buildchain/kfd-3/collaboration-interface.artifact.json +52 -52
- package/.buildchain/kfd-3/collaboration-interface.prebuild.json +16 -16
- package/README.md +10 -3
- package/decisions/KFD-1.md +29 -2
- package/decisions/KFD-4.md +27 -0
- package/docs/KFD-1-usage.md +42 -0
- package/docs/KFD-4-usage.md +14 -0
- package/docs/MAP.md +1 -0
- package/kfd.release.json +1 -1
- package/package.json +1 -1
- package/release-impact.json +9 -3
- package/schemas/kfd-1/publication-url-semantics.schema.json +255 -0
- package/schemas/kfd-4/observer-perspective.schema.json +28 -0
- package/scripts/check.mjs +32 -3
- package/scripts/update-kfd-2-claim.mjs +3 -3
- package/site/kfd-site.json +3 -3
- package/standards.json +39 -5
package/standards.json
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"document": {
|
|
26
26
|
"path": "decisions/KFD-1.md",
|
|
27
27
|
"url": "https://kfd.libkungfu.dev/1",
|
|
28
|
-
"sha256": "
|
|
28
|
+
"sha256": "dcc97d2e24ffc8f0380cd027ba973bf8268cff59fa9ab766b178e894bcf1f164"
|
|
29
29
|
},
|
|
30
30
|
"compatibility": {
|
|
31
31
|
"packageLine": "v1.0",
|
|
@@ -36,12 +36,14 @@
|
|
|
36
36
|
"schemaIds": {
|
|
37
37
|
"metadata": "https://kfd.libkungfu.dev/schemas/kfd-standards.schema.json",
|
|
38
38
|
"contractWorld": "https://kfd.libkungfu.dev/schemas/kfd-1/contract-world.schema.json",
|
|
39
|
-
"witness": "https://kfd.libkungfu.dev/schemas/kfd-1/witness.schema.json"
|
|
39
|
+
"witness": "https://kfd.libkungfu.dev/schemas/kfd-1/witness.schema.json",
|
|
40
|
+
"publicationUrlSemantics": "https://kfd.libkungfu.dev/schemas/kfd-1/publication-url-semantics.schema.json"
|
|
40
41
|
},
|
|
41
42
|
"schemaPaths": {
|
|
42
43
|
"metadata": "schemas/kfd-standards.schema.json",
|
|
43
44
|
"contractWorld": "schemas/kfd-1/contract-world.schema.json",
|
|
44
|
-
"witness": "schemas/kfd-1/witness.schema.json"
|
|
45
|
+
"witness": "schemas/kfd-1/witness.schema.json",
|
|
46
|
+
"publicationUrlSemantics": "schemas/kfd-1/publication-url-semantics.schema.json"
|
|
45
47
|
},
|
|
46
48
|
"interfaces": {
|
|
47
49
|
"contractWorld": {
|
|
@@ -57,6 +59,13 @@
|
|
|
57
59
|
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-1/witness.schema.json",
|
|
58
60
|
"schemaPath": "schemas/kfd-1/witness.schema.json",
|
|
59
61
|
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic or required-field changes require a new interface version or contract."
|
|
62
|
+
},
|
|
63
|
+
"publicationUrlSemantics": {
|
|
64
|
+
"contract": "kfd-1-publication-url-semantics",
|
|
65
|
+
"schemaVersion": 1,
|
|
66
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-1/publication-url-semantics.schema.json",
|
|
67
|
+
"schemaPath": "schemas/kfd-1/publication-url-semantics.schema.json",
|
|
68
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic or required-field changes require a new interface version or contract."
|
|
60
69
|
}
|
|
61
70
|
},
|
|
62
71
|
"concepts": {
|
|
@@ -66,7 +75,14 @@
|
|
|
66
75
|
"witness": "contract witness",
|
|
67
76
|
"surfaceClass": "surface class",
|
|
68
77
|
"compatibilityImpact": "compatibility impact",
|
|
69
|
-
"impactProjection": "domain-specific impact projection"
|
|
78
|
+
"impactProjection": "domain-specific impact projection",
|
|
79
|
+
"publicationUrlSemantics": "publication URL semantics",
|
|
80
|
+
"canonicalUrl": "canonical reader URL",
|
|
81
|
+
"latestUrl": "latest alias URL",
|
|
82
|
+
"immutableVersionUrl": "immutable version URL",
|
|
83
|
+
"immutableArtifact": "immutable publication artifact",
|
|
84
|
+
"archivePolicy": "publication archive policy",
|
|
85
|
+
"sourceCoordinate": "publication source coordinate"
|
|
70
86
|
},
|
|
71
87
|
"surfaceRegister": {
|
|
72
88
|
"factSource": "standards.json#/standards/kfd-1/surfaceRegister",
|
|
@@ -658,6 +674,23 @@
|
|
|
658
674
|
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
659
675
|
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
660
676
|
}
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"id": "kfd-1-publication-url-semantics-schema",
|
|
680
|
+
"class": "integration-time",
|
|
681
|
+
"classes": [
|
|
682
|
+
"integration-time",
|
|
683
|
+
"cross-time"
|
|
684
|
+
],
|
|
685
|
+
"description": "Published JSON schema surface at schemas/kfd-1/publication-url-semantics.schema.json.",
|
|
686
|
+
"sourcePath": "schemas/kfd-1/publication-url-semantics.schema.json",
|
|
687
|
+
"weldRationale": "Buildchain and site repositories can bind to this surface when declaring canonical/latest/immutable publication URL semantics, and published version artifacts remain audit-relevant after release.",
|
|
688
|
+
"impactProjection": {
|
|
689
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
690
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
691
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
692
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
693
|
+
}
|
|
661
694
|
}
|
|
662
695
|
]
|
|
663
696
|
}
|
|
@@ -838,7 +871,7 @@
|
|
|
838
871
|
"document": {
|
|
839
872
|
"path": "decisions/KFD-4.md",
|
|
840
873
|
"url": "https://kfd.libkungfu.dev/4",
|
|
841
|
-
"sha256": "
|
|
874
|
+
"sha256": "b7ae42a6f1ddb1e838b93fb33c9da5bfae28fad39d31bfca83668550e8c6335c"
|
|
842
875
|
},
|
|
843
876
|
"compatibility": {
|
|
844
877
|
"packageLine": "v1.0",
|
|
@@ -867,6 +900,7 @@
|
|
|
867
900
|
"observer": "observer",
|
|
868
901
|
"declaredPerspective": "declared perspective",
|
|
869
902
|
"observerPerspective": "observer perspective",
|
|
903
|
+
"viewSubject": "view subject",
|
|
870
904
|
"acceptedFacts": "accepted facts",
|
|
871
905
|
"projectionPolicy": "projection policy",
|
|
872
906
|
"causalDominance": "causal dominance",
|