Skip to content

Commit 9d2b981

Browse files
committed
Merge branch 'main' into develop
Signed-off-by: Victor Chang <[email protected]>
2 parents bb05540 + dd2c648 commit 9d2b981

Some content is hidden

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

44 files changed

+46
-52
lines changed

.github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,21 @@ jobs:
603603
separator: "/"
604604
msg: ${{ github.repository }}
605605

606+
- name: Unzip docs
607+
if: ${{ contains(github.ref, 'refs/heads/main') }}
608+
run: |
609+
mkdir userguide
610+
unzip artifacts/mig-docs-${{ env.SEMVER }}.zip -d userguide/
611+
ls -lR userguide/
612+
613+
- name: Deploy Docs
614+
uses: peaceiris/actions-gh-pages@v3
615+
if: ${{ contains(github.ref, 'refs/heads/main') }}
616+
with:
617+
github_token: ${{ secrets.GITHUB_TOKEN }}
618+
publish_dir: userguide/
619+
publish_branch: docs
620+
606621
- name: Install GitReleaseManager
607622
uses: gittools/actions/gitreleasemanager/[email protected]
608623
with:

src/Api/Mllp/IMllpClient.cs

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ public interface IMllpClient : IDisposable
2828

2929
Task Start(Func<IMllpClient, MllpClientResult, Task> onDisconnect, CancellationToken cancellationToken);
3030
}
31-
}
31+
}

src/Api/Storage/FileStorageMetadata.cs

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,4 @@ public static string IpAddress()
162162
return "127.0.0.1";
163163
}
164164
}
165-
}
165+
}

src/Api/packages.lock.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -257,11 +257,8 @@
257257
},
258258
"System.Diagnostics.DiagnosticSource": {
259259
"type": "Transitive",
260-
"resolved": "6.0.0",
261-
"contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
262-
"dependencies": {
263-
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
264-
}
260+
"resolved": "8.0.0",
261+
"contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ=="
265262
},
266263
"System.IO.Abstractions": {
267264
"type": "Transitive",

src/Client/packages.lock.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -244,11 +244,8 @@
244244
},
245245
"System.Diagnostics.DiagnosticSource": {
246246
"type": "Transitive",
247-
"resolved": "6.0.0",
248-
"contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
249-
"dependencies": {
250-
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
251-
}
247+
"resolved": "8.0.0",
248+
"contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ=="
252249
},
253250
"System.IO.Abstractions": {
254251
"type": "Transitive",

src/Configuration/Test/packages.lock.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -325,11 +325,8 @@
325325
},
326326
"System.Diagnostics.DiagnosticSource": {
327327
"type": "Transitive",
328-
"resolved": "6.0.0",
329-
"contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
330-
"dependencies": {
331-
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
332-
}
328+
"resolved": "8.0.0",
329+
"contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ=="
333330
},
334331
"System.Diagnostics.EventLog": {
335332
"type": "Transitive",

src/Configuration/packages.lock.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,8 @@
250250
},
251251
"System.Diagnostics.DiagnosticSource": {
252252
"type": "Transitive",
253-
"resolved": "6.0.0",
254-
"contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
255-
"dependencies": {
256-
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
257-
}
253+
"resolved": "8.0.0",
254+
"contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ=="
258255
},
259256
"System.IO.Abstractions": {
260257
"type": "Transitive",

src/Database/Api/DatabaseRegistrationBase.cs

100755100644
File mode changed.

src/Database/Api/StorageMetadataWrapper.cs

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ public override string ToString()
9090
return $"Identity: {Identity}";
9191
}
9292
}
93-
}
93+
}

src/Database/Api/packages.lock.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,8 @@
250250
},
251251
"System.Diagnostics.DiagnosticSource": {
252252
"type": "Transitive",
253-
"resolved": "6.0.0",
254-
"contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
255-
"dependencies": {
256-
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
257-
}
253+
"resolved": "8.0.0",
254+
"contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ=="
258255
},
259256
"System.IO.Abstractions": {
260257
"type": "Transitive",

src/Database/DatabaseManager.cs

100755100644
File mode changed.

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

+2-5
Original file line numberDiff line numberDiff line change
@@ -411,11 +411,8 @@
411411
},
412412
"System.Diagnostics.DiagnosticSource": {
413413
"type": "Transitive",
414-
"resolved": "6.0.0",
415-
"contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
416-
"dependencies": {
417-
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
418-
}
414+
"resolved": "8.0.0",
415+
"contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ=="
419416
},
420417
"System.Diagnostics.EventLog": {
421418
"type": "Transitive",

src/Database/MongoDB/Repositories/StorageMetadataWrapperRepository.cs

100755100644
File mode changed.

src/Database/MongoDB/packages.lock.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -324,11 +324,8 @@
324324
},
325325
"System.Diagnostics.DiagnosticSource": {
326326
"type": "Transitive",
327-
"resolved": "6.0.0",
328-
"contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
329-
"dependencies": {
330-
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
331-
}
327+
"resolved": "8.0.0",
328+
"contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ=="
332329
},
333330
"System.IO.Abstractions": {
334331
"type": "Transitive",

src/InformaticsGateway/Logging/Log.8000.HttpServices.cs

100755100644
File mode changed.

src/InformaticsGateway/Program.cs

100755100644
-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
using Monai.Deploy.InformaticsGateway.Services.DicomWeb;
3737
using Monai.Deploy.InformaticsGateway.Services.Export;
3838
using Monai.Deploy.InformaticsGateway.Services.Fhir;
39-
using Monai.Deploy.InformaticsGateway.Services.HealthLevel7;
4039
using Monai.Deploy.InformaticsGateway.Services.Http;
4140
using Monai.Deploy.InformaticsGateway.Services.Scp;
4241
using Monai.Deploy.InformaticsGateway.Services.Scu;

src/InformaticsGateway/Repositories/MonaiServiceLocator.cs

100755100644
File mode changed.

src/InformaticsGateway/Services/Common/IInputDataPluginEngineFactory.cs

100755100644
File mode changed.

src/InformaticsGateway/Services/Common/InputDataPluginEngine.cs

100755100644
File mode changed.

src/InformaticsGateway/Services/Common/OutputDataPluginEngine.cs

100755100644
File mode changed.

src/InformaticsGateway/Services/Connectors/DataRetrievalService.cs

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -588,4 +588,4 @@ public void Dispose()
588588

589589
#endregion Data Retrieval
590590
}
591-
}
591+
}

src/InformaticsGateway/Services/Connectors/PayloadAssembler.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,4 @@ public void Dispose()
249249
Status = ServiceStatus.Stopped;
250250
}
251251
}
252-
}
252+
}

src/InformaticsGateway/Services/Connectors/PayloadNotificationActionHandler.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,4 +241,4 @@ public void Dispose()
241241
GC.SuppressFinalize(this);
242242
}
243243
}
244-
}
244+
}

src/InformaticsGateway/Services/Connectors/PayloadNotificationService.cs

100755100644
File mode changed.

src/InformaticsGateway/Services/Export/ExportServiceBase.cs

100755100644
File mode changed.

src/InformaticsGateway/Services/Fhir/FhirJsonReader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ private static string SetIdIfMIssing(string correlationId, JsonNode jsonDoc)
9595
return jsonDoc[Resources.PropertyId]?.GetValue<string>() ?? string.Empty;
9696
}
9797
}
98-
}
98+
}

src/InformaticsGateway/Services/Fhir/FhirXmlReader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ private static string SetIdIfMIssing(string correlationId, XmlNamespaceManager x
117117
return idNode.Attributes[Resources.AttributeValue]!.Value;
118118
}
119119
}
120-
}
120+
}

src/InformaticsGateway/Services/HealthLevel7/MllpClient.cs

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -265,4 +265,4 @@ public void Dispose()
265265
GC.SuppressFinalize(this);
266266
}
267267
}
268-
}
268+
}

src/InformaticsGateway/Services/HealthLevel7/MllpService.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@
2525
using Microsoft.Extensions.Options;
2626
using Monai.Deploy.InformaticsGateway.Api.Mllp;
2727
using Monai.Deploy.InformaticsGateway.Configuration;
28+
using Monai.Deploy.InformaticsGateway.Database.Api.Repositories;
2829
using Monai.Deploy.InformaticsGateway.Logging;
2930

30-
namespace Monai.Deploy.InformaticsGateway.Services.HealthLevel7
31+
namespace Monai.Deploy.InformaticsGateway.Api.Mllp
3132
{
3233
internal class MllpService : IMllpService
3334
{
@@ -122,4 +123,4 @@ private async Task EnsureAck(NetworkStream networkStream)
122123
throw new Hl7SendException("ACK message contains no ACK!");
123124
}
124125
}
125-
}
126+
}

src/InformaticsGateway/Services/Scp/ApplicationEntityHandler.cs

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -229,4 +229,4 @@ public void Dispose()
229229
GC.SuppressFinalize(this);
230230
}
231231
}
232-
}
232+
}

src/InformaticsGateway/Services/Scp/ApplicationEntityManager.cs

100755100644
File mode changed.

src/InformaticsGateway/Services/Scp/ScpService.cs

100755100644
File mode changed.

src/InformaticsGateway/Services/Storage/ObjectUploadService.cs

100755100644
File mode changed.

src/InformaticsGateway/Test/Monai.Deploy.InformaticsGateway.Test.csproj

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

src/InformaticsGateway/Test/Services/Common/OutputDataPluginEngineTest.cs

100755100644
File mode changed.

src/InformaticsGateway/Test/Services/Connectors/PayloadAssemblerTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public async Task GivenAPayloadThatHasIncompleteUploads_WhenProcessedByTimedEven
134134

135135
file1.SetFailed();
136136
file2.SetUploaded();
137-
await Task.Delay(1001);
137+
await Task.Delay(1101);
138138
payloadAssembler.Dispose();
139139

140140
_repository.Verify(p => p.UpdateAsync(It.Is<Payload>(p => p.State == Payload.PayloadState.Move), It.IsAny<CancellationToken>()), Times.Never());

src/InformaticsGateway/Test/Services/Connectors/PayloadNotificationServiceTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,4 @@ public void GivenAPayload_WhenDequedFromPayloadAssembler_ExpectThePayloadBeProce
178178
_logger.VerifyLogging($"Payload {payload.PayloadId} added to {service.ServiceName} for processing.", LogLevel.Information, Times.AtLeastOnce());
179179
}
180180
}
181-
}
181+
}

src/InformaticsGateway/Test/Services/HealthLevel7/MllpServiceTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -411,4 +411,4 @@ public async Task GivenATcpClientWithHl7Messages_ShouldntAdddBlankPlugin()
411411
_hl7DataPlugInEngine.Verify(p => p.Configure(It.IsAny<IReadOnlyList<string>>()), Times.Never());
412412
}
413413
}
414-
}
414+
}

src/Plug-ins/RemoteAppExecution/Database/DatabaseRegistrar.cs

100755100644
File mode changed.

src/Plug-ins/RemoteAppExecution/DicomDeidentifier.cs

100755100644
File mode changed.

src/Plug-ins/RemoteAppExecution/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.csproj

100755100644
File mode changed.

src/Plug-ins/RemoteAppExecution/RemoteAppExecution.cs

100755100644
File mode changed.

src/Plug-ins/RemoteAppExecution/Test/Database/DatabaseRegistrarTest.cs

100755100644
File mode changed.

src/Plug-ins/RemoteAppExecution/Test/DicomDeidentifierTest.cs

100755100644
File mode changed.

0 commit comments

Comments
 (0)