Skip to content

Commit

Permalink
Merge pull request #237 from medizininformatik-initiative/release-v2.4.1
Browse files Browse the repository at this point in the history
Release v2.4.1
  • Loading branch information
alexanderkiel authored Dec 10, 2024
2 parents 686f48a + 38e967a commit c7ba7f5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v2.4.1

### Enhancements

* Updated ontology to v3.0.1

The full changelog can be found [here](https://github.com/medizininformatik-initiative/flare/milestone/17?closed=1).

## v2.4.0

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
flare:
image: ghcr.io/medizininformatik-initiative/flare:2.4.0
image: ghcr.io/medizininformatik-initiative/flare:2.4.1
ports:
- 8080:8080
volumes:
Expand Down
14 changes: 8 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.5</version>
<version>3.4.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<groupId>de.medizininformatik-initiative</groupId>
<artifactId>flare</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>

<name>Flare</name>
<description>Flare</description>

<properties>
<java.version>17</java.version>
<testcontainers.version>1.20.3</testcontainers.version>
<ontology.version>3.0.0</ontology.version>
<testcontainers.version>1.20.4</testcontainers.version>
<ontology.version>3.0.1</ontology.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -124,12 +124,14 @@
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<scope>test</scope>
<version>4.12.0</version>
</dependency>

<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<scope>test</scope>
<version>4.12.0</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -197,7 +199,7 @@
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.12.0</version>
<version>1.13.0</version>
<executions>
<execution>
<id>download-ontology</id>
Expand All @@ -206,7 +208,7 @@
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/medizininformatik-initiative/fhir-ontology-generator/raw/v${ontology.version}/example/fdpg-ontology/mapping.zip</url>
<url>https://github.com/medizininformatik-initiative/fhir-ontology-generator/releases/download/v${ontology.version}/mapping.zip</url>
<outputFileName>mapping.zip</outputFileName>
<outputDirectory>ontology/</outputDirectory>
<skipCache>true</skipCache>
Expand Down

0 comments on commit c7ba7f5

Please sign in to comment.