Skip to content

Commit 7322254

Browse files
aide clinical review plugin (#190)
* add clinical review plugin Signed-off-by: Jack Schofield <[email protected]>
1 parent bb64740 commit 7322254

File tree

87 files changed

+1903
-243
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+1903
-243
lines changed

src/Configuration/Monai.Deploy.WorkflowManager.Configuration.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ SPDX-License-Identifier: Apache License 2.0
1414
<ItemGroup>
1515
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
1616
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
17-
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.1.0-rc0060" />
1817
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
19-
<PackageReference Include="Monai.Deploy.Storage" Version="0.1.0-rc0060" />
18+
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.1.0" />
19+
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.2" />
20+
<PackageReference Include="Monai.Deploy.Storage" Version="0.1.1" />
2021
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.3-rc0006" />
2122
<PackageReference Include="System.IO.Abstractions" Version="17.0.18" />
2223
</ItemGroup>

src/Configuration/packages.lock.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,33 +37,42 @@
3737
"System.IO.Abstractions": "17.0.18"
3838
}
3939
},
40+
"Monai.Deploy.Messaging.RabbitMQ": {
41+
"type": "Direct",
42+
"requested": "[0.1.2, )",
43+
"resolved": "0.1.2",
44+
"contentHash": "pACJuXAqp/OQkLVdUflrxClc+cqKeFGOsOSccikUXQfXdbu4iWZolrFkhN5aGY6g2M8ypGk3iTrwFFonbZkkTQ==",
45+
"dependencies": {
46+
"Monai.Deploy.Messaging": "0.1.2"
47+
}
48+
},
4049
"Monai.Deploy.Storage": {
4150
"type": "Direct",
42-
"requested": "[0.1.0-rc0060, )",
43-
"resolved": "0.1.0-rc0060",
44-
"contentHash": "OMWXg/DbTxjBtQxJhVq16+8SDb4URRoQhUAVcwvdQJOlDrNm0dIWOW5ec1uCSD/UKTj1fMipT4zv/3xz5wfH/w==",
51+
"requested": "[0.1.1, )",
52+
"resolved": "0.1.1",
53+
"contentHash": "v5VrUSlYPzZf7tVyeFwD30QjspPfW6XBp7AQw5MmFC0PNF5CEn47UDb3sy7869ByN+rpwC2iDIr0yq+xqVNEOw==",
4554
"dependencies": {
4655
"AWSSDK.SecurityToken": "3.7.1.165",
4756
"Ardalis.GuardClauses": "4.0.1",
4857
"Microsoft.Extensions.Configuration": "6.0.1",
4958
"Microsoft.Extensions.Logging": "6.0.0",
50-
"Monai.Deploy.Storage.S3Policy": "0.1.0-rc0060",
59+
"Monai.Deploy.Storage.S3Policy": "0.1.1",
5160
"System.IO.Abstractions": "17.0.18"
5261
}
5362
},
5463
"Monai.Deploy.Storage.MinIO": {
5564
"type": "Direct",
56-
"requested": "[0.1.0-rc0060, )",
57-
"resolved": "0.1.0-rc0060",
58-
"contentHash": "IamR9bqCROhCyrVm2w+i1ISTQjahP2nje7A5r3sLEuBvZxlNjaPZGeKcK1XnuK8vuZSV7A1y42dI4YcIrnAY6w==",
65+
"requested": "[0.1.0, )",
66+
"resolved": "0.1.0",
67+
"contentHash": "IEqw1ugxsNRDAUkNRoq41fcKmw3C2uYTLzcWdPhnmFe6iRqTQj3nex8nTivp7kcOtKBjdn1UAYdIldTRnHqcpg==",
5968
"dependencies": {
6069
"AWSSDK.SecurityToken": "3.7.1.165",
6170
"Ardalis.GuardClauses": "4.0.1",
6271
"Microsoft.Extensions.Logging": "6.0.0",
6372
"Microsoft.Extensions.Options": "6.0.0",
6473
"Minio": "4.0.4",
65-
"Monai.Deploy.Storage": "0.1.0-rc0060",
66-
"Monai.Deploy.Storage.S3Policy": "0.1.0-rc0060"
74+
"Monai.Deploy.Storage": "0.1.0",
75+
"Monai.Deploy.Storage.S3Policy": "0.1.0"
6776
}
6877
},
6978
"Newtonsoft.Json": {
@@ -190,8 +199,8 @@
190199
},
191200
"Monai.Deploy.Storage.S3Policy": {
192201
"type": "Transitive",
193-
"resolved": "0.1.0-rc0060",
194-
"contentHash": "5i/7wlkm4oWMEtJxiR0lAql8E+5RL1pK6vULpTu3l+tmqSwCrRaLfbJ7Y3j1YEJDxbMXAHwpCcCMC3D1nM54Sw==",
202+
"resolved": "0.1.1",
203+
"contentHash": "viswzSf0taoDw2FWoAw8iTC/AX0cay1wViCziziySB5qOZ4VXiGorOAX+z23+itT56ZiZc1xeyDOvJWJBrZltQ==",
195204
"dependencies": {
196205
"Ardalis.GuardClauses": "4.0.1",
197206
"Newtonsoft.Json": "13.0.1"

src/Contracts/Monai.Deploy.WorkflowManager.Contracts.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ SPDX-License-Identifier: Apache License 2.0
1818
<ItemGroup>
1919
<PackageReference Include="AWSSDK.SecurityToken" Version="3.7.1.167" />
2020
<PackageReference Include="MongoDB.Bson" Version="2.15.0" />
21+
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.2" />
2122
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.3-rc0006" />
2223
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
2324
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />

src/Database/Monai.Deploy.WorkflowManager.Database.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<PackageReference Include="Ardalis.GuardClauses" Version="4.0.1" />
2121
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" />
2222
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
23+
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.2" />
2324
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.3-rc0006" />
2425
<PackageReference Include="MongoDB.Bson" Version="2.15.0" />
2526
<PackageReference Include="MongoDB.Driver" Version="2.15.0" />

src/Database/packages.lock.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,15 @@
4242
"System.IO.Abstractions": "17.0.18"
4343
}
4444
},
45+
"Monai.Deploy.Messaging.RabbitMQ": {
46+
"type": "Direct",
47+
"requested": "[0.1.2, )",
48+
"resolved": "0.1.2",
49+
"contentHash": "pACJuXAqp/OQkLVdUflrxClc+cqKeFGOsOSccikUXQfXdbu4iWZolrFkhN5aGY6g2M8ypGk3iTrwFFonbZkkTQ==",
50+
"dependencies": {
51+
"Monai.Deploy.Messaging": "0.1.2"
52+
}
53+
},
4554
"MongoDB.Bson": {
4655
"type": "Direct",
4756
"requested": "[2.15.0, )",
@@ -247,6 +256,7 @@
247256
"AWSSDK.SecurityToken": "3.7.1.167",
248257
"Microsoft.Extensions.Configuration": "6.0.1",
249258
"Monai.Deploy.Messaging": "0.1.3-rc0006",
259+
"Monai.Deploy.Messaging.RabbitMQ": "0.1.2",
250260
"MongoDB.Bson": "2.15.0",
251261
"Newtonsoft.Json": "13.0.1"
252262
}

src/Monai.Deploy.WorkflowManager.Storage/Monai.Deploy.WorkflowManager.Storage.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ SPDX-License-Identifier: Apache License 2.0
1818

1919
<ItemGroup>
2020
<PackageReference Include="Ardalis.GuardClauses" Version="4.0.1" />
21-
<PackageReference Include="Monai.Deploy.Storage" Version="0.1.0-rc0060" />
22-
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.1.0-rc0060" />
21+
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.1.0" />
2322
</ItemGroup>
2423

2524
<ItemGroup>

src/Monai.Deploy.WorkflowManager.Storage/packages.lock.json

Lines changed: 29 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,19 @@
1111
"JetBrains.Annotations": "2021.3.0"
1212
}
1313
},
14-
"Monai.Deploy.Storage": {
15-
"type": "Direct",
16-
"requested": "[0.1.0-rc0060, )",
17-
"resolved": "0.1.0-rc0060",
18-
"contentHash": "OMWXg/DbTxjBtQxJhVq16+8SDb4URRoQhUAVcwvdQJOlDrNm0dIWOW5ec1uCSD/UKTj1fMipT4zv/3xz5wfH/w==",
19-
"dependencies": {
20-
"AWSSDK.SecurityToken": "3.7.1.165",
21-
"Ardalis.GuardClauses": "4.0.1",
22-
"Microsoft.Extensions.Configuration": "6.0.1",
23-
"Microsoft.Extensions.Logging": "6.0.0",
24-
"Monai.Deploy.Storage.S3Policy": "0.1.0-rc0060",
25-
"System.IO.Abstractions": "17.0.18"
26-
}
27-
},
2814
"Monai.Deploy.Storage.MinIO": {
2915
"type": "Direct",
30-
"requested": "[0.1.0-rc0060, )",
31-
"resolved": "0.1.0-rc0060",
32-
"contentHash": "IamR9bqCROhCyrVm2w+i1ISTQjahP2nje7A5r3sLEuBvZxlNjaPZGeKcK1XnuK8vuZSV7A1y42dI4YcIrnAY6w==",
16+
"requested": "[0.1.0, )",
17+
"resolved": "0.1.0",
18+
"contentHash": "IEqw1ugxsNRDAUkNRoq41fcKmw3C2uYTLzcWdPhnmFe6iRqTQj3nex8nTivp7kcOtKBjdn1UAYdIldTRnHqcpg==",
3319
"dependencies": {
3420
"AWSSDK.SecurityToken": "3.7.1.165",
3521
"Ardalis.GuardClauses": "4.0.1",
3622
"Microsoft.Extensions.Logging": "6.0.0",
3723
"Microsoft.Extensions.Options": "6.0.0",
3824
"Minio": "4.0.4",
39-
"Monai.Deploy.Storage": "0.1.0-rc0060",
40-
"Monai.Deploy.Storage.S3Policy": "0.1.0-rc0060"
25+
"Monai.Deploy.Storage": "0.1.0",
26+
"Monai.Deploy.Storage.S3Policy": "0.1.0"
4127
}
4228
},
4329
"AWSSDK.Core": {
@@ -174,10 +160,31 @@
174160
"System.IO.Abstractions": "17.0.18"
175161
}
176162
},
163+
"Monai.Deploy.Messaging.RabbitMQ": {
164+
"type": "Transitive",
165+
"resolved": "0.1.2",
166+
"contentHash": "pACJuXAqp/OQkLVdUflrxClc+cqKeFGOsOSccikUXQfXdbu4iWZolrFkhN5aGY6g2M8ypGk3iTrwFFonbZkkTQ==",
167+
"dependencies": {
168+
"Monai.Deploy.Messaging": "0.1.2"
169+
}
170+
},
171+
"Monai.Deploy.Storage": {
172+
"type": "Transitive",
173+
"resolved": "0.1.0",
174+
"contentHash": "BA9MH3EoFuyOGym/Wy28sFlOW5PGtHSmo83xXwHeXJE1V0lcmTn30ZiSjzDK77hvHUb04TJRL3pvcXMKpdwK2Q==",
175+
"dependencies": {
176+
"AWSSDK.SecurityToken": "3.7.1.165",
177+
"Ardalis.GuardClauses": "4.0.1",
178+
"Microsoft.Extensions.Configuration": "6.0.1",
179+
"Microsoft.Extensions.Logging": "6.0.0",
180+
"Monai.Deploy.Storage.S3Policy": "0.1.0",
181+
"System.IO.Abstractions": "17.0.18"
182+
}
183+
},
177184
"Monai.Deploy.Storage.S3Policy": {
178185
"type": "Transitive",
179-
"resolved": "0.1.0-rc0060",
180-
"contentHash": "5i/7wlkm4oWMEtJxiR0lAql8E+5RL1pK6vULpTu3l+tmqSwCrRaLfbJ7Y3j1YEJDxbMXAHwpCcCMC3D1nM54Sw==",
186+
"resolved": "0.1.0",
187+
"contentHash": "yITzMBKwppORGoP3BL9f0lVjWodHRqSwuo9Y8huyvhVBto6fF6j42j8bBNg1tgnsz/SI7hjn1TpQIImn709nTA==",
181188
"dependencies": {
182189
"Ardalis.GuardClauses": "4.0.1",
183190
"Newtonsoft.Json": "13.0.1"
@@ -806,6 +813,7 @@
806813
"AWSSDK.SecurityToken": "3.7.1.167",
807814
"Microsoft.Extensions.Configuration": "6.0.1",
808815
"Monai.Deploy.Messaging": "0.1.3-rc0006",
816+
"Monai.Deploy.Messaging.RabbitMQ": "0.1.2",
809817
"MongoDB.Bson": "2.15.0",
810818
"Newtonsoft.Json": "13.0.1"
811819
}

src/Monai.Deploy.WorkflowManager.sln

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,13 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManage
5959
EndProject
6060
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.Storage.Tests", "..\tests\UnitTests\Storage.Tests\Monai.Deploy.WorkflowManager.Storage.Tests.csproj", "{722C0D57-49F8-4178-88F0-06E369B797A3}"
6161
EndProject
62-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monai.Deploy.WorkflowManager.TaskManager.TestPlugin", "TaskManager\Plug-ins\TestPlugin\Monai.Deploy.WorkflowManager.TaskManager.TestPlugin.csproj", "{7D85E95C-A263-429F-BF8B-8F4A922FD579}"
62+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.TaskManager.AideClinicalReview", "TaskManager\Plug-ins\AideClinicalReview\Monai.Deploy.WorkflowManager.TaskManager.AideClinicalReview.csproj", "{013395D4-2091-4AB8-96CB-867C0F982096}"
6363
EndProject
64-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monai.Deploy.WorkflowManager.WorkflowExecutor.IntegrationTests", "..\tests\IntegrationTests\Monai.Deploy.WorkflowManager.WorkflowExecutor.IntegrationTests\Monai.Deploy.WorkflowManager.WorkflowExecutor.IntegrationTests.csproj", "{0325A986-7E8B-4688-B4FA-0680F220BE90}"
64+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TaskManager.AideClinicalReview.Tests", "..\tests\UnitTests\TaskManager.AideClinicalReview.Tests\TaskManager.AideClinicalReview.Tests.csproj", "{57D00445-0798-4D86-97D4-1586E1B020BC}"
65+
EndProject
66+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.WorkflowExecutor.IntegrationTests", "..\tests\IntegrationTests\WorkflowExecutor.IntegrationTests\Monai.Deploy.WorkflowManager.WorkflowExecutor.IntegrationTests.csproj", "{91A0D599-472F-4238-A1A3-07807F9C5F61}"
67+
EndProject
68+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.TaskManager.TestPlugin", "TaskManager\Plug-ins\TestPlugin\Monai.Deploy.WorkflowManager.TaskManager.TestPlugin.csproj", "{7D85E95C-A263-429F-BF8B-8F4A922FD579}"
6569
EndProject
6670
Global
6771
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -173,14 +177,22 @@ Global
173177
{722C0D57-49F8-4178-88F0-06E369B797A3}.Debug|Any CPU.Build.0 = Debug|Any CPU
174178
{722C0D57-49F8-4178-88F0-06E369B797A3}.Release|Any CPU.ActiveCfg = Release|Any CPU
175179
{722C0D57-49F8-4178-88F0-06E369B797A3}.Release|Any CPU.Build.0 = Release|Any CPU
180+
{013395D4-2091-4AB8-96CB-867C0F982096}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
181+
{013395D4-2091-4AB8-96CB-867C0F982096}.Debug|Any CPU.Build.0 = Debug|Any CPU
182+
{013395D4-2091-4AB8-96CB-867C0F982096}.Release|Any CPU.ActiveCfg = Release|Any CPU
183+
{013395D4-2091-4AB8-96CB-867C0F982096}.Release|Any CPU.Build.0 = Release|Any CPU
184+
{57D00445-0798-4D86-97D4-1586E1B020BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
185+
{57D00445-0798-4D86-97D4-1586E1B020BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
186+
{57D00445-0798-4D86-97D4-1586E1B020BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
187+
{57D00445-0798-4D86-97D4-1586E1B020BC}.Release|Any CPU.Build.0 = Release|Any CPU
188+
{91A0D599-472F-4238-A1A3-07807F9C5F61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
189+
{91A0D599-472F-4238-A1A3-07807F9C5F61}.Debug|Any CPU.Build.0 = Debug|Any CPU
190+
{91A0D599-472F-4238-A1A3-07807F9C5F61}.Release|Any CPU.ActiveCfg = Release|Any CPU
191+
{91A0D599-472F-4238-A1A3-07807F9C5F61}.Release|Any CPU.Build.0 = Release|Any CPU
176192
{7D85E95C-A263-429F-BF8B-8F4A922FD579}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
177193
{7D85E95C-A263-429F-BF8B-8F4A922FD579}.Debug|Any CPU.Build.0 = Debug|Any CPU
178194
{7D85E95C-A263-429F-BF8B-8F4A922FD579}.Release|Any CPU.ActiveCfg = Release|Any CPU
179195
{7D85E95C-A263-429F-BF8B-8F4A922FD579}.Release|Any CPU.Build.0 = Release|Any CPU
180-
{0325A986-7E8B-4688-B4FA-0680F220BE90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
181-
{0325A986-7E8B-4688-B4FA-0680F220BE90}.Debug|Any CPU.Build.0 = Debug|Any CPU
182-
{0325A986-7E8B-4688-B4FA-0680F220BE90}.Release|Any CPU.ActiveCfg = Release|Any CPU
183-
{0325A986-7E8B-4688-B4FA-0680F220BE90}.Release|Any CPU.Build.0 = Release|Any CPU
184196
EndGlobalSection
185197
GlobalSection(SolutionProperties) = preSolution
186198
HideSolutionNode = FALSE
@@ -201,8 +213,10 @@ Global
201213
{918E4DE3-A7BF-4B7F-9B5A-5C36FEFA3C30} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
202214
{A44F975E-70CA-49D6-8513-78F2D5210EAF} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
203215
{722C0D57-49F8-4178-88F0-06E369B797A3} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
216+
{013395D4-2091-4AB8-96CB-867C0F982096} = {78B0EB6E-2636-48A7-8FDB-4334C3F3FFF1}
217+
{57D00445-0798-4D86-97D4-1586E1B020BC} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
218+
{91A0D599-472F-4238-A1A3-07807F9C5F61} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
204219
{7D85E95C-A263-429F-BF8B-8F4A922FD579} = {78B0EB6E-2636-48A7-8FDB-4334C3F3FFF1}
205-
{0325A986-7E8B-4688-B4FA-0680F220BE90} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
206220
EndGlobalSection
207221
GlobalSection(ExtensibilityGlobals) = postSolution
208222
SolutionGuid = {DC0D56C8-D8CB-45CE-B528-F3DCF86D63ED}

src/PayloadListener/Monai.Deploy.WorkflowManager.PayloadListener.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ SPDX-License-Identifier: Apache License 2.0
1818
<ItemGroup>
1919
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
2020
<PackageReference Include="Ardalis.GuardClauses" Version="4.0.1" />
21-
<PackageReference Include="Monai.Deploy.Storage" Version="0.1.0-rc0060" />
22-
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.1.0-rc0060" />
21+
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.1.0" />
22+
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.2" />
23+
<PackageReference Include="Monai.Deploy.Storage" Version="0.1.1" />
2324
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.3-rc0006" />
2425
</ItemGroup>
2526

src/PayloadListener/packages.lock.json

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -37,33 +37,42 @@
3737
"System.IO.Abstractions": "17.0.18"
3838
}
3939
},
40+
"Monai.Deploy.Messaging.RabbitMQ": {
41+
"type": "Direct",
42+
"requested": "[0.1.2, )",
43+
"resolved": "0.1.2",
44+
"contentHash": "pACJuXAqp/OQkLVdUflrxClc+cqKeFGOsOSccikUXQfXdbu4iWZolrFkhN5aGY6g2M8ypGk3iTrwFFonbZkkTQ==",
45+
"dependencies": {
46+
"Monai.Deploy.Messaging": "0.1.2"
47+
}
48+
},
4049
"Monai.Deploy.Storage": {
4150
"type": "Direct",
42-
"requested": "[0.1.0-rc0060, )",
43-
"resolved": "0.1.0-rc0060",
44-
"contentHash": "OMWXg/DbTxjBtQxJhVq16+8SDb4URRoQhUAVcwvdQJOlDrNm0dIWOW5ec1uCSD/UKTj1fMipT4zv/3xz5wfH/w==",
51+
"requested": "[0.1.1, )",
52+
"resolved": "0.1.1",
53+
"contentHash": "v5VrUSlYPzZf7tVyeFwD30QjspPfW6XBp7AQw5MmFC0PNF5CEn47UDb3sy7869ByN+rpwC2iDIr0yq+xqVNEOw==",
4554
"dependencies": {
4655
"AWSSDK.SecurityToken": "3.7.1.165",
4756
"Ardalis.GuardClauses": "4.0.1",
4857
"Microsoft.Extensions.Configuration": "6.0.1",
4958
"Microsoft.Extensions.Logging": "6.0.0",
50-
"Monai.Deploy.Storage.S3Policy": "0.1.0-rc0060",
59+
"Monai.Deploy.Storage.S3Policy": "0.1.1",
5160
"System.IO.Abstractions": "17.0.18"
5261
}
5362
},
5463
"Monai.Deploy.Storage.MinIO": {
5564
"type": "Direct",
56-
"requested": "[0.1.0-rc0060, )",
57-
"resolved": "0.1.0-rc0060",
58-
"contentHash": "IamR9bqCROhCyrVm2w+i1ISTQjahP2nje7A5r3sLEuBvZxlNjaPZGeKcK1XnuK8vuZSV7A1y42dI4YcIrnAY6w==",
65+
"requested": "[0.1.0, )",
66+
"resolved": "0.1.0",
67+
"contentHash": "IEqw1ugxsNRDAUkNRoq41fcKmw3C2uYTLzcWdPhnmFe6iRqTQj3nex8nTivp7kcOtKBjdn1UAYdIldTRnHqcpg==",
5968
"dependencies": {
6069
"AWSSDK.SecurityToken": "3.7.1.165",
6170
"Ardalis.GuardClauses": "4.0.1",
6271
"Microsoft.Extensions.Logging": "6.0.0",
6372
"Microsoft.Extensions.Options": "6.0.0",
6473
"Minio": "4.0.4",
65-
"Monai.Deploy.Storage": "0.1.0-rc0060",
66-
"Monai.Deploy.Storage.S3Policy": "0.1.0-rc0060"
74+
"Monai.Deploy.Storage": "0.1.0",
75+
"Monai.Deploy.Storage.S3Policy": "0.1.0"
6776
}
6877
},
6978
"AWSSDK.Core": {
@@ -213,8 +222,8 @@
213222
},
214223
"Monai.Deploy.Storage.S3Policy": {
215224
"type": "Transitive",
216-
"resolved": "0.1.0-rc0060",
217-
"contentHash": "5i/7wlkm4oWMEtJxiR0lAql8E+5RL1pK6vULpTu3l+tmqSwCrRaLfbJ7Y3j1YEJDxbMXAHwpCcCMC3D1nM54Sw==",
225+
"resolved": "0.1.1",
226+
"contentHash": "viswzSf0taoDw2FWoAw8iTC/AX0cay1wViCziziySB5qOZ4VXiGorOAX+z23+itT56ZiZc1xeyDOvJWJBrZltQ==",
218227
"dependencies": {
219228
"Ardalis.GuardClauses": "4.0.1",
220229
"Newtonsoft.Json": "13.0.1"
@@ -910,8 +919,9 @@
910919
"Microsoft.Extensions.Configuration": "6.0.1",
911920
"Microsoft.Extensions.Options": "6.0.0",
912921
"Monai.Deploy.Messaging": "0.1.3-rc0006",
913-
"Monai.Deploy.Storage": "0.1.0-rc0060",
914-
"Monai.Deploy.Storage.MinIO": "0.1.0-rc0060",
922+
"Monai.Deploy.Messaging.RabbitMQ": "0.1.2",
923+
"Monai.Deploy.Storage": "0.1.1",
924+
"Monai.Deploy.Storage.MinIO": "0.1.0",
915925
"Newtonsoft.Json": "13.0.1",
916926
"System.IO.Abstractions": "17.0.18"
917927
}
@@ -922,6 +932,7 @@
922932
"AWSSDK.SecurityToken": "3.7.1.167",
923933
"Microsoft.Extensions.Configuration": "6.0.1",
924934
"Monai.Deploy.Messaging": "0.1.3-rc0006",
935+
"Monai.Deploy.Messaging.RabbitMQ": "0.1.2",
925936
"MongoDB.Bson": "2.15.0",
926937
"Newtonsoft.Json": "13.0.1"
927938
}
@@ -933,6 +944,7 @@
933944
"Microsoft.Extensions.Logging.Abstractions": "6.0.1",
934945
"Microsoft.Extensions.Options": "6.0.0",
935946
"Monai.Deploy.Messaging": "0.1.3-rc0006",
947+
"Monai.Deploy.Messaging.RabbitMQ": "0.1.2",
936948
"Monai.Deploy.WorkflowManager.Contracts": "1.0.0",
937949
"Monai.Deploy.WorkflowManager.Logging": "1.0.0",
938950
"MongoDB.Bson": "2.15.0",
@@ -950,8 +962,7 @@
950962
"type": "Project",
951963
"dependencies": {
952964
"Ardalis.GuardClauses": "4.0.1",
953-
"Monai.Deploy.Storage": "0.1.0-rc0060",
954-
"Monai.Deploy.Storage.MinIO": "0.1.0-rc0060",
965+
"Monai.Deploy.Storage.MinIO": "0.1.0",
955966
"Monai.Deploy.WorkflowManager.Contracts": "1.0.0",
956967
"Monai.Deploy.WorkflowManager.Logging": "1.0.0"
957968
}
@@ -962,8 +973,9 @@
962973
"AWSSDK.SecurityToken": "3.7.1.167",
963974
"Ardalis.GuardClauses": "4.0.1",
964975
"Monai.Deploy.Messaging": "0.1.3-rc0006",
965-
"Monai.Deploy.Storage": "0.1.0-rc0060",
966-
"Monai.Deploy.Storage.MinIO": "0.1.0-rc0060",
976+
"Monai.Deploy.Messaging.RabbitMQ": "0.1.2",
977+
"Monai.Deploy.Storage": "0.1.1",
978+
"Monai.Deploy.Storage.MinIO": "0.1.0",
967979
"Monai.Deploy.WorkflowManager.Common": "1.0.0",
968980
"Monai.Deploy.WorkflowManager.ConditionsResolver": "1.0.0",
969981
"Monai.Deploy.WorkflowManager.Configuration": "1.0.0",

0 commit comments

Comments
 (0)