dev.mccue.jvm.module
Schema Diff
+6 -9
Compatibility Analysis
Breaking Changes Detected
3 breaking changes, 3 non-breaking changes.
Breaking Changes (3)
- RemovedVertex RemovedVertex { vertex_id: "dev.mccue.jvm.module:body.variants:items.indexMe" }
- RemovedEdge RemovedEdge { src: "dev.mccue.jvm.module:body.variants:items", tgt: "dev.mccue.jvm.module:body.variants:items.indexMe", kind: "prop", name: Some("indexMe") }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.mccue.jvm.module:body.indexMe", sort: "default", value: "false" }
Non-Breaking Changes (3)
- AddedVertex AddedVertex { vertex_id: "dev.mccue.jvm.module:body.indexMe" }
- AddedEdge AddedEdge { src: "dev.mccue.jvm.module:body", tgt: "dev.mccue.jvm.module:body.indexMe", kind: "prop", name: Some("indexMe") }
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.mccue.jvm.module:body.variants:items.indexMe", sort: "default" }
Migration Guidance
Removed Elements
RemovedVertex { vertex_id: "dev.mccue.jvm.module:body.variants:items.indexMe" }
Added Elements
AddedVertex { vertex_id: "dev.mccue.jvm.module:body.indexMe" }
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.mccue.jvm.module:body.indexMe", sort: "default", value: "false" }
- ConstraintRemoved ConstraintRemoved { vertex_id: "dev.mccue.jvm.module:body.variants:items.indexMe", sort: "default" }
Additional Notes
- Breaking: RemovedEdge { src: "dev.mccue.jvm.module:body.variants:items", tgt: "dev.mccue.jvm.module:body.variants:items.indexMe", kind: "prop", name: Some("indexMe") }
- Non-breaking: AddedEdge { src: "dev.mccue.jvm.module:body", tgt: "dev.mccue.jvm.module:body.indexMe", kind: "prop", name: Some("indexMe") }
1
1
{
2
2
"id": "dev.mccue.jvm.module",
3
3
"defs": {
4
4
"main": {
5
5
"key": "any",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"variants",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
+
"indexMe": {
15
+
"type": "boolean",
16
+
"default": false
17
+
},
14
18
"variants": {
15
19
"type": "array",
16
20
"items": {
17
21
"type": "object",
18
22
"required": [
19
23
"artifact"
20
24
],
21
25
"properties": {
22
-
"indexMe": {
23
-
"type": "boolean",
24
-
"default": false,
25
-
"description": "Whether this module should is intended for listing on public indexes"
26
-
},
27
26
"license": {
28
27
"type": "string",
29
28
"description": "SPDX License String"
30
29
},
31
30
"artifact": {
32
31
"type": "blob",
33
32
"accept": [
34
33
"application/zip",
35
34
"application/java-archive"
36
35
],
37
36
"maxSize": 10000000
38
37
},
39
38
"copiedFrom": {
40
39
"ref": "com.atproto.repo.strongRef",
41
40
"type": "ref",
42
41
"description": "A reference to where this module was copied from."
43
42
},
44
43
"billOfMaterials": {
45
44
"type": "string",
46
45
"description": "SBOM in CycloneDX format"
47
46
},
48
47
"cpuArchitecture": {
49
-
"type": "string",
50
-
"description": ""
48
+
"type": "string"
51
49
},
52
50
"operatingSystem": {
53
-
"type": "string",
54
-
"description": ""
51
+
"type": "string"
55
52
}
56
53
}
57
54
},
58
55
"minLength": 1,
59
56
"description": "Variants of the same module at the same 'version'"
60
57
},
61
58
"createdAt": {
62
59
"type": "string",
63
60
"format": "datetime"
64
61
}
65
62
}
66
63
},
67
64
"description": "A JVM Module published for wider consumption."
68
65
}
69
66
},
70
67
"$type": "com.atproto.lexicon.schema",
71
68
"lexicon": 1
72
69
}