Skip to content

Commit e59dadc

Browse files
committed
Release v0.34.0
1 parent 38e6bd3 commit e59dadc

File tree

11 files changed

+67
-19
lines changed

11 files changed

+67
-19
lines changed

CHANGELOG.md

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

3+
## v0.34.0
4+
5+
### Notes
6+
7+
This is mostly a bug-fix release with some [Terminology Service](https://samply.github.io/blaze/terminology-service.html) enhancements.
8+
9+
### Enhancements
10+
11+
* Add Terminology Operations UI ([#2544](https://github.com/samply/blaze/issues/2544))
12+
* Support system-version Parameter on ValueSet $validate-code ([#2536](https://github.com/samply/blaze/issues/2536))
13+
* Implement Summary Mode for Code Systems and Value Sets ([#2527](https://github.com/samply/blaze/issues/2527))
14+
* Add LOINC Answer List Property answer-list ([#2471](https://github.com/samply/blaze/issues/2471))
15+
16+
### Bugfixes
17+
18+
* Fix Low and High Property Access on Interval ([#2467](https://github.com/samply/blaze/issues/2467))
19+
* Fix SNOMED CT Versions ([#2515](https://github.com/samply/blaze/issues/2515))
20+
* Fix Conditional Delete in Transaction ([#2574](https://github.com/samply/blaze/issues/2574))
21+
* Remove Maximum String Length on JSON Payload ([#2577](https://github.com/samply/blaze/issues/2577))
22+
* Fix False Positives while Searching for References ([#2592](https://github.com/samply/blaze/issues/2592))
23+
* Fix Thread Deadlock on Large Batches ([#2584](https://github.com/samply/blaze/issues/2584))
24+
25+
The full changelog can be found [here](https://github.com/samply/blaze/milestone/105?closed=1).
26+
327
## v0.33.0
428

529
### Enhancements

Dockerfile

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

1111
RUN mkdir -p /app/data && chown 1001:1001 /app/data
12-
COPY target/blaze-0.33.0-standalone.jar /app/
12+
COPY target/blaze-0.34.0-standalone.jar /app/
1313

1414
WORKDIR /app
1515
USER 1001
@@ -22,4 +22,4 @@ ENV RESOURCE_DB_DIR="/app/data/resource"
2222
ENV ADMIN_INDEX_DB_DIR="/app/data/admin-index"
2323
ENV ADMIN_TRANSACTION_DB_DIR="/app/data/admin-transaction"
2424

25-
CMD ["java", "-jar", "blaze-0.33.0-standalone.jar"]
25+
CMD ["java", "-jar", "blaze-0.34.0-standalone.jar"]

README.md

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

2222
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.
2323

24-
Latest release: [v0.33.0][5]
24+
Latest release: [v0.34.0][5]
2525

2626
## Documentation
2727

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

5454
[3]: <https://cql.hl7.org/tests.html>
5555
[4]: <https://alexanderkiel.gitbook.io/blaze/deployment>
56-
[5]: <https://github.com/samply/blaze/releases/tag/v0.33.0>
56+
[5]: <https://github.com/samply/blaze/releases/tag/v0.34.0>
5757
[6]: <https://www.yourkit.com/java/profiler/>
5858
[7]: <https://www.yourkit.com/.net/profiler/>
5959
[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.33.0")
8+
(def version "0.34.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
@@ -40,7 +40,7 @@ export default defineConfig({
4040
nav: [
4141
{ text: 'Home', link: '/' },
4242
{
43-
text: 'v0.33.0',
43+
text: 'v0.34.0',
4444
items: [
4545
{
4646
text: 'Changelog',

docs/api/interaction/history-instance.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ GET [base]/[type]/[id]/_history
88

99
The return content is a Bundle with type set to `history` containing the versions of the resource in question, sorted with newest versions first, and including versions of resource deletions. The history instance interaction supports paging which is described in depth in the separate [paging sessions](../../api.md#paging-sessions) section.
1010

11+
## Search Result Parameters
12+
13+
| Name | Description |
14+
|------------|--------------------------------------------------|
15+
| `_summary` | `true`, `data`, `count` and `false` is supported |
16+
1117
## Large Histories
1218

1319
For histories with more than 2^31-1 entries, the data type of `Bundle.total` can no longer store the number of history entries. In that case, for numbers higher than 2^31-1, Blaze omits the `Bundle.total` value and instead uses an extension to represent the number of entries using the string data type. A bundle would look like this:

docs/api/interaction/history-system.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ GET [base]/_history
88

99
The return content is a Bundle with type set to `history` containing the versions of the resources in question, sorted with newest versions first, and including versions of resource deletions. The history system interaction supports paging which is described in depth in the separate [paging sessions](../../api.md#paging-sessions) section.
1010

11+
## Search Result Parameters
12+
13+
| Name | Description |
14+
|------------|--------------------------------------------------|
15+
| `_summary` | `true`, `data`, `count` and `false` is supported |
16+
1117
## Large Histories
1218

1319
For histories with more than 2^31-1 entries, the data type of `Bundle.total` can no longer store the number of history entries. In that case, for numbers higher than 2^31-1, Blaze omits the `Bundle.total` value and instead uses an extension to represent the number of entries using the string data type. A bundle would look like this:

docs/api/interaction/history-type.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ GET [base]/[type]/_history
88

99
The return content is a Bundle with type set to `history` containing the versions of the resources in question, sorted with newest versions first, and including versions of resource deletions. The history type interaction supports paging which is described in depth in the separate [paging sessions](../../api.md#paging-sessions) section.
1010

11+
## Search Result Parameters
12+
13+
| Name | Description |
14+
|------------|--------------------------------------------------|
15+
| `_summary` | `true`, `data`, `count` and `false` is supported |
16+
1117
## Large Histories
1218

1319
For histories with more than 2^31-1 entries, the data type of `Bundle.total` can no longer store the number of history entries. In that case, for numbers higher than 2^31-1, Blaze omits the `Bundle.total` value and instead uses an extension to represent the number of entries using the string data type. A bundle would look like this:

docs/api/interaction/search-system.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
GET [base]?param1=value&...
55
```
66

7+
## Search Result Parameters
8+
9+
| Name | Description |
10+
|------------|--------------------------------------------------|
11+
| `_summary` | `true`, `data`, `count` and `false` is supported |
12+
713
## Paging
814

915
The search-type interaction supports paging which is described in depth in the separate [paging sessions](../../api.md#paging-sessions) section.

docs/api/interaction/search-type.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ POST [base]/[type]/_search
77

88
## Search Result Parameters
99

10-
| Name | Description |
11-
|------------------|-----------------------------------------------------------------|
12-
| `_sort` | see Sorting |
13-
| `_count` | the default page size is 50 and the maximum page size is 10.000 |
14-
| `_include` | supported, except the wildcard `*` |
15-
| `_revinclude` | supported, except the wildcard `*` |
16-
| `_summary` | only `count` is supported |
17-
| `_total` | `accurate` is supported |
18-
| `_elements` | fully supported |
19-
| `_contained` | not supported |
20-
| `_containedType` | not supported |
10+
| Name | Description |
11+
|------------------|------------------------------------------------------------------------------------------------------------------------------------------------|
12+
| `_sort` | see Sorting |
13+
| `_count` | the default page size is 50 and the maximum page size is 10.000 |
14+
| `_include` | supported, except the wildcard `*` |
15+
| `_revinclude` | supported, except the wildcard `*` |
16+
| `_summary` | `true`, `data`, `count` and `false` is supported for CodeSystem and ValueSet resources while `count` is supported for all other resource types |
17+
| `_total` | `accurate` is supported |
18+
| `_elements` | fully supported |
19+
| `_contained` | not supported |
20+
| `_containedType` | not supported |
2121

2222
## _profile
2323

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.33.0 in 9.0 seconds
30+
2023-06-09T08:30:30.126Z b45689460ff3 main INFO [blaze.core:70] - Successfully started 🔥 Blaze version 0.34.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.33.0"
50+
"version": "0.34.0"
5151
}
5252
```
5353

0 commit comments

Comments
 (0)