Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch/0.3.3 #226

Merged
merged 2 commits into from
Oct 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- uses: actions/setup-dotnet@v3
with:
dotnet-version: "6.0.x"

- name: Install GitVersion
run: dotnet tool install --global GitVersion.Tool

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

- name: Enable Homebrew
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@v0.4
with:
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

- name: Secret detection
uses: gitleaks/gitleaks-action@v1.6.0

- name: Perform License Scanning
run: license_finder -r

Expand Down Expand Up @@ -156,34 +156,34 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install SonarCloud scanner
if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'
run: dotnet tool install --global dotnet-sonarscanner

- name: Restore dependencies
run: dotnet restore
working-directory: ./src

- name: Begin SonarScanner
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: dotnet sonarscanner begin /k:"Project-MONAI_monai-deploy-informatics-gateway" /o:"project-monai" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths="${{ env.TEST_RESULTS }}/**/*.xml"
working-directory: ./src

- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: dotnet build -c ${{ env.BUILD_CONFIG }} --nologo "${{ env.SOLUTION }}"
working-directory: ./src

- name: Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: find ~+ -type f -name "*.Test.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal -r "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings
run: find ~+ -type f -name "*.Test.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal -r "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings
working-directory: ./src

- name: End SonarScanner
Expand All @@ -192,7 +192,7 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
working-directory: ./src

- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down Expand Up @@ -436,7 +436,7 @@ jobs:
run: |
mkdir ~\release
Compress-Archive -Path docs\_site\* -DestinationPath ~\release\mig-docs-${{ env.SEMVER }}.zip
Get-ChildItem ~\release -Recurse
Get-ChildItem ~\release -Recurse

- name: Upload docs
uses: actions/upload-artifact@v3.1.1
Expand Down
10 changes: 5 additions & 5 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

## 0.3.3

[GitHub Milestone 0.3.2](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/9)
[GitHub Milestone 0.3.3](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/9)

- Ability to create storage buckets on startup
- Include logging scope values for LogStash
Expand Down Expand Up @@ -65,10 +65,10 @@
- Adds HL7 (MLLP) service to enable triggering of workflow requests using HL7 messages.
- Breaking changes with how Informatics Gateway handles incoming data and uploading to the storage service.
All incoming data are now immediately queued for upload to the storage service instead of saving to the local disk.
Therefore, if Informatics Gateway restarts or crashes during upload, any queued or incomplete uploads are lost.
In addition, during the Informatics Gateway startup, the payload assembly service removes any payloads containing
any pending files. Files that were successfully uploaded to the temporary location (`storage>temporary`) in the
bucket (`storage>temporaryBucketName`) are then moved to the payload bucket (`storage>bucketName`) before sending a workflow request.
Therefore, if Informatics Gateway restarts or crashes during upload, any queued or incomplete uploads are lost.
In addition, during the Informatics Gateway startup, the payload assembly service removes any payloads containing
any pending files. Files that were successfully uploaded to the temporary location (`storage>temporary`) in the
bucket (`storage>temporaryBucketName`) are then moved to the payload bucket (`storage>bucketName`) before sending a workflow request.
- Breaking changes in the storage configuration to allow dynamic key-value pairs.
- Breaking changes to enable dynamic loading of the storage & the messaging libraries.

Expand Down
Loading