Skip to content

Commit 889ca64

Browse files
committed
Release v0.30.2
1 parent 32aa23c commit 889ca64

File tree

7 files changed

+26
-14
lines changed

7 files changed

+26
-14
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## v0.30.2
4+
5+
### Performance
6+
7+
* Improve FHIR Search Performance with Subject References ([#2161](https://github.com/samply/blaze/issues/2161))
8+
9+
### Documentation
10+
11+
* Add Note About Fix Context Path When Using the UI ([#2135](https://github.com/samply/blaze/issues/2135))
12+
13+
The full changelog can be found [here](https://github.com/samply/blaze/milestone/102?closed=1).
14+
315
## v0.30.1
416

517
### Bugfixes

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apt-get update && apt-get upgrade -y && \
77
rm -rf /var/lib/apt/lists/
88

99
RUN mkdir -p /app/data && chown 1001:1001 /app/data
10-
COPY target/blaze-0.30.1-standalone.jar /app/
10+
COPY target/blaze-0.30.2-standalone.jar /app/
1111

1212
WORKDIR /app
1313
USER 1001
@@ -20,4 +20,4 @@ ENV RESOURCE_DB_DIR="/app/data/resource"
2020
ENV ADMIN_INDEX_DB_DIR="/app/data/admin-index"
2121
ENV ADMIN_TRANSACTION_DB_DIR="/app/data/admin-transaction"
2222

23-
CMD ["java", "-jar", "blaze-0.30.1-standalone.jar"]
23+
CMD ["java", "-jar", "blaze-0.30.2-standalone.jar"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A demo installation can be found [here](https://blaze.life.uni-leipzig.de/fhir)
2020

2121
Blaze is widely used in the [Medical Informatics Initiative](https://www.medizininformatik-initiative.de) in Germany and in [Biobanks](https://www.bbmri-eric.eu) across Europe. A 1.0 version is expected in the next months.
2222

23-
Latest release: [v0.30.1][5]
23+
Latest release: [v0.30.2][5]
2424

2525
## Quick Start
2626

@@ -76,7 +76,7 @@ Unless required by applicable law or agreed to in writing, software distributed
7676

7777
[3]: <https://cql.hl7.org/tests.html>
7878
[4]: <https://alexanderkiel.gitbook.io/blaze/deployment>
79-
[5]: <https://github.com/samply/blaze/releases/tag/v0.30.1>
79+
[5]: <https://github.com/samply/blaze/releases/tag/v0.30.2>
8080
[6]: <https://www.yourkit.com/java/profiler/>
8181
[7]: <https://www.yourkit.com/.net/profiler/>
8282
[8]: <https://www.yourkit.com/youmonitor/>

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[java.time LocalDate]))
66

77
(def lib 'samply/blaze)
8-
(def version "0.30.1")
8+
(def version "0.30.2")
99
(def class-dir "target/classes")
1010
(def basis (b/create-basis {:project "deps.edn"}))
1111
(def uber-file (format "target/%s-%s-standalone.jar" (name lib) version))

docs/.vitepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default defineConfig({
2727
nav: [
2828
{text: 'Home', link: '/'},
2929
{
30-
text: "v0.30.1",
30+
text: "v0.30.2",
3131
items: [
3232
{
3333
text: 'Changelog',

docs/deployment/manual-deployment.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
The installation works under Windows, Linux and macOS. The only dependency is an installed OpenJDK 11 or 17 with 17 recommended. Blaze is tested with [Eclipse Temurin][1].
44

5-
Blaze runs on the JVM and comes as single JAR file. Download the most recent version [here](https://github.com/samply/blaze/releases/tag/v0.30.1). Look for `blaze-0.30.1-standalone.jar`.
5+
Blaze runs on the JVM and comes as single JAR file. Download the most recent version [here](https://github.com/samply/blaze/releases/tag/v0.30.2). Look for `blaze-0.30.2-standalone.jar`.
66

77
After the download, you can start blaze with the following command (Linux, macOS):
88

99
```sh
10-
java -jar blaze-0.30.1-standalone.jar
10+
java -jar blaze-0.30.2-standalone.jar
1111
```
1212

1313
Blaze will run with an in-memory, volatile database for testing and demo purposes.
@@ -17,14 +17,14 @@ Blaze can be run with durable storage by setting the environment variables `STOR
1717
Under Linux/macOS:
1818

1919
```sh
20-
STORAGE=standalone java -jar blaze-0.30.1-standalone.jar
20+
STORAGE=standalone java -jar blaze-0.30.2-standalone.jar
2121
```
2222

2323
Under Windows, you need to set the Environment variables in the PowerShell before starting Blaze:
2424

2525
```powershell
2626
$Env:STORAGE="standalone"
27-
java -jar blaze-0.30.1-standalone.jar
27+
java -jar blaze-0.30.2-standalone.jar
2828
```
2929

3030
This will create three directories called `index`, `transaction` and `resource` inside the current working directory, one for each database part used.
@@ -42,7 +42,7 @@ The output should look like this:
4242
2021-06-27T11:02:37.834Z ee086ef908c1 main INFO [blaze.core:64] - JVM version: 16.0.2
4343
2021-06-27T11:02:37.834Z ee086ef908c1 main INFO [blaze.core:65] - Maximum available memory: 1738 MiB
4444
2021-06-27T11:02:37.835Z ee086ef908c1 main INFO [blaze.core:66] - Number of available processors: 8
45-
2021-06-27T11:02:37.836Z ee086ef908c1 main INFO [blaze.core:67] - Successfully started Blaze version 0.30.1 in 8.2 seconds
45+
2021-06-27T11:02:37.836Z ee086ef908c1 main INFO [blaze.core:67] - Successfully started Blaze version 0.30.2 in 8.2 seconds
4646
```
4747

4848
In order to test connectivity, query the health endpoint:
@@ -62,7 +62,7 @@ that should return:
6262
```json
6363
{
6464
"name": "Blaze",
65-
"version": "0.30.1"
65+
"version": "0.30.2"
6666
}
6767
```
6868

docs/deployment/standalone-backend.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Blaze should log something like this:
2727
2023-06-09T08:30:30.126Z b45689460ff3 main INFO [blaze.core:67] - JVM version: 17.0.7
2828
2023-06-09T08:30:30.126Z b45689460ff3 main INFO [blaze.core:68] - Maximum available memory: 1738 MiB
2929
2023-06-09T08:30:30.126Z b45689460ff3 main INFO [blaze.core:69] - Number of available processors: 2
30-
2023-06-09T08:30:30.126Z b45689460ff3 main INFO [blaze.core:70] - Successfully started 🔥 Blaze version 0.30.1 in 9.0 seconds
30+
2023-06-09T08:30:30.126Z b45689460ff3 main INFO [blaze.core:70] - Successfully started 🔥 Blaze version 0.30.2 in 9.0 seconds
3131
```
3232

3333
In order to test connectivity, query the health endpoint:
@@ -47,7 +47,7 @@ that should return:
4747
```json
4848
{
4949
"name": "Blaze",
50-
"version": "0.30.1"
50+
"version": "0.30.2"
5151
}
5252
```
5353

0 commit comments

Comments
 (0)