Skip to content

Commit

Permalink
Merge pull request #827 from HL7/2023-12-gg-qa-json
Browse files Browse the repository at this point in the history
2023 12 gg qa json
  • Loading branch information
grahamegrieve authored Dec 15, 2023
2 parents 778deab + 7b0fd6e commit be0487e
Show file tree
Hide file tree
Showing 4 changed files with 126 additions and 0 deletions.
7 changes: 7 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
* Validator: Fix narrative link validation and add id/idref validation (for IPS)
* Validator: Fix stated path for error when code not in value set
* Renderer: Fix rendering of trigger definition using tables inside paragraphs
* Renderer: Fix problem with profiled resources being called examples in IG publisher
* Renderer: Fix bug where version specific references to profiles not picked up
* US Realm: Add link to US Core derivation process
* Add more data to qa.json
Original file line number Diff line number Diff line change
Expand Up @@ -1404,6 +1404,14 @@ private void recordOutcome(Exception ex, ValidationPresenter val) {
if (sourceIg != null) {
j.add("url", sourceIg.getUrl());
j.add("name", sourceIg.getName());
j.add("title", sourceIg.getTitle());
j.add("description", sourceIg.getDescription());
if (sourceIg.hasDate()) {
j.add("ig-date", sourceIg.getDateElement().primitiveValue());
}
if (sourceIg.hasStatus()) {
j.add("status", sourceIg.getStatusElement().primitiveValue());
}
}
if (publishedIg != null && publishedIg.hasPackageId()) {
j.add("package-id", publishedIg.getPackageId());
Expand Down Expand Up @@ -1457,6 +1465,7 @@ private void recordOutcome(Exception ex, ValidationPresenter val) {

} catch (Exception e) {
// nothing at all
e.printStackTrace();
}
}

Expand Down
1 change: 1 addition & 0 deletions test-statistics.csv
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
1.5.3,62418,1056,84,102068,518367,403,369579,573257,642176,31817,61688,155149,378520,47453,170718
1.5.4,201239,1080,83,122179,498340,842,1226556,425324,735786,32039,86648,362312,299788,55033,229902
1.5.5,50609,1074,90,125547,251320,779,410524,522019,679770,30849,62479,180025,221887,49386,197513
1.5.6,47309,1083,74,113796,342911,455,609865,525930,673401,32240,78611,276048,269541,49252,198289
109 changes: 109 additions & 0 deletions test-statistics.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,5 +843,114 @@
"time" : 679770,
"memory" : 4675600680
}
},
"1.5.6" : {
"sync-date" : "2023-11-24",
"date" : "2023-12-11",
"hl7.fhir.template.ig" : {
"errors" : 0,
"warnings" : 0,
"hints" : 0,
"time" : 455,
"memory" : 16527896
},
"hl7.cda.uv.core" : {
"errors" : 1,
"warnings" : 1,
"hints" : 2,
"time" : 113796,
"memory" : 3420203288
},
"hl7.fhir.us.ecr" : {
"errors" : 6,
"warnings" : 77,
"hints" : 97,
"time" : 525930,
"memory" : 8282398424
},
"hl7.fhir.uv.ipa" : {
"errors" : 25,
"warnings" : 8,
"hints" : 30,
"time" : 78611,
"memory" : 2289811552
},
"hl7.fhir.uv.ips" : {
"errors" : 140,
"warnings" : 31,
"hints" : 24,
"time" : 276048,
"memory" : 2219448520
},
"ihe.mhd.fhir" : {
"errors" : 0,
"warnings" : 0,
"hints" : 40,
"time" : 198289,
"memory" : 2811111552
},
"hl7.fhir.uv.sdc" : {
"errors" : 127,
"warnings" : 38,
"hints" : 153,
"time" : 269541,
"memory" : 2061259264
},
"hl7.fhir.uv.tools" : {
"errors" : 68,
"warnings" : 4,
"hints" : 3,
"time" : 49252,
"memory" : 3207420072
},
"hl7.base.template.ig" : {
"errors" : 0,
"warnings" : 0,
"hints" : 0,
"time" : 74,
"memory" : 8390632
},
"hl7.fhir.uv.howto" : {
"errors" : 1,
"warnings" : 0,
"hints" : 0,
"time" : 32240,
"memory" : 1634040088
},
"fhir.base.template.ig" : {
"errors" : 0,
"warnings" : 0,
"hints" : 0,
"time" : 1083,
"memory" : 92958296
},
"hl7.fhir.au.base" : {
"errors" : 7,
"warnings" : 187,
"hints" : 128,
"time" : 342911,
"memory" : 2283154648
},
"example.fhir.uv.myig" : {
"errors" : 14,
"warnings" : 11,
"hints" : 3,
"time" : 47309,
"memory" : 1693168456
},
"hl7.fhir.us.core" : {
"errors" : 3,
"warnings" : 10,
"hints" : 184,
"time" : 609865,
"memory" : 6010674664
},
"hl7.fhir.uv.extensions" : {
"errors" : 31,
"warnings" : 33,
"hints" : 160,
"time" : 673401,
"memory" : 4132171280
}
}
}

0 comments on commit be0487e

Please sign in to comment.