diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d684747..9fc9e66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: © 2022 MONAI Consortium +# SPDX-FileCopyrightText: © 2022-2024 MONAI Consortium # SPDX-License-Identifier: Apache License 2.0 name: ci @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -43,7 +43,7 @@ jobs: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.0 + uses: actions/cache@v4.0.2 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -51,7 +51,7 @@ jobs: ${{ runner.os }}-nuget - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: csharp @@ -64,7 +64,7 @@ jobs: working-directory: ./src - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 analyze: runs-on: ubuntu-latest @@ -79,7 +79,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions/setup-dotnet@v3 @@ -95,7 +95,7 @@ jobs: tools: licensefinder - name: Enable NuGet cache - uses: actions/cache@v3.3.0 + uses: actions/cache@v4.0.2 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -117,30 +117,30 @@ jobs: run: license_finder -r - name: Check License Header - uses: apache/skywalking-eyes@v0.4.0 + uses: apache/skywalking-eyes@v0.6.0 unit-test: runs-on: ubuntu-latest steps: - name: Set up JDK 11 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'zulu' java-version: '17' - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.0 + 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@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -188,7 +188,7 @@ jobs: docker volume rm tests_minio_config working-directory: ./src/Plugins/MinIO/Tests - - uses: codecov/codecov-action@v3.1.1 + - uses: codecov/codecov-action@v4.4.1 with: token: ${{ secrets.CODECOV_TOKEN }} directory: "src/" @@ -206,7 +206,7 @@ jobs: strategy: matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] fail-fast: true permissions: @@ -217,7 +217,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -226,7 +226,7 @@ jobs: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.0 + uses: actions/cache@v4.0.2 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -278,7 +278,7 @@ jobs: - name: Upload Nuget if: ${{ matrix.os == 'ubuntu-latest' }} - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.0.0 with: name: nuget path: ${{ github.workspace }}/release/*.nupkg @@ -286,7 +286,7 @@ jobs: - name: Upload Zipped Plug-ins if: ${{ matrix.os == 'ubuntu-latest' }} - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.0.0 with: name: plug-ins path: ${{ github.workspace }}/src/Plugins/release/*.zip @@ -298,7 +298,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 @@ -323,7 +323,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 @@ -351,11 +351,11 @@ jobs: MAJORMINORPATCH: ${{ needs.build.outputs.majorMinorPatch }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 id: download - name: List artifacts @@ -404,4 +404,4 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} owner: ${{ steps.repo.outputs._0 }} repository: ${{ steps.repo.outputs._1 }} - milestone: ${{ env.MAJORMINORPATCH }} \ No newline at end of file + milestone: ${{ env.MAJORMINORPATCH }} diff --git a/.licenserc.yaml b/.licenserc.yaml index aca4918..de4456a 100644 --- a/.licenserc.yaml +++ b/.licenserc.yaml @@ -2,6 +2,8 @@ header: license: spdx-id: Apache-2.0 copyright-owner: MONAI Consortium + copyright-year: '2021-2024' + paths: - 'src' diff --git a/codecov.yml b/codecov.yml index 41cfda6..66c4576 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: © 2021-2022 MONAI Consortium +# SPDX-FileCopyrightText: © 2021-2024 MONAI Consortium # SPDX-License-Identifier: Apache License 2.0 codecov: diff --git a/doc/dependency_decisions.yml b/doc/dependency_decisions.yml index 1c3a0a5..e2b0ffa 100644 --- a/doc/dependency_decisions.yml +++ b/doc/dependency_decisions.yml @@ -4,28 +4,28 @@ - :who: mocsharp :why: Apache-2.0 (https://github.com/aws/aws-sdk-net/raw/master/License.txt) :versions: - - 3.7.300.29 + - 3.7.304.15 :when: 2022-08-29 18:11:12.923214877 Z - - :approve - AWSSDK.S3 - :who: mocsharp :why: Apache-2.0 (https://github.com/aws/aws-sdk-net/raw/master/License.txt) :versions: - - 3.7.305.4 + - 3.7.309.3 :when: 2022-08-29 18:11:13.354973002 Z - - :approve - AWSSDK.SecurityToken - :who: mocsharp :why: Apache-2.0 (https://github.com/aws/aws-sdk-net/raw/master/License.txt) :versions: - - 3.7.300.30 + - 3.7.300.105 :when: 2022-08-16 18:11:13.781079769 Z - - :approve - Ardalis.GuardClauses - :who: mocsharp :why: MIT (https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE) :versions: - - 4.3.0 + - 4.5.0 :when: 2022-08-16 18:11:14.642522140 Z - - :approve - Castle.Core @@ -60,7 +60,7 @@ - :who: mocsharp :why: MIT (https://github.com/microsoft/vstest/raw/v17.7.0/LICENSE) :versions: - - 17.8.0 + - 17.10.0 :when: 2022-08-16 18:11:17.245887971 Z - - :approve - Microsoft.Extensions.Configuration.Abstractions @@ -74,14 +74,14 @@ - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 7.0.0 + - 8.0.0 :when: 2022-08-16 18:11:22.090772006 Z - - :approve - Microsoft.Extensions.DependencyInjection.Abstractions - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 8.0.0 + - 8.0.1 :when: 2022-08-16 18:11:22.090772006 Z - - :approve - Microsoft.Extensions.Diagnostics.Abstractions @@ -95,14 +95,14 @@ - :who: mocsharp :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) :versions: - - 8.0.0 + - 8.0.6 :when: 2022-08-29 18:11:22.090772006 Z - - :approve - Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - :who: mocsharp :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) :versions: - - 8.0.0 + - 8.0.6 :when: 2022-08-29 18:11:22.090772006 Z - - :approve - Microsoft.Extensions.FileProviders.Abstractions @@ -131,14 +131,14 @@ - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 8.0.0 + - 8.0.1 :when: 2022-08-29 18:11:25.167886026 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 18:11:27.836230472 Z - - :approve - Microsoft.Extensions.Primitives @@ -152,7 +152,7 @@ - :who: mocsharp :why: MIT (https://github.com/microsoft/vstest/raw/v17.7.0/LICENSE) :versions: - - 17.8.0 + - 17.10.0 :when: 2022-08-16 18:11:29.155295778 Z - - :approve - Microsoft.NETCore.Platforms @@ -173,14 +173,14 @@ - :who: mocsharp :why: MIT (https://github.com/microsoft/vstest/raw/v17.7.0/LICENSE) :versions: - - 17.8.0 + - 17.10.0 :when: 2022-08-16 18:11:32.293966383 Z - - :approve - Microsoft.TestPlatform.TestHost - :who: mocsharp :why: MIT (https://github.com/microsoft/vstest/raw/v17.7.0/LICENSE) :versions: - - 17.8.0 + - 17.10.0 :when: 2022-08-16 18:11:33.162650175 Z - - :approve - Microsoft.Win32.Primitives @@ -194,7 +194,7 @@ - :who: mocsharp :why: Apache-2.0 (https://github.com/minio/minio-dotnet/raw/master/LICENSE) :versions: - - 6.0.1 + - 6.0.2 :when: 2022-08-16 18:11:34.443742604 Z - - :approve - Moq @@ -335,14 +335,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 - runtime.native.System.IO.Compression @@ -377,7 +377,7 @@ - :who: mocsharp :why: MIT (https://raw.githubusercontent.com/dotnet/runtime/main/LICENSE.TXT) :versions: - - 7.0.0 + - 8.0.0 :when: 2023-08-10 20:50:14.759818552 Z - - :approve - System.Linq @@ -664,28 +664,28 @@ - :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 - TestableIO.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 - TestableIO.System.IO.Abstractions.Wrappers - :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 - 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 18:12:11.244463651 Z - - :approve - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl @@ -797,7 +797,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 @@ -811,40 +811,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 \ No newline at end of file diff --git a/src/AssemblyInfo.cs b/src/AssemblyInfo.cs index e5059fe..10faff2 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/Plugins/AWSS3/AWS3StorageService.cs b/src/Plugins/AWSS3/AWS3StorageService.cs index 8ffeab8..ba90c2e 100644 --- a/src/Plugins/AWSS3/AWS3StorageService.cs +++ b/src/Plugins/AWSS3/AWS3StorageService.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/Plugins/AWSS3/ConfigurationKeys.cs b/src/Plugins/AWSS3/ConfigurationKeys.cs index c6063ac..f64972a 100644 --- a/src/Plugins/AWSS3/ConfigurationKeys.cs +++ b/src/Plugins/AWSS3/ConfigurationKeys.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/Plugins/AWSS3/Monai.Deploy.Storage.AWSS3.csproj b/src/Plugins/AWSS3/Monai.Deploy.Storage.AWSS3.csproj index 16c653a..3cbc1a7 100644 --- a/src/Plugins/AWSS3/Monai.Deploy.Storage.AWSS3.csproj +++ b/src/Plugins/AWSS3/Monai.Deploy.Storage.AWSS3.csproj @@ -1,11 +1,11 @@ @@ -23,15 +23,15 @@ - + - - - + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Plugins/MinIO/Tests/Unit/MinIoAdminHealthCheckTest.cs b/src/Plugins/MinIO/Tests/Unit/MinIoAdminHealthCheckTest.cs index ab6e2e4..3f56351 100644 --- a/src/Plugins/MinIO/Tests/Unit/MinIoAdminHealthCheckTest.cs +++ b/src/Plugins/MinIO/Tests/Unit/MinIoAdminHealthCheckTest.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/Plugins/MinIO/Tests/Unit/MinIoHealthCheckTest.cs b/src/Plugins/MinIO/Tests/Unit/MinIoHealthCheckTest.cs index 1bfa46c..baccd18 100644 --- a/src/Plugins/MinIO/Tests/Unit/MinIoHealthCheckTest.cs +++ b/src/Plugins/MinIO/Tests/Unit/MinIoHealthCheckTest.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/Plugins/MinIO/Tests/Unit/MinIoStartupTest.cs b/src/Plugins/MinIO/Tests/Unit/MinIoStartupTest.cs index 91bd493..ebff3eb 100644 --- a/src/Plugins/MinIO/Tests/Unit/MinIoStartupTest.cs +++ b/src/Plugins/MinIO/Tests/Unit/MinIoStartupTest.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/Plugins/MinIO/Tests/Unit/MinIoStorageServiceTest.cs b/src/Plugins/MinIO/Tests/Unit/MinIoStorageServiceTest.cs index 6765fdc..5bfdfe2 100644 --- a/src/Plugins/MinIO/Tests/Unit/MinIoStorageServiceTest.cs +++ b/src/Plugins/MinIO/Tests/Unit/MinIoStorageServiceTest.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/Plugins/MinIO/Tests/Unit/MinioPolicyExtensionsTest.cs b/src/Plugins/MinIO/Tests/Unit/MinioPolicyExtensionsTest.cs index 6530a56..3274c4c 100644 --- a/src/Plugins/MinIO/Tests/Unit/MinioPolicyExtensionsTest.cs +++ b/src/Plugins/MinIO/Tests/Unit/MinioPolicyExtensionsTest.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/Plugins/MinIO/Tests/Unit/ServiceRegistrationTest.cs b/src/Plugins/MinIO/Tests/Unit/ServiceRegistrationTest.cs index aff5472..2558afa 100644 --- a/src/Plugins/MinIO/Tests/Unit/ServiceRegistrationTest.cs +++ b/src/Plugins/MinIO/Tests/Unit/ServiceRegistrationTest.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/Plugins/MinIO/Tests/docker-compose.yml b/src/Plugins/MinIO/Tests/docker-compose.yml index a9e4377..f73064f 100644 --- a/src/Plugins/MinIO/Tests/docker-compose.yml +++ b/src/Plugins/MinIO/Tests/docker-compose.yml @@ -1,10 +1,10 @@ -# 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, @@ -15,7 +15,7 @@ version: "3.9" services: minio: - image: "minio/minio:RELEASE.2023-10-16T04-13-43Z" + image: "minio/minio:RELEASE.2024-06-11T03-13-30Z" command: server --console-address ":9001" /data hostname: minio volumes: diff --git a/src/Plugins/package.sh b/src/Plugins/package.sh index 62a5750..ed52f88 100755 --- a/src/Plugins/package.sh +++ b/src/Plugins/package.sh @@ -1,11 +1,11 @@ #!/bin/bash -# 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/S3Policy/Monai.Deploy.Storage.S3Policy.csproj b/src/S3Policy/Monai.Deploy.Storage.S3Policy.csproj index f8f311f..3ab4fdd 100644 --- a/src/S3Policy/Monai.Deploy.Storage.S3Policy.csproj +++ b/src/S3Policy/Monai.Deploy.Storage.S3Policy.csproj @@ -1,11 +1,11 @@ + + # Third-Party Licenses @@ -59,15 +60,15 @@ SOFTWARE.
-AWSSDK.Core 3.7.300.29 +AWSSDK.Core 3.7.304.15 ## AWSSDK.Core -- Version: 3.7.300.29 +- Version: 3.7.304.15 - Authors: Amazon Web Services - Owners: Amazon Web Services - Project URL: https://github.com/aws/aws-sdk-net/ -- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.Core/3.7.300.29) +- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.Core/3.7.304.15) - License: [Apache-2.0](https://github.com/aws/aws-sdk-net/raw/master/License.txt) @@ -132,15 +133,15 @@ END OF TERMS AND CONDITIONS
-AWSSDK.S3 3.7.305.4 +AWSSDK.S3 3.7.309.3 ## AWSSDK.S3 -- Version: 3.7.305.4 +- Version: 3.7.309.3 - Authors: Amazon Web Services - Owners: Amazon Web Services - Project URL: https://github.com/aws/aws-sdk-net/ -- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.S3/3.7.305.4) +- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.S3/3.7.309.3) - License: [Apache-2.0](https://github.com/aws/aws-sdk-net/raw/master/License.txt) @@ -205,15 +206,15 @@ END OF TERMS AND CONDITIONS
-AWSSDK.SecurityToken 3.7.300.30 +AWSSDK.SecurityToken 3.7.300.105 ## AWSSDK.SecurityToken -- Version: 3.7.300.30 +- Version: 3.7.300.105 - Authors: Amazon Web Services - Owners: Amazon Web Services - Project URL: https://github.com/aws/aws-sdk-net/ -- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.SecurityToken/3.7.300.30) +- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.SecurityToken/3.7.300.105) - License: [Apache-2.0](https://github.com/aws/aws-sdk-net/raw/master/License.txt) @@ -278,14 +279,14 @@ END OF TERMS AND CONDITIONS
-Ardalis.GuardClauses 4.3.0 +Ardalis.GuardClauses 4.5.0 ## Ardalis.GuardClauses -- Version: 4.3.0 +- Version: 4.5.0 - Authors: Steve Smith (@ardalis) - Project URL: https://github.com/ardalis/guardclauses -- Source: [NuGet](https://www.nuget.org/packages/Ardalis.GuardClauses/4.3.0) +- Source: [NuGet](https://www.nuget.org/packages/Ardalis.GuardClauses/4.5.0) - License: [MIT](https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE) @@ -807,14 +808,14 @@ third-party archives.
-Microsoft.CodeCoverage 17.8.0 +Microsoft.CodeCoverage 17.10.0 ## Microsoft.CodeCoverage -- Version: 17.8.0 +- Version: 17.10.0 - Authors: Microsoft - Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.8.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.10.0) - License: [MIT](https://github.com/microsoft/vstest/raw/v17.7.0/LICENSE) @@ -889,14 +890,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection 7.0.0 +Microsoft.Extensions.DependencyInjection 8.0.0 ## Microsoft.Extensions.DependencyInjection -- Version: 7.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/7.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -930,14 +931,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection.Abstractions 8.0.0 +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1 ## Microsoft.Extensions.DependencyInjection.Abstractions -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -1012,14 +1013,14 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics.HealthChecks 8.0.0 +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.6 ## Microsoft.Extensions.Diagnostics.HealthChecks -- Version: 8.0.0 +- Version: 8.0.6 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks/8.0.6) - License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) @@ -1053,14 +1054,14 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.0 +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.6 ## Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions -- Version: 8.0.0 +- Version: 8.0.6 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/8.0.6) - License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) @@ -1258,14 +1259,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Abstractions 8.0.0 +Microsoft.Extensions.Logging.Abstractions 8.0.1 ## Microsoft.Extensions.Logging.Abstractions -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -1299,14 +1300,14 @@ SOFTWARE.
-Microsoft.Extensions.Options 8.0.0 +Microsoft.Extensions.Options 8.0.2 ## Microsoft.Extensions.Options -- Version: 8.0.0 +- Version: 8.0.2 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.2) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -1381,14 +1382,14 @@ SOFTWARE.
-Microsoft.NET.Test.Sdk 17.8.0 +Microsoft.NET.Test.Sdk 17.10.0 ## Microsoft.NET.Test.Sdk -- Version: 17.8.0 +- Version: 17.10.0 - Authors: Microsoft - Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.8.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.10.0) - License: [MIT](https://github.com/microsoft/vstest/raw/v17.7.0/LICENSE) @@ -1832,14 +1833,14 @@ consequential or other damages.
-Microsoft.TestPlatform.ObjectModel 17.8.0 +Microsoft.TestPlatform.ObjectModel 17.10.0 ## Microsoft.TestPlatform.ObjectModel -- Version: 17.8.0 +- Version: 17.10.0 - Authors: Microsoft - Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.8.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.10.0) - License: [MIT](https://github.com/microsoft/vstest/raw/v17.7.0/LICENSE) @@ -1873,14 +1874,14 @@ SOFTWARE.
-Microsoft.TestPlatform.TestHost 17.8.0 +Microsoft.TestPlatform.TestHost 17.10.0 ## Microsoft.TestPlatform.TestHost -- Version: 17.8.0 +- Version: 17.10.0 - Authors: Microsoft - Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.8.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.10.0) - License: [MIT](https://github.com/microsoft/vstest/raw/v17.7.0/LICENSE) @@ -2119,14 +2120,14 @@ consequential or other damages.
-Minio 6.0.1 +Minio 6.0.2 ## Minio -- Version: 6.0.1 +- Version: 6.0.2 - Authors: MinIO, Inc. - Project URL: https://github.com/minio/minio-dotnet -- Source: [NuGet](https://www.nuget.org/packages/Minio/6.0.1) +- Source: [NuGet](https://www.nuget.org/packages/Minio/6.0.2) - License: [Apache-2.0](https://github.com/minio/minio-dotnet/raw/master/LICENSE) @@ -5450,14 +5451,14 @@ consequential or other damages.
-System.IO.Abstractions 20.0.4 +System.IO.Abstractions 21.0.2 ## System.IO.Abstractions -- Version: 20.0.4 +- Version: 21.0.2 - Authors: Tatham Oddie & friends - Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions/20.0.4) +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions/21.0.2) - License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) @@ -5491,14 +5492,14 @@ SOFTWARE.
-System.IO.Abstractions.TestingHelpers 20.0.4 +System.IO.Abstractions.TestingHelpers 21.0.2 ## System.IO.Abstractions.TestingHelpers -- Version: 20.0.4 +- Version: 21.0.2 - Authors: Tatham Oddie & friends - Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions.TestingHelpers/20.0.4) +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions.TestingHelpers/21.0.2) - License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) @@ -6352,14 +6353,14 @@ consequential or other damages.
-System.IO.Hashing 7.0.0 +System.IO.Hashing 8.0.0 ## System.IO.Hashing -- Version: 7.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Hashing/7.0.0) +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Hashing/8.0.0) - License: [MIT](https://raw.githubusercontent.com/dotnet/runtime/main/LICENSE.TXT) @@ -13898,14 +13899,14 @@ consequential or other damages.
-TestableIO.System.IO.Abstractions 20.0.4 +TestableIO.System.IO.Abstractions 21.0.2 ## TestableIO.System.IO.Abstractions -- Version: 20.0.4 +- Version: 21.0.2 - Authors: Tatham Oddie & friends - Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions/20.0.4) +- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions/21.0.2) - License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) @@ -13939,14 +13940,14 @@ SOFTWARE.
-TestableIO.System.IO.Abstractions.TestingHelpers 20.0.4 +TestableIO.System.IO.Abstractions.TestingHelpers 21.0.2 ## TestableIO.System.IO.Abstractions.TestingHelpers -- Version: 20.0.4 +- Version: 21.0.2 - Authors: Tatham Oddie & friends - Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions.TestingHelpers/20.0.4) +- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions.TestingHelpers/21.0.2) - License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) @@ -13980,14 +13981,14 @@ SOFTWARE.
-TestableIO.System.IO.Abstractions.Wrappers 20.0.4 +TestableIO.System.IO.Abstractions.Wrappers 21.0.2 ## TestableIO.System.IO.Abstractions.Wrappers -- Version: 20.0.4 +- Version: 21.0.2 - Authors: Tatham Oddie & friends - Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions.Wrappers/20.0.4) +- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions.Wrappers/21.0.2) - License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) @@ -14021,14 +14022,14 @@ SOFTWARE.
-coverlet.collector 6.0.0 +coverlet.collector 6.0.2 ## coverlet.collector -- Version: 6.0.0 +- Version: 6.0.2 - Authors: tonerdo - Project URL: https://github.com/coverlet-coverage/coverlet -- Source: [NuGet](https://www.nuget.org/packages/coverlet.collector/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/coverlet.collector/6.0.2) - License: [MIT](https://github.com/coverlet-coverage/coverlet/raw/master/LICENSE) @@ -17340,13 +17341,13 @@ consequential or other damages.
-xunit 2.6.4 +xunit 2.8.1 ## xunit -- Version: 2.6.4 +- Version: 2.8.1 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit/2.6.4) +- Source: [NuGet](https://www.nuget.org/packages/xunit/2.8.1) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -17472,13 +17473,13 @@ Both sets of code are covered by the following license:
-xunit.analyzers 1.8.0 +xunit.analyzers 1.14.0 ## xunit.analyzers -- Version: 1.8.0 +- Version: 1.14.0 - Authors: jnewkirk,bradwilson,marcind -- Source: [NuGet](https://www.nuget.org/packages/xunit.analyzers/1.8.0) +- Source: [NuGet](https://www.nuget.org/packages/xunit.analyzers/1.14.0) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit.analyzers/master/LICENSE) @@ -17503,13 +17504,13 @@ limitations under the License.
-xunit.assert 2.6.4 +xunit.assert 2.8.1 ## xunit.assert -- Version: 2.6.4 +- Version: 2.8.1 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.assert/2.6.4) +- Source: [NuGet](https://www.nuget.org/packages/xunit.assert/2.8.1) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -17568,13 +17569,13 @@ Both sets of code are covered by the following license:
-xunit.core 2.6.4 +xunit.core 2.8.1 ## xunit.core -- Version: 2.6.4 +- Version: 2.8.1 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.core/2.6.4) +- Source: [NuGet](https://www.nuget.org/packages/xunit.core/2.8.1) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -17633,13 +17634,13 @@ Both sets of code are covered by the following license:
-xunit.extensibility.core 2.6.4 +xunit.extensibility.core 2.8.1 ## xunit.extensibility.core -- Version: 2.6.4 +- Version: 2.8.1 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.core/2.6.4) +- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.core/2.8.1) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -17698,13 +17699,13 @@ Both sets of code are covered by the following license:
-xunit.extensibility.execution 2.6.4 +xunit.extensibility.execution 2.8.1 ## xunit.extensibility.execution -- Version: 2.6.4 +- Version: 2.8.1 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.execution/2.6.4) +- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.execution/2.8.1) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -17763,13 +17764,13 @@ Both sets of code are covered by the following license:
-xunit.runner.visualstudio 2.5.6 +xunit.runner.visualstudio 2.8.1 ## xunit.runner.visualstudio -- Version: 2.5.6 +- Version: 2.8.1 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/2.5.6) +- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/2.8.1) - License: [MIT]( https://licenses.nuget.org/MIT)