Skip to content

Commit c3888f3

Browse files
authored
Merge pull request #618 from CMSgov/bug/stratifier-uuid-insensitivity
Merge stratifier hot fix into master
2 parents f691d19 + 0e40adb commit c3888f3

File tree

11 files changed

+14
-12
lines changed

11 files changed

+14
-12
lines changed

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>1.2.2-RELEASE</version>
9+
<version>1.2.3-RELEASE</version>
1010
<relativePath>../</relativePath>
1111
</parent>
1212

commandline/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>1.2.2-RELEASE</version>
9+
<version>1.2.3-RELEASE</version>
1010
<relativePath>../</relativePath>
1111
</parent>
1212

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>1.2.2-RELEASE</version>
9+
<version>1.2.3-RELEASE</version>
1010
<relativePath>../</relativePath>
1111
</parent>
1212

converter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>1.2.2-RELEASE</version>
9+
<version>1.2.3-RELEASE</version>
1010
<relativePath>../</relativePath>
1111
</parent>
1212

converter/src/main/java/gov/cms/qpp/conversion/validate/CpcQualityMeasureIdValidator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ protected void followUpHook(Node node, SubPopulation sub) {
123123

124124
sub.getStrata().forEach(stratum -> {
125125
Predicate<Node> seek = child ->
126-
child.getValue(StratifierDecoder.STRATIFIER_ID).equals(stratum);
126+
child.getValue(StratifierDecoder.STRATIFIER_ID).equalsIgnoreCase(stratum);
127127

128128
if (strataNodes.stream().noneMatch(seek)) {
129129
LocalizedError error = ErrorCode.CPC_QUALITY_MEASURE_ID_MISSING_STRATA.format(stratum,

converter/src/test/resources/fixtures/qppct298/cms137v5.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -687,6 +687,7 @@
687687
</observation>
688688
</entryRelationship>
689689
<!-- Stratifier for EFB5B088-CE10-43DE-ACCD-9913B7AC12A2-->
690+
<!-- Includes lower and uppercase characters -->
690691
<entryRelationship typeCode="COMP">
691692
<observation classCode="OBS" moodCode="EVN">
692693
<templateId root="2.16.840.1.113883.10.20.27.3.20"/>
@@ -718,12 +719,13 @@
718719
</entryRelationship>
719720
<reference typeCode="REFR">
720721
<externalObservation>
721-
<id root="EFB5B088-CE10-43DE-ACCD-9913B7AC12A2"/>
722+
<id root="efb5b088-ce10-43de-accd-9913b7ac12a2"/>
722723
</externalObservation>
723724
</reference>
724725
</observation>
725726
</entryRelationship>
726727
<!-- Stratifier for 94B9555F-8700-45EF-B69F-433EBEDE8051-->
728+
<!--Includes lower and uppercase characters-->
727729
<entryRelationship typeCode="COMP">
728730
<observation classCode="OBS" moodCode="EVN">
729731
<templateId root="2.16.840.1.113883.10.20.27.3.20"/>
@@ -755,7 +757,7 @@
755757
</entryRelationship>
756758
<reference typeCode="REFR">
757759
<externalObservation>
758-
<id root="94B9555F-8700-45EF-B69F-433EBEDE8051"/>
760+
<id root="94B9555F-8700-45eF-B69F-433eBEdE8051"/>
759761
</externalObservation>
760762
</reference>
761763
</observation>

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qpp-conversion-frontend",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"license": "MIT",
55
"scripts": {
66
"ng": "ng",

generate/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>qpp-conversion-tool-parent</artifactId>
77
<groupId>gov.cms.qpp.conversion</groupId>
8-
<version>1.2.2-RELEASE</version>
8+
<version>1.2.3-RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>gov.cms.qpp.conversion</groupId>
77
<artifactId>qpp-conversion-tool-parent</artifactId>
88
<packaging>pom</packaging>
9-
<version>1.2.2-RELEASE</version>
9+
<version>1.2.3-RELEASE</version>
1010
<name>QPP Conversion Tool</name>
1111

1212
<properties>

rest-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>1.2.2-RELEASE</version>
9+
<version>1.2.3-RELEASE</version>
1010
<relativePath>../</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)