Skip to content

Commit fd427f2

Browse files
committed
Release v1.0.0-alpha.6
1 parent 409e2f9 commit fd427f2

File tree

3 files changed

+46
-5
lines changed

3 files changed

+46
-5
lines changed

CHANGELOG.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,49 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

7+
## [v1.0.0-alpha.6] - 2025-07-23
8+
9+
### Added
10+
11+
- Multi FHIR Profile Handling in Redaction [#361](https://github.com/medizininformatik-initiative/torch/pull/361)
12+
- Redact Primitive Extensions [#336](https://github.com/medizininformatik-initiative/torch/pull/336)
13+
- Added Redaction Handling Fallback for Unknown
14+
Elements [#356](https://github.com/medizininformatik-initiative/torch/pull/356)
15+
16+
### Changed
17+
18+
- Precalculation of compiled StructureDefinition [#337](https://github.com/medizininformatik-initiative/torch/pull/337)
19+
- CI: Split Build And Test phases For Better
20+
Parallelization [#349](https://github.com/medizininformatik-initiative/torch/pull/349)
21+
- CI: Cancel PR Workflows on Update [351](https://github.com/medizininformatik-initiative/torch/pull/351)
22+
23+
### Fixed
24+
25+
- Disable Oauth when no params provided [#335](https://github.com/medizininformatik-initiative/torch/pull/335)
26+
- Bundle URL [#345](https://github.com/medizininformatik-initiative/torch/pull/345)
27+
- Missing :below Modifier In Profile Search [#340](https://github.com/medizininformatik-initiative/torch/pull/340)
28+
729
## [v1.0.0-alpha.5] - 2025-06-19
830

9-
TODO: compile from https://github.com/medizininformatik-initiative/torch/milestone/12?closed=1
31+
### Added
32+
33+
- Performance integration tests
34+
- Extract only reference String from references
35+
36+
### Changed
37+
38+
- Ontology Update to v.3.8.0
39+
- Performance Improvements in Reference Resolve and Redaction
40+
- Improved Env Vars
41+
- CI move from Dependabot to Renovate
42+
43+
### Fixed
44+
45+
- Encounter Update in Consent Handling
46+
47+
### Removed
48+
49+
- Multi FHIR Profile Handling in Redaction
1050

1151
## [v1.0.0-test1] - 2024-04-23
1252

pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>de.medizininformatikinitiative</groupId>
1515
<artifactId>torch</artifactId>
16-
<version>1.0.0-alpha.5</version>
16+
<version>1.0.0-alpha.6</version>
1717

1818
<properties>
1919
<maven.compiler.source>21</maven.compiler.source>
@@ -326,7 +326,9 @@
326326
<arguments>
327327
<argument>-f</argument>
328328
<argument>src/test/jq/transaction-bundle-converter.jq</argument>
329-
<argument>target/kds-testdata-2024.0.1/resources/Bundle-mii-exa-test-data-bundle.json</argument>
329+
<argument>
330+
target/kds-testdata-2024.0.1/resources/Bundle-mii-exa-test-data-bundle.json
331+
</argument>
330332
</arguments>
331333
<outputFile>target/Bundle-mii-exa-test-data-bundle.json</outputFile>
332334
</configuration>

src/main/java/de/medizininformatikinitiative/torch/rest/CapabilityStatementController.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ private CapabilityStatement createCapabilityStatement() {
3535
capabilityStatement.setDate(new java.util.Date());
3636
capabilityStatement.setFhirVersion(Enumerations.FHIRVersion._4_0_1);
3737
capabilityStatement.setKind(CapabilityStatement.CapabilityStatementKind.INSTANCE);
38-
capabilityStatement.getSoftware().setName("Torch FHIR Server").setVersion("1.0.0-alpha.5");
38+
capabilityStatement.getSoftware().setName("Torch FHIR Server").setVersion("1.0.0-alpha.6");
3939
capabilityStatement.getImplementation().setDescription("Torch FHIR Server Implementation");
4040
logger.trace("Created basic metadata for CapabilityStatement");
4141

@@ -50,7 +50,6 @@ private CapabilityStatement createCapabilityStatement() {
5050
resource.getInteraction().add(new CapabilityStatement.ResourceInteractionComponent().setCode(CapabilityStatement.TypeRestfulInteraction.READ));
5151
resource.getInteraction().add(new CapabilityStatement.ResourceInteractionComponent().setCode(CapabilityStatement.TypeRestfulInteraction.SEARCHTYPE));
5252
rest.getResource().add(resource);
53-
// logger.debug("Defined supported resources and operations");
5453

5554
capabilityStatement.getRest().add(rest);
5655

0 commit comments

Comments
 (0)