Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Chang <[email protected]>
  • Loading branch information
mocsharp committed Jun 12, 2024
1 parent 15ffda8 commit 62c1bd2
Show file tree
Hide file tree
Showing 52 changed files with 2,658 additions and 13,596 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
nuGetVersionV2: ${{ steps.gitversion.outputs.nuGetVersionV2 }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -91,7 +91,7 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -135,13 +135,13 @@ jobs:
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH

- name: Install License Finder tool with Homebrew
uses: tecoli-com/actions-use-homebrew-tools@v1.1
uses: tecoli-com/actions-use-homebrew-tools@v1.2
with:
tools: licensefinder
cache: yes

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
run: license_finder -r

- name: Check License Header
uses: apache/skywalking-eyes@v0.4.0
uses: apache/skywalking-eyes@v0.5.0

unit-test:
runs-on: ubuntu-latest
Expand All @@ -194,14 +194,14 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].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

Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
DOTNET_TEST: ${{ matrix.database }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -273,7 +273,7 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -338,7 +338,7 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -481,7 +481,7 @@ jobs:
env:
SEMVER: ${{ needs.calc-version.outputs.semVer }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -490,15 +490,15 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget
- name: Setup DocFX
uses: crazy-max/ghaction-chocolatey@v2
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install docfx

Expand Down Expand Up @@ -568,7 +568,7 @@ jobs:
MAJORMINORPATCH: ${{ needs.calc-version.outputs.majorMinorPatch }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
version: "3.9"
services:
rabbitmq:
image: rabbitmq:3.10-management
image: rabbitmq:3.13-management
hostname: rabbitmq
ports:
- 5672:5672
Expand All @@ -35,7 +35,7 @@ services:
- monaideploy

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:
Expand Down Expand Up @@ -75,7 +75,7 @@ services:
start_period: 40s

orthanc:
image: osimis/orthanc:22.9.0
image: osimis/orthanc:24.1.2-full
hostname: orthanc
volumes:
- ./configs/orthanc.json:/etc/orthanc/orthanc.json
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@

# Changelog

## 0.5.0
[GitHub Milestone 0.5.0](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/4)

- gh-506 Updated Informatics Gateway to .NET 8.0
- Improve logging

## 0.4.0

[GitHub Milestone 0.4.0](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/5)
Expand Down
12 changes: 6 additions & 6 deletions src/Api/Monai.Deploy.InformaticsGateway.Api.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--
<!--
~ Copyright 2021-2023 MONAI Consortium
~
~ Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -31,7 +31,7 @@
</PropertyGroup>
<Target Name="CopyProjectReferencesToPackage" DependsOnTargets="ResolveReferences">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths-&gt;WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
</ItemGroup>
</Target>
<PropertyGroup>
Expand All @@ -51,10 +51,10 @@
<PackageReference Include="fo-dicom" Version="5.1.2" />
<PackageReference Include="HL7-dotnetcore" Version="2.36.0" />
<PackageReference Include="Macross.Json.Extensions" Version="3.0.0" />
<PackageReference Include="Monai.Deploy.Messaging" Version="2.0.2" />
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="2.0.2" />
<PackageReference Include="Monai.Deploy.Storage" Version="1.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="8.0.0" />
<PackageReference Include="Monai.Deploy.Messaging" Version="2.0.3" />
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="2.0.3" />
<PackageReference Include="Monai.Deploy.Storage" Version="1.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="8.0.6" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Test\**" />
Expand Down
10 changes: 5 additions & 5 deletions src/Api/Test/Monai.Deploy.InformaticsGateway.Api.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
<Compile Include="..\..\Shared\Test\TestStorageInfo.cs" Link="Shared\TestStorageInfo.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="20.0.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="21.0.2" />
<PackageReference Include="xRetry" Version="1.9.0" />
<PackageReference Include="xunit" Version="2.6.5" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Loading

0 comments on commit 62c1bd2

Please sign in to comment.