Skip to content

Commit fd7ea3d

Browse files
committed
gh-28 Update changelog
Signed-off-by: Victor Chang <[email protected]>
1 parent 28b3e40 commit fd7ea3d

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ SPDX-License-Identifier: Apache License 2.0
55

66
# Changelog
77

8+
## 0.2.0
9+
10+
[GitHub Milestone 0.2.0](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/6)
11+
12+
- Adds DICOMWeb STOW-RS service to enable triggering of workflow requests via DICOMWeb standard.
13+
- Breaking changes in the storage configuration to allow dynamic key-value pairs.
14+
815
## 0.1.1
916

1017
[GitHub Milestone 0.1.1](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/6)

docs/setup/schema.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,16 @@ The `InformaticsGateway` configuration section contains the following sub-sectio
7979
}
8080
},
8181
"storage": {
82-
"temporary": "/payloads"
82+
"temporary": "./payloads",
83+
"bucketName": "monaideploy",
84+
"settings": {
85+
"endpoint": "localhost:9000",
86+
"accessKey": "username",
87+
"accessToken": "password",
88+
"securedConnection": false,
89+
"region": "na",
90+
"credentialServiceUrl": "http://localhost:9000"
91+
}
8392
}
8493
},
8594
"Logging": {
@@ -133,7 +142,7 @@ The `InformaticsGateway` configuration section contains the following sub-sectio
133142
"HostDatabaseStorageMount": "~/.mig/database",
134143
"HostLogsStorageMount": "~/.mig/logs",
135144
"InformaticsGatewayServerEndpoint": "http://localhost:5000",
136-
"DockerImagePrefix": "monai/informatics-gateway"
145+
"DockerImagePrefix": "ghcr.io/project-monai/monai-deploy-informatics-gateway"
137146
}
138147
}
139148
```

src/InformaticsGateway/appsettings.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,16 @@
3333
}
3434
},
3535
"storage": {
36-
"temporary": "/payloads"
36+
"temporary": "./payloads",
37+
"bucketName": "monaideploy",
38+
"settings": {
39+
"endpoint": "localhost:9000",
40+
"accessKey": "username",
41+
"accessToken": "password",
42+
"securedConnection": false,
43+
"region": "na",
44+
"credentialServiceUrl": "http://localhost:9000"
45+
}
3746
}
3847
},
3948
"Logging": {

0 commit comments

Comments
 (0)