Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 3.5.4 #187

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ mvn -Dtest=CapabilityStatementTests test
command in documentation, the changelog, etc.).
2. Merge the pull request if all tests have succeeded.
3. Wait for the [Angular workflow](https://github.com/ahdis/matchbox/blob/main/.github/workflows/angular_build.yml)
to complete. Since the package.json was modified, the Angular project is rebuilt.
to complete. Since the package.json was modified, the Angular project is rebuilt, unless you also have built the
Angular project in your commit ; in that case, the Angular workflow won't commit anything.
4. Create a [release](https://github.com/ahdis/matchbox/releases) with the changelog (e.g. "matchbox v3.4.1") and a
[tag](https://github.com/ahdis/matchbox/tags) (e.g. `v.3.4.1`) in GitHub.
5. It will trigger two workflows:
Expand Down
5 changes: 4 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
YYYY/MM/DD Release 3.5.4
2024/01/31 Release 3.5.4

- `docker pull europe-west6-docker.pkg.dev/ahdis-ch/ahdis/matchbox:v3.5.4`
- The application now stops if it fails to load an IG, instead of continuing running without an engine [#171](https://github.com/ahdis/matchbox/issues/171)
- GUI: improved the validation interface [#177](https://github.com/ahdis/matchbox/issues/177)
- Dependency upgrade to fix various security issues (see https://github.com/ahdis/matchbox/security/dependabot and
https://github.com/ahdis/matchbox/security/code-scanning)
- Added security scanners for the Java code, Java dependencies and Docker image

2024/01/05 Release 3.5.3

Expand Down
2 changes: 1 addition & 1 deletion docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if you have the rights you can download Matchbox as a docker container:

```
docker pull europe-west6-docker.pkg.dev/ahdis-ch/ahdis/matchbox:v3.5.3
docker pull europe-west6-docker.pkg.dev/ahdis-ch/ahdis/matchbox:v3.5.4
```

## Configurable base image:
Expand Down
2 changes: 1 addition & 1 deletion docs/matchbox-engine.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You can add the matchbox-engine dependency in your `pom.xml`:
<dependency>
<groupId>health.matchbox</groupId>
<artifactId>matchbox-engine</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
</dependency>
```

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.5.3</version>
<version>3.5.4</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.5.3",
"version": "3.5.4",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down
2 changes: 1 addition & 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.5.3</version>
<version>3.5.4</version>
</parent>

<artifactId>matchbox-server</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion matchbox-server/src/main/resources/static/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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.5.3</version>
<version>3.5.4</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
Loading