Skip to content

Commit 9024e32

Browse files
committed
Merge remote-tracking branch 'origin/main' into develop
Signed-off-by: Victor Chang <[email protected]>
2 parents 42f06c6 + d0362b7 commit 9024e32

28 files changed

+840
-797
lines changed

.github/.gitversion.yml

+1
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ branches:
2929
ignore:
3030
sha: []
3131
merge-message-formats: {}
32+
next-version: 0.3.3

docs/compliance/third-party-licenses.md

+812-773
Large diffs are not rendered by default.

src/Api/Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1296,4 +1296,4 @@
12961296
}
12971297
}
12981298
}
1299-
}
1299+
}

src/Api/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,4 +297,4 @@
297297
}
298298
}
299299
}
300-
}
300+
}

src/CLI/Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1615,4 +1615,4 @@
16151615
}
16161616
}
16171617
}
1618-
}
1618+
}

src/CLI/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1465,4 +1465,4 @@
14651465
}
14661466
}
14671467
}
1468-
}
1468+
}

src/Client/Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1805,4 +1805,4 @@
18051805
}
18061806
}
18071807
}
1808-
}
1808+
}

src/Client/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1217,4 +1217,4 @@
12171217
}
12181218
}
12191219
}
1220-
}
1220+
}

src/Common/Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1190,4 +1190,4 @@
11901190
}
11911191
}
11921192
}
1193-
}
1193+
}

src/Common/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@
143143
}
144144
}
145145
}
146-
}
146+
}

src/Configuration/Monai.Deploy.InformaticsGateway.Configuration.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!--
1+
<!--
22
~ Copyright 2021-2022 MONAI Consortium
33
~
44
~ Licensed under the Apache License, Version 2.0 (the "License");

src/Configuration/Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1321,4 +1321,4 @@
13211321
}
13221322
}
13231323
}
1324-
}
1324+
}

src/Configuration/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,4 +308,4 @@
308308
}
309309
}
310310
}
311-
}
311+
}

src/Database/Api/Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1350,4 +1350,4 @@
13501350
}
13511351
}
13521352
}
1353-
}
1353+
}

src/Database/Api/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,4 +363,4 @@
363363
}
364364
}
365365
}
366-
}
366+
}

src/Database/EntityFramework/Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1524,4 +1524,4 @@
15241524
}
15251525
}
15261526
}
1527-
}
1527+
}

src/Database/EntityFramework/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -520,4 +520,4 @@
520520
}
521521
}
522522
}
523-
}
523+
}

src/Database/MongoDB/Integration.Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1487,4 +1487,4 @@
14871487
}
14881488
}
14891489
}
1490-
}
1490+
}

src/Database/MongoDB/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -457,4 +457,4 @@
457457
}
458458
}
459459
}
460-
}
460+
}

src/Database/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -637,4 +637,4 @@
637637
}
638638
}
639639
}
640-
}
640+
}

src/DicomWebClient/CLI/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1492,4 +1492,4 @@
14921492
}
14931493
}
14941494
}
1495-
}
1495+
}

src/DicomWebClient/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1260,4 +1260,4 @@
12601260
}
12611261
}
12621262
}
1263-
}
1263+
}

src/InformaticsGateway/Program.cs

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
using Monai.Deploy.InformaticsGateway.Common;
3030
using Monai.Deploy.InformaticsGateway.Configuration;
3131
using Monai.Deploy.InformaticsGateway.Database;
32+
using Monai.Deploy.InformaticsGateway.Database.Api.Repositories;
33+
using Monai.Deploy.InformaticsGateway.Database.EntityFramework.Repositories;
3234
using Monai.Deploy.InformaticsGateway.Repositories;
3335
using Monai.Deploy.InformaticsGateway.Services.Common;
3436
using Monai.Deploy.InformaticsGateway.Services.Connectors;

src/InformaticsGateway/Services/Storage/ObjectUploadQueue.cs

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
using System;
1818
using System.Collections.Concurrent;
19+
using System.Collections.Generic;
1920
using System.Diagnostics;
2021
using System.Threading;
2122
using System.Threading.Tasks;

src/InformaticsGateway/Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2025,4 +2025,4 @@
20252025
}
20262026
}
20272027
}
2028-
}
2028+
}

src/InformaticsGateway/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1663,4 +1663,4 @@
16631663
}
16641664
}
16651665
}
1666-
}
1666+
}

tests/Integration.Test/appsettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@
8383
"InformaticsGatewayServerEndpoint": "http://127.0.0.1:5000",
8484
"DockerImagePrefix": "ghcr.io/project-monai/monai-deploy-informatics-gateway"
8585
}
86-
}
86+
}

tests/Integration.Test/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1928,4 +1928,4 @@
19281928
}
19291929
}
19301930
}
1931-
}
1931+
}

0 commit comments

Comments
 (0)