Skip to content

Commit

Permalink
update dependencies #301
Browse files Browse the repository at this point in the history
  • Loading branch information
oliveregger committed Oct 24, 2024
1 parent 3626580 commit fa6a866
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 8 deletions.
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024/10/24 Release 3.9.5

- Updated dependencies [#301](https://github.com/ahdis/matchbox/issues/301)

2024/10/17 Release 3.9.4

- Validation: Tutorial for validating FHIR resources with [matchbox](https://ahdis.github.io/matchbox/validation-tutorial/)
Expand Down
2 changes: 1 addition & 1 deletion matchbox-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>matchbox</artifactId>
<groupId>health.matchbox</groupId>
<version>3.9.4</version>
<version>3.9.5</version>
</parent>

<artifactId>matchbox-engine</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions matchbox-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion matchbox-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "matchbox",
"version": "3.9.4",
"version": "3.9.5",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down
6 changes: 5 additions & 1 deletion matchbox-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>matchbox</artifactId>
<groupId>health.matchbox</groupId>
<version>3.9.4</version>
<version>3.9.5</version>
</parent>

<artifactId>matchbox-server</artifactId>
Expand Down Expand Up @@ -60,6 +60,10 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>*</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion matchbox-server/with-elm/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ hapi:
url: classpath:/hl7.fhir.uv.extensions.r4#1.0.0.tgz
ch_elm:
name: ch.fhir.ig.ch-elm
version: 1.4.0
version: 1.6.0-cibuild
url: https://build.fhir.org/ig/ahdis/ch-elm/package.tgz
staticLocation: file:/apps/
matchbox:
fhir:
Expand Down
23 changes: 21 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>health.matchbox</groupId>
<artifactId>matchbox</artifactId>
<version>3.9.4</version>
<version>3.9.5</version>
<packaging>pom</packaging>
<name>matchbox</name>
<description>An open-source implementation to support testing and implementation of FHIR based solutions and map or
Expand Down Expand Up @@ -73,7 +73,7 @@
<hibernate_version>6.4.1.Final</hibernate_version>
<hibernate_search_version>7.0.0.Final</hibernate_search_version>
<!-- Update lucene version when you update hibernate-search version -->
<lucene_version>9.8.0</lucene_version>
<lucene_version>9.12.0</lucene_version>
<hamcrest_version>2.2</hamcrest_version>
<hibernate_validator_version>8.0.0.Final</hibernate_validator_version>
<httpcore_version>4.4.13</httpcore_version>
Expand Down Expand Up @@ -149,10 +149,21 @@
<artifactId>protobuf-java</artifactId>
<version>3.25.5</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons_io_version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.r4</artifactId>
<version>${fhir.core.version}</version>
<exclusions>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
Expand Down Expand Up @@ -191,6 +202,10 @@
<artifactId>hapi-fhir-base</artifactId>
<version>${hapi.fhir.version}</version>
<exclusions>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down Expand Up @@ -220,6 +235,10 @@
<groupId> org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
Expand Down

0 comments on commit fa6a866

Please sign in to comment.