Skip to content

Commit e6d4e8b

Browse files
committed
Release v0.30.0
1 parent afccc92 commit e6d4e8b

File tree

9 files changed

+34
-17
lines changed

9 files changed

+34
-17
lines changed

CHANGELOG.md

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

3+
## v0.30.0
4+
5+
### Enhancements
6+
7+
* Implement Conditional Delete ([#1953](https://github.com/samply/blaze/issues/1953))
8+
* Encrypt Query Params in Page Links ([#1995](https://github.com/samply/blaze/issues/1995))
9+
10+
### Bugfixes
11+
12+
* Fix False Positives while Checking Referential Integrity ([#2015](https://github.com/samply/blaze/issues/2015))
13+
* Patient $everything Ignores Query Params when Paging ([#2014](https://github.com/samply/blaze/issues/2014))
14+
* Fix Parsing of Dates starting with a Zero in the Year Component ([#2003](https://github.com/samply/blaze/issues/2003))
15+
* Fix Status Code of Type-Level $evaluate-measure Operation ([#512](https://github.com/samply/blaze/issues/512))
16+
* CQL Now Should return a LocalDateTime ([#1966](https://github.com/samply/blaze/issues/1966))
17+
18+
The full changelog can be found [here](https://github.com/samply/blaze/milestone/94?closed=1).
19+
320
## v0.29.3
421

522
### 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.29.3-standalone.jar /app/
10+
COPY target/blaze-0.30.0-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.29.3-standalone.jar"]
23+
CMD ["java", "-jar", "blaze-0.30.0-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.29.3][5]
23+
Latest release: [v0.30.0][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.29.3>
79+
[5]: <https://github.com/samply/blaze/releases/tag/v0.30.0>
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.29.3")
8+
(def version "0.30.0")
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.29.3",
30+
text: "v0.30.0",
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.29.3). Look for `blaze-0.29.3-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.0). Look for `blaze-0.30.0-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.29.3-standalone.jar
10+
java -jar blaze-0.30.0-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.29.3-standalone.jar
20+
STORAGE=standalone java -jar blaze-0.30.0-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.29.3-standalone.jar
27+
java -jar blaze-0.30.0-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.29.3 in 8.2 seconds
45+
2021-06-27T11:02:37.836Z ee086ef908c1 main INFO [blaze.core:67] - Successfully started Blaze version 0.30.0 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.29.3"
65+
"version": "0.30.0"
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.29.3 in 9.0 seconds
30+
2023-06-09T08:30:30.126Z b45689460ff3 main INFO [blaze.core:70] - Successfully started 🔥 Blaze version 0.30.0 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.29.3"
50+
"version": "0.30.0"
5151
}
5252
```
5353

modules/frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blaze-frontend",
3-
"version": "0.29.3",
3+
"version": "0.30.0",
44
"private": true,
55
"scripts": {
66
"dev": "vite dev",

0 commit comments

Comments
 (0)