File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed
src/main/java/de/medizininformatikinitiative/torch/rest Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
7
+ ## [ v1.0.0-alpha.8] - 2025-08-25
8
+
9
+ ### Added
10
+
11
+ - Sign Docker images with cosign [ #444 ] ( https://github.com/medizininformatik-initiative/torch/pull/444 )
12
+ - Add Permit Type and Consent Status in Consent
13
+ Calculation [ #408 ] ( https://github.com/medizininformatik-initiative/torch/pull/408 )
14
+
15
+ ### Fixed
16
+
17
+ - Fix NullPointer Exception oauth if no params provided and set default to no
18
+ params [ #423 ] ( https://github.com/medizininformatik-initiative/torch/pull/423 )
19
+ - Fix Torch does not provide Base URL in Status
20
+ Response [ #436 ] ( https://github.com/medizininformatik-initiative/torch/pull/436 )
21
+
7
22
## [ v1.0.0-alpha.7] - 2025-08-04
8
23
9
24
### Added
Original file line number Diff line number Diff line change 13
13
14
14
<groupId >de.medizininformatikinitiative</groupId >
15
15
<artifactId >torch</artifactId >
16
- <version >1.0.0-alpha.7 </version >
16
+ <version >1.0.0-alpha.8 </version >
17
17
18
18
<properties >
19
19
<maven .compiler.source>21</maven .compiler.source>
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ private CapabilityStatement createCapabilityStatement() {
35
35
capabilityStatement .setDate (new java .util .Date ());
36
36
capabilityStatement .setFhirVersion (Enumerations .FHIRVersion ._4_0_1 );
37
37
capabilityStatement .setKind (CapabilityStatement .CapabilityStatementKind .INSTANCE );
38
- capabilityStatement .getSoftware ().setName ("Torch FHIR Server" ).setVersion ("1.0.0-alpha.7 " );
38
+ capabilityStatement .getSoftware ().setName ("Torch FHIR Server" ).setVersion ("1.0.0-alpha.8 " );
39
39
capabilityStatement .getImplementation ().setDescription ("Torch FHIR Server Implementation" );
40
40
logger .trace ("Created basic metadata for CapabilityStatement" );
41
41
You can’t perform that action at this time.
0 commit comments