From 9e6199be64b704cf523ac9b122a1f2117b8a3714 Mon Sep 17 00:00:00 2001 From: Victor Chang Date: Wed, 12 Jun 2024 08:17:04 -0700 Subject: [PATCH] Update dependencies, license and copyrights (#313) (#314) Signed-off-by: Victor Chang Signed-off-by: Victor Chang --- .github/workflows/ci.yml | 34 +-- .licenserc.yaml | 2 +- doc/dependency_decisions.yml | 52 ++-- src/AssemblyInfo.cs | 4 +- src/Messaging/API/ConnectionErrorArgs.cs | 6 +- .../API/IMessageBrokerPublisherService.cs | 4 +- .../API/IMessageBrokerSubscriberService.cs | 4 +- src/Messaging/Common/Artifact.cs | 6 +- src/Messaging/Common/ArtifactType.cs | 4 +- src/Messaging/Common/ArtifactTypes.cs | 4 +- src/Messaging/Common/BlockStorageInfo.cs | 4 +- src/Messaging/Common/Credentials.cs | 4 +- src/Messaging/Common/ExportRequestType.cs | 6 +- src/Messaging/Common/LoggingDataDictionary.cs | 6 +- .../Common/MessageConversionException.cs | 4 +- .../Common/MessageReceivedEventArgs.cs | 4 +- .../Common/MessageValidationException.cs | 4 +- src/Messaging/Common/ServiceException.cs | 6 +- src/Messaging/Common/Storage.cs | 4 +- .../Configuration/ConfigurationException.cs | 4 +- .../MessageBrokerServiceConfiguration.cs | 4 +- .../Events/ArtifactsReceivedEvent.cs | 6 +- src/Messaging/Events/EmailRequestEvent.cs | 6 +- src/Messaging/Events/EventBase.cs | 4 +- src/Messaging/Events/ExportCompleteEvent.cs | 4 +- src/Messaging/Events/ExportRequestEvent.cs | 4 +- src/Messaging/Events/ExportStatus.cs | 4 +- .../Events/ExternalAppRequestEvent.cs | 6 +- src/Messaging/Events/FailureReason.cs | 4 +- src/Messaging/Events/TaskCallbackEvent.cs | 4 +- src/Messaging/Events/TaskCancellationEvent.cs | 6 +- src/Messaging/Events/TaskDispatchEvent.cs | 4 +- src/Messaging/Events/TaskExecutionStatus.cs | 4 +- src/Messaging/Events/TaskUpdateEvent.cs | 4 +- src/Messaging/Events/WorkflowRequestEvent.cs | 4 +- src/Messaging/HealthCheckRegistrationBase.cs | 4 +- src/Messaging/IServiceCollectionExtension.cs | 4 +- src/Messaging/InternalVisible.cs | 4 +- src/Messaging/Messages/JsonMessage.cs | 4 +- src/Messaging/Messages/Message.cs | 4 +- src/Messaging/Messages/MessageBase.cs | 4 +- src/Messaging/Monai.Deploy.Messaging.csproj | 12 +- src/Messaging/SR.cs | 4 +- src/Messaging/ServiceRegistrationBase.cs | 4 +- .../Tests/Common/ArtifactTypesTests.cs | 4 +- src/Messaging/Tests/EmailRequestEventTest.cs | 6 +- src/Messaging/Tests/EventBaseTest.cs | 4 +- .../Tests/ExportCompleteEventTest.cs | 4 +- .../IServiceCollectionExtensionsTests.cs | 4 +- src/Messaging/Tests/JsonMessageTest.cs | 4 +- .../Tests/Monai.Deploy.Messaging.Tests.csproj | 14 +- src/Messaging/Tests/TaskCallbackEventTest.cs | 4 +- .../Tests/TaskCancellationEventTests.cs | 6 +- src/Messaging/Tests/TaskDispatchEventTest.cs | 4 +- src/Messaging/Tests/TaskUpdateEventTest.cs | 4 +- .../Tests/WorkflowRequestMessageTest.cs | 4 +- src/Monai.Deploy.Messaging.sln.DotSettings | 2 +- src/Plugins/RabbitMQ/ChannelType.cs | 6 +- src/Plugins/RabbitMQ/ConfigurationKeys.cs | 4 +- .../Factory/IRabbitMQConnectionFactory.cs | 6 +- .../Factory/RabbitMqConnectionFactory.cs | 4 +- src/Plugins/RabbitMQ/InternalVisible.cs | 4 +- src/Plugins/RabbitMQ/Logger.cs | 4 +- .../Monai.Deploy.Messaging.RabbitMQ.csproj | 6 +- .../PublisherServicHealthCheckBuilder.cs | 4 +- .../Publisher/PublisherServiceRegistration.cs | 4 +- .../RabbitMqMessagePublisherService.cs | 4 +- src/Plugins/RabbitMQ/README.md | 4 +- src/Plugins/RabbitMQ/RabbitMQHealthCheck.cs | 6 +- .../RabbitMqMessageSubscriberService.cs | 4 +- .../SubscriberServicHealthCheckBuilder.cs | 4 +- .../SubscriberServiceRegistration.cs | 4 +- src/Plugins/RabbitMQ/Tests/AssemblyInfo.cs | 6 +- .../Integration/ConnectionResiliencyTest.cs | 6 +- .../Tests/Integration/HealthCheckTest.cs | 6 +- .../Tests/Integration/RabbitMqConnection.cs | 6 +- .../Tests/Integration/ReliabilityTest.cs | 6 +- ...nai.Deploy.Messaging.RabbitMQ.Tests.csproj | 18 +- .../Tests/Unit/RabbitMQHealthCheckTest.cs | 6 +- .../RabbitMqMessagePublisherServiceTest.cs | 4 +- .../RabbitMqMessageSubscriberServiceTest.cs | 4 +- .../Tests/Unit/ServiceRegistrationTest.cs | 4 +- src/Plugins/RabbitMQ/Tests/docker-compose.yml | 5 +- src/Plugins/package.sh | 4 +- third-party-licenses.md | 276 +++++++++++------- 85 files changed, 415 insertions(+), 346 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 124a580..5f0a6a5 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: fetch-depth: 0 - uses: actions/setup-dotnet@v3 @@ -52,15 +52,15 @@ jobs: tools: licensefinder - name: Enable NuGet cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} restore-keys: | ${{ runner.os }}-nuget - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + - name: Initialize CodeQ + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} @@ -80,7 +80,7 @@ jobs: working-directory: ./src - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 - name: Secret detection uses: gitleaks/gitleaks-action@v1.6.0 @@ -95,7 +95,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up JDK 17 - uses: actions/setup-java@v4 + uses: actions/setup-java@v3 with: distribution: 'zulu' java-version: '17' @@ -105,14 +105,14 @@ jobs: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} restore-keys: | ${{ runner.os }}-nuget - - uses: actions/checkout@v4 + - uses: actions/checkout@v3 with: fetch-depth: 0 @@ -189,7 +189,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -198,7 +198,7 @@ jobs: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -242,7 +242,7 @@ jobs: - name: Upload Nuget if: ${{ matrix.os == 'ubuntu-latest' }} - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.3.1 with: name: nuget path: ${{ github.workspace }}/release/*.nupkg @@ -250,7 +250,7 @@ jobs: - name: Upload Zipped Plug-ins if: ${{ matrix.os == 'ubuntu-latest' }} - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.3.1 with: name: plug-ins path: ${{ github.workspace }}/src/Plugins/release/*.zip @@ -262,7 +262,7 @@ jobs: needs: [build, unit-test] if: ${{ ! ( github.event.inputs.nuget ) && ! ( contains(github.ref, 'refs/heads/main') ) }} steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 id: download - name: List artifacts @@ -271,7 +271,7 @@ jobs: - name: Install grp run: dotnet tool install gpr -g - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} with: @@ -287,7 +287,7 @@ jobs: needs: [build, unit-test] if: ${{ github.event.inputs.nuget }} steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 id: download - name: List artifacts @@ -315,11 +315,11 @@ jobs: MAJORMINORPATCH: ${{ needs.build.outputs.majorMinorPatch }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 id: download - name: List artifacts diff --git a/.licenserc.yaml b/.licenserc.yaml index 78a6349..fa8bc04 100644 --- a/.licenserc.yaml +++ b/.licenserc.yaml @@ -2,7 +2,7 @@ header: license: spdx-id: Apache-2.0 copyright-owner: MONAI Consortium - + copyright-year: '2021-2024' paths: - 'src' diff --git a/doc/dependency_decisions.yml b/doc/dependency_decisions.yml index 538c369..4e52e54 100755 --- a/doc/dependency_decisions.yml +++ b/doc/dependency_decisions.yml @@ -4,7 +4,7 @@ - :who: mocsharp :why: MIT (https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE) :versions: - - 4.3.0 + - 4.5.0 :when: 2022-08-16 21:39:30.077666354 Z - - :approve - Castle.Core @@ -18,14 +18,14 @@ - :who: woodheadio :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) :versions: - - 8.0.0 + - 8.0.6 :when: 2023-08-16 16:49:26.950721112 Z - - :approve - Microsoft.CodeCoverage - :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) :versions: - - 17.8.0 + - 17.10.0 :when: 2023-08-16 16:49:26.950721112 Z - - :approve - Microsoft.Extensions.Configuration.Abstractions @@ -39,7 +39,7 @@ - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 8.0.0 + - 8.0.1 :when: 2022-08-16 21:39:41.552489638 Z - - :approve - Microsoft.Extensions.Diagnostics.Abstractions @@ -53,14 +53,14 @@ - :who: woodheadio :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) :versions: - - 8.0.0 + - 8.0.6 :when: 2023-08-16 16:49:26.950721112 Z - - :approve - Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - :who: woodheadio :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) :versions: - - 8.0.0 + - 8.0.6 :when: 2023-08-16 16:49:26.950721112 Z - - :approve - Microsoft.Extensions.FileProviders.Abstractions @@ -81,14 +81,14 @@ - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 8.0.0 + - 8.0.1 :when: 2022-08-16 21:39:44.471693654 Z - - :approve - Microsoft.Extensions.Options - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 8.0.0 + - 8.0.2 :when: 2022-08-16 21:39:46.980521333 Z - - :approve - Microsoft.Extensions.Primitives @@ -102,7 +102,7 @@ - :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) :versions: - - 17.8.0 + - 17.10.0 :when: 2023-08-16 16:49:26.950721112 Z - - :approve - Microsoft.NETCore.Platforms @@ -123,14 +123,14 @@ - :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) :versions: - - 17.8.0 + - 17.10.0 :when: 2023-08-16 16:49:26.950721112 Z - - :approve - Microsoft.TestPlatform.TestHost - :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) :versions: - - 17.8.0 + - 17.10.0 :when: 2023-08-16 16:49:26.950721112 Z - - :approve - Microsoft.Win32.Primitives @@ -172,14 +172,14 @@ - :who: mocsharp :why: MIT ( https://licenses.nuget.org/MIT) :versions: - - 8.2.1 + - 8.4.0 :when: 2022-11-09 18:57:32.294717110 Z - - :approve - Polly.Core - :who: mocsharp :why: MIT ( https://licenses.nuget.org/MIT) :versions: - - 8.2.1 + - 8.4.0 :when: 2022-11-09 18:57:32.294717110 Z - - :approve - RabbitMQ.Client @@ -292,14 +292,14 @@ - :who: samrooke :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) :versions: - - 20.0.4 + - 21.0.2 :when: 2022-12-14 12:28:00.728481602 Z - - :approve - System.IO.Abstractions.TestingHelpers - :who: samrooke :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) :versions: - - 20.0.4 + - 21.0.2 :when: 2022-12-14 12:28:00.728481602 Z - - :approve - System.IO.Compression @@ -614,28 +614,28 @@ - :who: mocsharp :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) :versions: - - 20.0.4 + - 21.0.2 :when: 2022-08-16 21:40:21.430356356 Z - - :approve - TestableIO.System.IO.Abstractions.TestingHelpers - :who: mocsharp :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) :versions: - - 20.0.4 + - 21.0.2 :when: 2022-08-16 21:40:21.430356356 Z - - :approve - TestableIO.System.IO.Abstractions.Wrappers - :who: mocsharp :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) :versions: - - 20.0.4 + - 21.0.2 :when: 2022-08-16 21:40:21.430356356 Z - - :approve - coverlet.collector - :who: mocsharp :why: MIT (https://github.com/coverlet-coverage/coverlet/raw/master/LICENSE) :versions: - - 6.0.0 + - 6.0.2 :when: 2022-08-16 21:40:21.855388365 Z - - :approve - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl @@ -754,7 +754,7 @@ - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.6.4 + - 2.8.1 :when: 2022-08-16 21:40:29.166018542 Z - - :approve - xunit.abstractions @@ -768,40 +768,40 @@ - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit.analyzers/master/LICENSE) :versions: - - 1.8.0 + - 1.14.0 :when: 2022-08-16 21:40:30.047067134 Z - - :approve - xunit.assert - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.6.4 + - 2.8.1 :when: 2022-08-16 21:40:30.526718458 Z - - :approve - xunit.core - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.6.4 + - 2.8.1 :when: 2022-08-16 21:40:30.973515441 Z - - :approve - xunit.extensibility.core - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.6.4 + - 2.8.1 :when: 2022-08-16 21:40:31.401607230 Z - - :approve - xunit.extensibility.execution - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.6.4 + - 2.8.1 :when: 2022-08-16 21:40:31.845685693 Z - - :approve - xunit.runner.visualstudio - :who: mocsharp :why: MIT ( https://licenses.nuget.org/MIT) :versions: - - 2.5.6 + - 2.8.1 :when: 2022-08-16 21:40:32.294717110 Z diff --git a/src/AssemblyInfo.cs b/src/AssemblyInfo.cs index ee99582..fad4c89 100644 --- a/src/AssemblyInfo.cs +++ b/src/AssemblyInfo.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/API/ConnectionErrorArgs.cs b/src/Messaging/API/ConnectionErrorArgs.cs index 69114c4..be087a3 100644 --- a/src/Messaging/API/ConnectionErrorArgs.cs +++ b/src/Messaging/API/ConnectionErrorArgs.cs @@ -1,11 +1,11 @@ -/* - * Copyright 2021-2022 MONAI Consortium +/* + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/API/IMessageBrokerPublisherService.cs b/src/Messaging/API/IMessageBrokerPublisherService.cs index 599394b..c039f93 100644 --- a/src/Messaging/API/IMessageBrokerPublisherService.cs +++ b/src/Messaging/API/IMessageBrokerPublisherService.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/API/IMessageBrokerSubscriberService.cs b/src/Messaging/API/IMessageBrokerSubscriberService.cs index 9d22f0e..7df9f0f 100755 --- a/src/Messaging/API/IMessageBrokerSubscriberService.cs +++ b/src/Messaging/API/IMessageBrokerSubscriberService.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/Artifact.cs b/src/Messaging/Common/Artifact.cs index 24a5b4f..112b792 100755 --- a/src/Messaging/Common/Artifact.cs +++ b/src/Messaging/Common/Artifact.cs @@ -1,11 +1,11 @@ -/* - * Copyright 2022-2023 MONAI Consortium +/* + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/ArtifactType.cs b/src/Messaging/Common/ArtifactType.cs index 0d3cfb5..1157666 100755 --- a/src/Messaging/Common/ArtifactType.cs +++ b/src/Messaging/Common/ArtifactType.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/ArtifactTypes.cs b/src/Messaging/Common/ArtifactTypes.cs index 51bccf5..815a3ae 100755 --- a/src/Messaging/Common/ArtifactTypes.cs +++ b/src/Messaging/Common/ArtifactTypes.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/BlockStorageInfo.cs b/src/Messaging/Common/BlockStorageInfo.cs index 67645f3..0c6d986 100644 --- a/src/Messaging/Common/BlockStorageInfo.cs +++ b/src/Messaging/Common/BlockStorageInfo.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/Credentials.cs b/src/Messaging/Common/Credentials.cs index 4a9fc16..5f04693 100644 --- a/src/Messaging/Common/Credentials.cs +++ b/src/Messaging/Common/Credentials.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/ExportRequestType.cs b/src/Messaging/Common/ExportRequestType.cs index 1cb3530..15c74c5 100755 --- a/src/Messaging/Common/ExportRequestType.cs +++ b/src/Messaging/Common/ExportRequestType.cs @@ -1,11 +1,11 @@ -/* - * Copyright 2023 MONAI Consortium +/* + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/LoggingDataDictionary.cs b/src/Messaging/Common/LoggingDataDictionary.cs index aa18d55..0827256 100644 --- a/src/Messaging/Common/LoggingDataDictionary.cs +++ b/src/Messaging/Common/LoggingDataDictionary.cs @@ -1,11 +1,11 @@ -/* - * Copyright 2022 MONAI Consortium +/* + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/MessageConversionException.cs b/src/Messaging/Common/MessageConversionException.cs index 11987f4..fcd8dc3 100644 --- a/src/Messaging/Common/MessageConversionException.cs +++ b/src/Messaging/Common/MessageConversionException.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/MessageReceivedEventArgs.cs b/src/Messaging/Common/MessageReceivedEventArgs.cs index 88e4573..3889035 100644 --- a/src/Messaging/Common/MessageReceivedEventArgs.cs +++ b/src/Messaging/Common/MessageReceivedEventArgs.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/MessageValidationException.cs b/src/Messaging/Common/MessageValidationException.cs index 54ed4cc..f014ca6 100644 --- a/src/Messaging/Common/MessageValidationException.cs +++ b/src/Messaging/Common/MessageValidationException.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/ServiceException.cs b/src/Messaging/Common/ServiceException.cs index 000396b..235d0eb 100644 --- a/src/Messaging/Common/ServiceException.cs +++ b/src/Messaging/Common/ServiceException.cs @@ -1,11 +1,11 @@ -/* - * Copyright 2023 MONAI Consortium +/* + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Common/Storage.cs b/src/Messaging/Common/Storage.cs index 3c6ea74..696c0bd 100644 --- a/src/Messaging/Common/Storage.cs +++ b/src/Messaging/Common/Storage.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Configuration/ConfigurationException.cs b/src/Messaging/Configuration/ConfigurationException.cs index 1931bfb..f00b4e8 100644 --- a/src/Messaging/Configuration/ConfigurationException.cs +++ b/src/Messaging/Configuration/ConfigurationException.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Configuration/MessageBrokerServiceConfiguration.cs b/src/Messaging/Configuration/MessageBrokerServiceConfiguration.cs index 3a839f2..7029f92 100755 --- a/src/Messaging/Configuration/MessageBrokerServiceConfiguration.cs +++ b/src/Messaging/Configuration/MessageBrokerServiceConfiguration.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/ArtifactsReceivedEvent.cs b/src/Messaging/Events/ArtifactsReceivedEvent.cs index 64bee0a..15a8d9a 100755 --- a/src/Messaging/Events/ArtifactsReceivedEvent.cs +++ b/src/Messaging/Events/ArtifactsReceivedEvent.cs @@ -1,11 +1,11 @@ -/* - * Copyright 2022-2023 MONAI Consortium +/* + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/EmailRequestEvent.cs b/src/Messaging/Events/EmailRequestEvent.cs index 4ffb2a7..4b65568 100644 --- a/src/Messaging/Events/EmailRequestEvent.cs +++ b/src/Messaging/Events/EmailRequestEvent.cs @@ -1,11 +1,11 @@ -/* - * Copyright 2022-2023 MONAI Consortium +/* + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/EventBase.cs b/src/Messaging/Events/EventBase.cs index 052a7a5..e67bb4a 100644 --- a/src/Messaging/Events/EventBase.cs +++ b/src/Messaging/Events/EventBase.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/ExportCompleteEvent.cs b/src/Messaging/Events/ExportCompleteEvent.cs index 8a809bf..bc957f1 100755 --- a/src/Messaging/Events/ExportCompleteEvent.cs +++ b/src/Messaging/Events/ExportCompleteEvent.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/ExportRequestEvent.cs b/src/Messaging/Events/ExportRequestEvent.cs index 41c5859..124c18b 100755 --- a/src/Messaging/Events/ExportRequestEvent.cs +++ b/src/Messaging/Events/ExportRequestEvent.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/ExportStatus.cs b/src/Messaging/Events/ExportStatus.cs index a685486..65f09cb 100644 --- a/src/Messaging/Events/ExportStatus.cs +++ b/src/Messaging/Events/ExportStatus.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/ExternalAppRequestEvent.cs b/src/Messaging/Events/ExternalAppRequestEvent.cs index b3982eb..1794320 100755 --- a/src/Messaging/Events/ExternalAppRequestEvent.cs +++ b/src/Messaging/Events/ExternalAppRequestEvent.cs @@ -1,11 +1,11 @@ -/* - * Copyright 2021-2023 MONAI Consortium +/* + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/FailureReason.cs b/src/Messaging/Events/FailureReason.cs index 6f5c563..7ec0991 100644 --- a/src/Messaging/Events/FailureReason.cs +++ b/src/Messaging/Events/FailureReason.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/TaskCallbackEvent.cs b/src/Messaging/Events/TaskCallbackEvent.cs index c088910..5d59e4a 100644 --- a/src/Messaging/Events/TaskCallbackEvent.cs +++ b/src/Messaging/Events/TaskCallbackEvent.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/TaskCancellationEvent.cs b/src/Messaging/Events/TaskCancellationEvent.cs index aae9879..7f8b3f3 100644 --- a/src/Messaging/Events/TaskCancellationEvent.cs +++ b/src/Messaging/Events/TaskCancellationEvent.cs @@ -1,11 +1,11 @@ -/* - * Copyright 2022-2023 MONAI Consortium +/* + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/TaskDispatchEvent.cs b/src/Messaging/Events/TaskDispatchEvent.cs index c1aa168..f97cec7 100644 --- a/src/Messaging/Events/TaskDispatchEvent.cs +++ b/src/Messaging/Events/TaskDispatchEvent.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/TaskExecutionStatus.cs b/src/Messaging/Events/TaskExecutionStatus.cs index 24f16ad..4397f60 100644 --- a/src/Messaging/Events/TaskExecutionStatus.cs +++ b/src/Messaging/Events/TaskExecutionStatus.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/TaskUpdateEvent.cs b/src/Messaging/Events/TaskUpdateEvent.cs index b9ea839..6857e86 100644 --- a/src/Messaging/Events/TaskUpdateEvent.cs +++ b/src/Messaging/Events/TaskUpdateEvent.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Events/WorkflowRequestEvent.cs b/src/Messaging/Events/WorkflowRequestEvent.cs index 59e7e63..bbada21 100755 --- a/src/Messaging/Events/WorkflowRequestEvent.cs +++ b/src/Messaging/Events/WorkflowRequestEvent.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2023 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/HealthCheckRegistrationBase.cs b/src/Messaging/HealthCheckRegistrationBase.cs index 7f47176..080f6d3 100644 --- a/src/Messaging/HealthCheckRegistrationBase.cs +++ b/src/Messaging/HealthCheckRegistrationBase.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/IServiceCollectionExtension.cs b/src/Messaging/IServiceCollectionExtension.cs index 0ffed7b..c46fad6 100755 --- a/src/Messaging/IServiceCollectionExtension.cs +++ b/src/Messaging/IServiceCollectionExtension.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/InternalVisible.cs b/src/Messaging/InternalVisible.cs index 57d7b5c..09fac39 100644 --- a/src/Messaging/InternalVisible.cs +++ b/src/Messaging/InternalVisible.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Messages/JsonMessage.cs b/src/Messaging/Messages/JsonMessage.cs index 8394560..6717861 100644 --- a/src/Messaging/Messages/JsonMessage.cs +++ b/src/Messaging/Messages/JsonMessage.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Messages/Message.cs b/src/Messaging/Messages/Message.cs index ffb6f59..b636bb4 100644 --- a/src/Messaging/Messages/Message.cs +++ b/src/Messaging/Messages/Message.cs @@ -1,11 +1,11 @@ /* - * Copyright 2021-2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Messages/MessageBase.cs b/src/Messaging/Messages/MessageBase.cs index 76e3b7f..410618d 100644 --- a/src/Messaging/Messages/MessageBase.cs +++ b/src/Messaging/Messages/MessageBase.cs @@ -1,11 +1,11 @@ /* - * Copyright 2022 MONAI Consortium + * Copyright 2021-2024 MONAI Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/Messaging/Monai.Deploy.Messaging.csproj b/src/Messaging/Monai.Deploy.Messaging.csproj index 8e89a1d..73c95bf 100644 --- a/src/Messaging/Monai.Deploy.Messaging.csproj +++ b/src/Messaging/Monai.Deploy.Messaging.csproj @@ -1,11 +1,11 @@ -