Skip to content

Commit

Permalink
Merge pull request #411 from medizininformatik-initiative/release/v6.0.2
Browse files Browse the repository at this point in the history
Release v6.0.2
  • Loading branch information
michael-82 authored Dec 10, 2024
2 parents 99c01d3 + 1da798d commit 1738f41
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [6.0.2] - 2024-12-10

### Fixed
- Update Sq2CQL to v0.6.1
- Update Ontology to v3.0.1

## [6.0.1] - 2024-11-29

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>de.medizininformatik-initiative</groupId>
<artifactId>DataportalBackend</artifactId>
<version>6.0.1</version>
<version>6.0.2</version>

<name>Dataportal Backend</name>
<description>Backend of the Dataportal</description>
Expand All @@ -27,7 +27,7 @@
<java.version>17</java.version>
<mockwebserver.version>4.12.0</mockwebserver.version>
<okhttp3.version>4.10.0</okhttp3.version>
<ontology-tag>v3.0.0</ontology-tag>
<ontology-tag>v3.0.1</ontology-tag>
</properties>

<dependencies>
Expand Down Expand Up @@ -206,7 +206,7 @@
<dependency>
<groupId>de.medizininformatik-initiative</groupId>
<artifactId>sq2cql</artifactId>
<version>0.6.0</version>
<version>0.6.1</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,9 @@ private Bundle addMeasure(Bundle queryBundle, UUID libraryId) {
.setCode(CODE_SYSTEM_MEASURE_SCORING_VALUE_COHORT)))
.addLibrary(createCanonicalUUIDUrn(libraryId));

measure.addGroup().addPopulation()
.setCode(new CodeableConcept()
var population = measure.addGroup().addPopulation();
population.setId(UUID.randomUUID().toString());
population.setCode(new CodeableConcept()
.addCoding(new Coding()
.setSystem(CODE_SYSTEM_MEASURE_POPULATION)
.setCode(CODE_SYSTEM_MEASURE_POPULATION_VALUE_INITIAL_POPULATION)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ public void testPublishQuery()
assertEquals(1, measure.getMeta().getProfile().stream().filter(p -> p.getValueAsString()
.equals("http://medizininformatik-initiative.de/fhir/StructureDefinition/feasibility-measure"))
.count());
assertEquals(36, measure.getGroupFirstRep().getPopulationFirstRep().getId().length());
assertEquals("http://medizininformatik-initiative.de/fhir/CodeSystem/feasibility", measureReferenceSystem);
}

Expand Down

0 comments on commit 1738f41

Please sign in to comment.