Skip to content
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v1.4.1

### Security

* Fix CVE-2025-64756: glob Command Injection ([#3212](https://github.com/samply/blaze/pull/3212))

The full changelog can be found [here](https://github.com/samply/blaze/milestone/118?closed=1).

## v1.4.0

### Notes
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/

RUN mkdir -p /app/data && chown 1001:1001 /app/data
COPY target/blaze-1.4.0-standalone.jar /app/
COPY target/blaze-1.4.1-standalone.jar /app/

WORKDIR /app
USER 1001
Expand All @@ -22,4 +22,4 @@ ENV RESOURCE_DB_DIR="/app/data/resource"
ENV ADMIN_INDEX_DB_DIR="/app/data/admin-index"
ENV ADMIN_TRANSACTION_DB_DIR="/app/data/admin-transaction"

CMD ["java", "-jar", "blaze-1.4.0-standalone.jar"]
CMD ["java", "-jar", "blaze-1.4.1-standalone.jar"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A demo installation can be found [here](https://blaze.life.uni-leipzig.de/fhir)

Blaze is stable and widely used in the [Medical Informatics Initiative](https://www.medizininformatik-initiative.de) in Germany and in [Biobanks](https://www.bbmri-eric.eu) across Europe.

Latest release: [v1.4.0][5]
Latest release: [v1.4.1][5]

## Key Features

Expand Down Expand Up @@ -68,7 +68,7 @@ Unless required by applicable law or agreed to in writing, software distributed
[2]: <https://samply.github.io/blaze/api/operation/measure-evaluate-measure.html>
[3]: <https://cql.hl7.org/tests.html>
[4]: <https://alexanderkiel.gitbook.io/blaze/deployment>
[5]: <https://github.com/samply/blaze/releases/tag/v1.4.0>
[5]: <https://github.com/samply/blaze/releases/tag/v1.4.1>
[6]: <https://www.yourkit.com/java/profiler/>
[7]: <https://www.yourkit.com/.net/profiler/>
[8]: <https://www.yourkit.com/youmonitor/>
Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[java.time LocalDate]))

(def lib 'samply/blaze)
(def version "1.4.0")
(def version "1.4.1")
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
(def uber-file (format "target/%s-%s-standalone.jar" (name lib) version))
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default defineConfig({
nav: [
{ text: "Home", link: "/" },
{
text: "v1.4.0",
text: "v1.4.1",
items: [
{
text: "Changelog",
Expand Down
4 changes: 2 additions & 2 deletions modules/frontend-e2e/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 modules/frontend-e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend-e2e",
"version": "1.4.0",
"version": "1.4.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions modules/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 modules/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blaze-frontend",
"version": "1.4.0",
"version": "1.4.1",
"private": true,
"scripts": {
"dev": "vite dev",
Expand Down