Skip to content

Provide lightweight plug-in engine handlers to process incoming data #418

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

Closed
mocsharp opened this issue Jul 25, 2023 · 1 comment · Fixed by #426
Closed

Provide lightweight plug-in engine handlers to process incoming data #418

mocsharp opened this issue Jul 25, 2023 · 1 comment · Fixed by #426
Assignees
Labels
feature A new feature
Milestone

Comments

@mocsharp
Copy link
Collaborator

mocsharp commented Jul 25, 2023

Is your feature request related to a problem? Please describe.

This change request relates to the new feature that enables offloading processing to third-party services.

When the Workflow Manager needs to offload some datasets to external services via the Informatics Gateway, it requires IG to modify relevant DICOM tags and store the original values. When the external services return the results later, IG needs to restore the original values.

Describe the solution you'd like

Allows each listening AET configured with zero or more plug-ins to process incoming data.

Requirements

  • A list of plug-ins can be configured with each AET, and each plug-in is executed in the order stored, enabling piping of the incoming data before each file is uploaded to the storage service.
  • Incoming data is processed one file at a time and SHALL not wait for the entire study to arrive.
  • Plugins MUST be lightweight and not hinder the upload process
  • Plugins SHALL not accumulate files in memory or storage for bulk processing

image

@mocsharp mocsharp added the enhancement Enhancement to existing feature label Jul 25, 2023
@mocsharp mocsharp added this to the 0.4.0 milestone Jul 25, 2023
@mocsharp mocsharp self-assigned this Jul 25, 2023
@mocsharp mocsharp added feature A new feature and removed enhancement Enhancement to existing feature labels Jul 25, 2023
@mocsharp mocsharp changed the title Provide lightweight plug-in handlers to process incoming data Provide lightweight plug-in engine handlers to process incoming data Jul 25, 2023
mocsharp added a commit that referenced this issue Aug 2, 2023
…ervice

- Implement IInputDataPluginEngine and IInputDataPlugin
- Add unit tests
- Update SCP feature in integration test
mocsharp added a commit that referenced this issue Aug 3, 2023
…ervice

- Implement IInputDataPluginEngine and IInputDataPlugin
- Add unit tests
- Update SCP feature in integration test

Signed-off-by: Victor Chang <[email protected]>
mocsharp added a commit that referenced this issue Aug 3, 2023
mocsharp added a commit that referenced this issue Aug 3, 2023
mocsharp added a commit that referenced this issue Aug 3, 2023
…ervice (#426)

* gh-418 Implement data input plug-in engine and integration with SCP service

- Implement IInputDataPluginEngine and IInputDataPlugin
- Add unit tests
- Update SCP feature in integration test
* gh-418 Update CLI to support --plugins and update API doc
* gh-418 Rename BackgroundProcessingAsync


Signed-off-by: Victor Chang <[email protected]>
@github-project-automation github-project-automation bot moved this from Todo to Done in Clinical Data Pipelines Aug 3, 2023
mocsharp added a commit that referenced this issue Sep 1, 2023
+semver: minor

* gh-418 Implement data input plug-in engine and integration with SCP service 
* gh-419 Implement data output plug-in engine and integration with SCU/DICOMWeb export services
* gh-435 Fix CLI to read log dir path from NLog config file
* gh-434 New APIs to get a list of input/output data plug-ins 
* Virtual AE & Dynamic DICOMWeb STOW-RS Endpoints (#448)
* Support new Workflow Request event data structure (#455)
* Handle exception thrown from plug-in engine
* Copyedit doc changes for the 0.4.0 release (#464)

---------

Signed-off-by: Victor Chang <[email protected]>
Co-authored-by: Neil South <[email protected]>
Co-authored-by: Neil South <[email protected]>
Co-authored-by: Coco-Ben <[email protected]>
@github-actions
Copy link

github-actions bot commented Sep 1, 2023

🎉 This issue has been resolved in version 0.4.0 🎉

The release is available on:

mocsharp added a commit that referenced this issue Sep 18, 2023
+semver: patch

* gh-418 Implement data input plug-in engine and integration with SCP service (#426)

* gh-418 Implement data input plug-in engine and integration with SCP service

- Implement IInputDataPluginEngine and IInputDataPlugin
- Add unit tests
- Update SCP feature in integration test
* gh-418 Update CLI to support --plugins and update API doc
* gh-418 Rename BackgroundProcessingAsync


Signed-off-by: Victor Chang <[email protected]>

* Input/output data plug-in engine (#423)

Signed-off-by: Victor Chang <[email protected]>

* Update dependencies (#427)

* Update Ardalis.GuardClauses
* Update coverlet.collector
* Update Docker.DotNet
* Update FluentAssertions
* Update xunit
* Update NLog
* Update MongoDB
* Update Polly
* Update Monai.Deploy libraries
* Update Microsoft .NET 6 libraries
* Update fo-dicom
* Update Github Action dependencies
* Update dependencies versions
* Remove fo-dicom logging support and use .NET logging

Signed-off-by: Victor Chang <[email protected]>

* gh-419 Implement data output plug-in engine and integration with SCU/DICOMWeb export services (#428)

* Update Ardalis.GuardClauses
* Update coverlet.collector
* Update Docker.DotNet
* Update xunit
* Update NLog
* Update MongoDB
* Update Polly
* Update Monai.Deploy libraries
* Update Microsoft .NET 6 libraries
* Update fo-dicom
* Remove fo-dicom logging support and use .NET logging
* Implement OutputDataPluginEngine  for export service (SCU, DICOMWeb)
* Add WorkflowInstanceId and TaskId properties for plugins to use
* Fix package hash
* Fix JSON property name of TaskId
* Update Moq, NLog, NLog.Web.AspNetCore and dependencie decisions
* Update dependency decisions: Devlooped.SponsorLink
* Fix comments
Signed-off-by: Victor Chang <[email protected]>

* gh-435 Fix CLI to read log dir path from NLog config file (#436)

* gh-435 Fix CLI to read log dir path from NLog config file
* Update changelog
* Add/update unit tests


Signed-off-by: Victor Chang <[email protected]>

* New APIs to get a list of input/output data plug-ins (#437)

* gh-434 New APIs to get a list of input/output data plug-ins 
   New PluginAttribute to provide names for the plug-ins
* gh-434 Update documentation
* gh-434 Update documentation
* gh-434 Update CLI with aet plugins and dst plugins commands
* Add AttributeUsage to PluginNameAttribute
* Update user guide
* Fix typo in setup guide
* Add unit test for Plug-ins client


Signed-off-by: Victor Chang <[email protected]>

* Virtual AE & Dynamic DICOMWeb STOW-RS Endpoints (#448)

* Change the return type of IInputDataPluginEngine to Tuple
* Add VirtualApplicationEntity to support dynamic DICOMWeb STOW-RS endpoints
* New APIs for Virtual AE and support dynamic endpoints for STOW-RS
* Update DICOMWeb STOW-RS integration test feature with VAE support
* Update changelog
* Update user guide and comments
* Remove unused references
* Add .trivyignore

Signed-off-by: Victor Chang <[email protected]>

* Update Ardalis.GuardClauses

Signed-off-by: Victor Chang <[email protected]>

* Update coverlet.collector

Signed-off-by: Victor Chang <[email protected]>

* Update Microsoft .NET 6 libraries

Signed-off-by: Victor Chang <[email protected]>

* Update fo-dicom

Signed-off-by: Victor Chang <[email protected]>

* Implement OutputDataPluginEngine  for export service (SCU, DICOMWeb)

Signed-off-by: Victor Chang <[email protected]>

* adding externalApp plugins

Signed-off-by: Neil South <[email protected]>

* Update licenses

* Include WorkflowInstanceId and TaskId in Payload

Signed-off-by: Victor Chang <[email protected]>

* fixing up errors

Signed-off-by: Neil South <[email protected]>

* adding tag list to configuration

Signed-off-by: Neil South <[email protected]>

* fix up samll issues

Signed-off-by: Neil South <[email protected]>

* change to how dicomTag are stored

Signed-off-by: Neil South <[email protected]>

* refactoring and more tests

Signed-off-by: Neil South <[email protected]>

* adding test

Signed-off-by: Neil South <[email protected]>

* Regenerate EF DB migration code

* Fix unit test

Signed-off-by: Neil South <[email protected]>

* Refactor RemoteAppExecution plug-ins to a new project

- New APIs to allow plug-in projects to extend database setups and configurations
- Add integration test feature for end-to-end RemoteAppExecution
- Rename Plugin to PlugIn

Signed-off-by: Victor Chang <[email protected]>

* Ignore generated code from license scanning

Signed-off-by: Victor Chang <[email protected]>

* Include WorkflowInstanceId and TaskId in the md.workflow.request event

Signed-off-by: Victor Chang <[email protected]>

* Rename plug-ins

Signed-off-by: Victor Chang <[email protected]>

* Update user guide with data plug-ins feature

Signed-off-by: Victor Chang <[email protected]>

* fix up export complete message for external app execution

Signed-off-by: Neil South <[email protected]>

* change so that publish and build copy the new plugin assembly RemoteAppExecution.dll across

Signed-off-by: Neil South <[email protected]>

* fixup for docker build

Signed-off-by: Neil South <[email protected]>

* Support new Workflow Request event data structure (#455)

* Support new Workflow Request event data structure.
* Re-generate EF migration code
* Update user guide and changelog
* Update ObjectUploadService to call Upload once since it's already handled with Polly.


---------

Signed-off-by: Victor Chang <[email protected]>

* making project nullable

Signed-off-by: Neil South <[email protected]>

* Store payload IDs in DicomAssociationInfo table (#470)

* Store payload IDs in DicomAssociationInfo table
* Include correlation ID in log entries
* Include messageId in log
* Log duration of export request
* Fix buid and unit test


Signed-off-by: Victor Chang <[email protected]>

* Update nlog.config to include scope props in console logs

Signed-off-by: Victor Chang <[email protected]>

* Publish API project to nuget (#473)

* Update NLog console formatter & Messaging lib
* Publish API project to nuget
* Update license decisions
* Update copyright header
* Use seconds for duration and log connection duration


Signed-off-by: Victor Chang <[email protected]>

* Update package-cleanup.yml

Signed-off-by: Victor Chang <[email protected]>

* Update package-cleanup.yml

Signed-off-by: Victor Chang <[email protected]>

* Update package-cleanup.yml

Signed-off-by: Victor Chang <[email protected]>

* Main (#477)

* Patch/0.3.5 (#281)

+semver: patch

* Create dependabot.yml

* Bump actions/cache from 2.1.7 to 3.0.8 (#123)

Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.0.8.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v2.1.7...v3.0.8)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/setup-dotnet from 1 to 2 (#121)

Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 1 to 2.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v1...v2)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump anchore/scan-action from 3.2.0 to 3.2.5 (#120)

Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 3.2.0 to 3.2.5.
- [Release notes](https://github.com/anchore/scan-action/releases)
- [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/anchore/scan-action/compare/v3.2.0...v3.2.5)

---
updated-dependencies:
- dependency-name: anchore/scan-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/setup-java from 1 to 3 (#122)

* Bump actions/setup-java from 1 to 3

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 3.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v1...v3)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Chang <[email protected]>

* Bump docker/login-action from 1.12.0 to 2.0.0 (#126)

Bumps [docker/login-action](https://github.com/docker/login-action) from 1.12.0 to 2.0.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](https://github.com/docker/login-action/compare/v1.12.0...v2.0.0)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Implement FHIR server (#118)

* gh-29 Implement FHIR server
* gh-29 Unit test for FHIR service
* gh-29 Test feature for FHIR
* Update API doc & changelog

Signed-off-by: Victor Chang <[email protected]>

* Integrate MS Health Check Service (#130)

* Update health check API
* Integrate MS health check service
* Enable overriding configurations with env vars

Signed-off-by: Victor Chang <[email protected]>

* Bump codecov/codecov-action from 2 to 3 (#131)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2 to 3.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jungwinter/split from 1 to 2 (#136)

* Bump jungwinter/split from 1 to 2

Bumps [jungwinter/split](https://github.com/jungwinter/split) from 1 to 2.
- [Release notes](https://github.com/jungwinter/split/releases)
- [Commits](https://github.com/jungwinter/split/compare/v1...v2)

---
updated-dependencies:
- dependency-name: jungwinter/split
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Chang <[email protected]>

* Bump actions/download-artifact from 2 to 3 (#139)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/upload-artifact from 2.3.1 to 3.1.0 (#133)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.3.1 to 3.1.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v2.3.1...v3.1.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump crazy-max/ghaction-chocolatey from 1 to 2 (#132)

Bumps [crazy-max/ghaction-chocolatey](https://github.com/crazy-max/ghaction-chocolatey) from 1 to 2.
- [Release notes](https://github.com/crazy-max/ghaction-chocolatey/releases)
- [Changelog](https://github.com/crazy-max/ghaction-chocolatey/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crazy-max/ghaction-chocolatey/compare/v1...v2)

---
updated-dependencies:
- dependency-name: crazy-max/ghaction-chocolatey
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/metadata-action from 3.6.2 to 4.0.1 (#135)

Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 3.6.2 to 4.0.1.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md)
- [Commits](https://github.com/docker/metadata-action/compare/v3.6.2...v4.0.1)

---
updated-dependencies:
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/checkout from 2 to 3 (#143)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump gittools/actions from 0.9.11 to 0.9.13 (#142)

Bumps [gittools/actions](https://github.com/gittools/actions) from 0.9.11 to 0.9.13.
- [Release notes](https://github.com/gittools/actions/releases)
- [Commits](https://github.com/gittools/actions/compare/v0.9.11...v0.9.13)

---
updated-dependencies:
- dependency-name: gittools/actions
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/build-push-action from 2.9.0 to 3.1.1 (#140)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2.9.0 to 3.1.1.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v2.9.0...v3.1.1)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Merge Release/0.3.0 into develop (#150)

* Ignore dependabot.yml from the license scan
* Update third-party licenses
* Update license links
* Fix missing header
* Updates per feedback
* Switch base image to 6.0-jammy (#148)

Signed-off-by: Victor Chang <[email protected]>

* Merge main to develop (#151)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

* Bump Docker.DotNet from 3.125.10 to 3.125.11 (#147)

Bumps [Docker.DotNet](https://github.com/dotnet/Docker.DotNet) from 3.125.10 to 3.125.11.
- [Release notes](https://github.com/dotnet/Docker.DotNet/releases)
- [Commits](https://github.com/dotnet/Docker.DotNet/compare/v3.125.10...v3.125.11)

---
updated-dependencies:
- dependency-name: Docker.DotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump System.IO.Abstractions from 17.1.1 to 17.2.1 (#146)

Bumps [System.IO.Abstractions](https://github.com/TestableIO/System.IO.Abstractions) from 17.1.1 to 17.2.1.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases)
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v17.1.1...v17.2.1)

---
updated-dependencies:
- dependency-name: System.IO.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump System.IO.Abstractions.TestingHelpers from 17.1.1 to 17.2.1 (#145)

Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions) from 17.1.1 to 17.2.1.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases)
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v17.1.1...v17.2.1)

---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Release/0.3.0 (#152)

* Create dependabot.yml

* Bump actions/cache from 2.1.7 to 3.0.8 (#123)

Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.0.8.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v2.1.7...v3.0.8)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/setup-dotnet from 1 to 2 (#121)

Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 1 to 2.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v1...v2)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump anchore/scan-action from 3.2.0 to 3.2.5 (#120)

Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 3.2.0 to 3.2.5.
- [Release notes](https://github.com/anchore/scan-action/releases)
- [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/anchore/scan-action/compare/v3.2.0...v3.2.5)

---
updated-dependencies:
- dependency-name: anchore/scan-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/setup-java from 1 to 3 (#122)

* Bump actions/setup-java from 1 to 3

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 3.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v1...v3)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Chang <[email protected]>

* Bump docker/login-action from 1.12.0 to 2.0.0 (#126)

Bumps [docker/login-action](https://github.com/docker/login-action) from 1.12.0 to 2.0.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](https://github.com/docker/login-action/compare/v1.12.0...v2.0.0)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Implement FHIR server (#118)

* gh-29 Implement FHIR server
* gh-29 Unit test for FHIR service
* gh-29 Test feature for FHIR
* Update API doc & changelog

Signed-off-by: Victor Chang <[email protected]>

* Integrate MS Health Check Service (#130)

* Update health check API
* Integrate MS health check service
* Enable overriding configurations with env vars

Signed-off-by: Victor Chang <[email protected]>

* Bump codecov/codecov-action from 2 to 3 (#131)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2 to 3.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jungwinter/split from 1 to 2 (#136)

* Bump jungwinter/split from 1 to 2

Bumps [jungwinter/split](https://github.com/jungwinter/split) from 1 to 2.
- [Release notes](https://github.com/jungwinter/split/releases)
- [Commits](https://github.com/jungwinter/split/compare/v1...v2)

---
updated-dependencies:
- dependency-name: jungwinter/split
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Chang <[email protected]>

* Bump actions/download-artifact from 2 to 3 (#139)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/upload-artifact from 2.3.1 to 3.1.0 (#133)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.3.1 to 3.1.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v2.3.1...v3.1.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump crazy-max/ghaction-chocolatey from 1 to 2 (#132)

Bumps [crazy-max/ghaction-chocolatey](https://github.com/crazy-max/ghaction-chocolatey) from 1 to 2.
- [Release notes](https://github.com/crazy-max/ghaction-chocolatey/releases)
- [Changelog](https://github.com/crazy-max/ghaction-chocolatey/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crazy-max/ghaction-chocolatey/compare/v1...v2)

---
updated-dependencies:
- dependency-name: crazy-max/ghaction-chocolatey
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/metadata-action from 3.6.2 to 4.0.1 (#135)

Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 3.6.2 to 4.0.1.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md)
- [Commits](https://github.com/docker/metadata-action/compare/v3.6.2...v4.0.1)

---
updated-dependencies:
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/checkout from 2 to 3 (#143)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump gittools/actions from 0.9.11 to 0.9.13 (#142)

Bumps [gittools/actions](https://github.com/gittools/actions) from 0.9.11 to 0.9.13.
- [Release notes](https://github.com/gittools/actions/releases)
- [Commits](https://github.com/gittools/actions/compare/v0.9.11...v0.9.13)

---
updated-dependencies:
- dependency-name: gittools/actions
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/build-push-action from 2.9.0 to 3.1.1 (#140)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2.9.0 to 3.1.1.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v2.9.0...v3.1.1)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Merge Release/0.3.0 into develop (#150)

* Ignore dependabot.yml from the license scan
* Update third-party licenses
* Update license links
* Fix missing header
* Updates per feedback
* Switch base image to 6.0-jammy (#148)

Signed-off-by: Victor Chang <[email protected]>

* Merge main to develop (#151)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

* Bump Docker.DotNet from 3.125.10 to 3.125.11 (#147)

Bumps [Docker.DotNet](https://github.com/dotnet/Docker.DotNet) from 3.125.10 to 3.125.11.
- [Release notes](https://github.com/dotnet/Docker.DotNet/releases)
- [Commits](https://github.com/dotnet/Docker.DotNet/compare/v3.125.10...v3.125.11)

---
updated-dependencies:
- dependency-name: Docker.DotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump System.IO.Abstractions from 17.1.1 to 17.2.1 (#146)

Bumps [System.IO.Abstractions](https://github.com/TestableIO/System.IO.Abstractions) from 17.1.1 to 17.2.1.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases)
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v17.1.1...v17.2.1)

---
updated-dependencies:
- dependency-name: System.IO.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump System.IO.Abstractions.TestingHelpers from 17.1.1 to 17.2.1 (#145)

Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions) from 17.1.1 to 17.2.1.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases)
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v17.1.1...v17.2.1)

---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update third party licenses

Signed-off-by: Victor Chang <[email protected]>

* Fix missing header

Signed-off-by: Victor Chang <[email protected]>

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Victor Chang <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update .gitversion.yml

* Merge main to develop (#151)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

* merge develop main (#156)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

* Release/0.3.0 (#152)

* Create dependabot.yml

* Bump actions/cache from 2.1.7 to 3.0.8 (#123)

Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.0.8.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v2.1.7...v3.0.8)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/setup-dotnet from 1 to 2 (#121)

Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 1 to 2.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v1...v2)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump anchore/scan-action from 3.2.0 to 3.2.5 (#120)

Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 3.2.0 to 3.2.5.
- [Release notes](https://github.com/anchore/scan-action/releases)
- [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/anchore/scan-action/compare/v3.2.0...v3.2.5)

---
updated-dependencies:
- dependency-name: anchore/scan-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/setup-java from 1 to 3 (#122)

* Bump actions/setup-java from 1 to 3

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 3.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v1...v3)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Chang <[email protected]>

* Bump docker/login-action from 1.12.0 to 2.0.0 (#126)

Bumps [docker/login-action](https://github.com/docker/login-action) from 1.12.0 to 2.0.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](https://github.com/docker/login-action/compare/v1.12.0...v2.0.0)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Implement FHIR server (#118)

* gh-29 Implement FHIR server
* gh-29 Unit test for FHIR service
* gh-29 Test feature for FHIR
* Update API doc & changelog

Signed-off-by: Victor Chang <[email protected]>

* Integrate MS Health Check Service (#130)

* Update health check API
* Integrate MS health check service
* Enable overriding configurations with env vars

Signed-off-by: Victor Chang <[email protected]>

* Bump codecov/codecov-action from 2 to 3 (#131)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2 to 3.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jungwinter/split from 1 to 2 (#136)

* Bump jungwinter/split from 1 to 2

Bumps [jungwinter/split](https://github.com/jungwinter/split) from 1 to 2.
- [Release notes](https://github.com/jungwinter/split/releases)
- [Commits](https://github.com/jungwinter/split/compare/v1...v2)

---
updated-dependencies:
- dependency-name: jungwinter/split
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Chang <[email protected]>

* Bump actions/download-artifact from 2 to 3 (#139)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/upload-artifact from 2.3.1 to 3.1.0 (#133)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.3.1 to 3.1.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v2.3.1...v3.1.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump crazy-max/ghaction-chocolatey from 1 to 2 (#132)

Bumps [crazy-max/ghaction-chocolatey](https://github.com/crazy-max/ghaction-chocolatey) from 1 to 2.
- [Release notes](https://github.com/crazy-max/ghaction-chocolatey/releases)
- [Changelog](https://github.com/crazy-max/ghaction-chocolatey/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crazy-max/ghaction-chocolatey/compare/v1...v2)

---
updated-dependencies:
- dependency-name: crazy-max/ghaction-chocolatey
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/metadata-action from 3.6.2 to 4.0.1 (#135)

Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 3.6.2 to 4.0.1.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md)
- [Commits](https://github.com/docker/metadata-action/compare/v3.6.2...v4.0.1)

---
updated-dependencies:
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/checkout from 2 to 3 (#143)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump gittools/actions from 0.9.11 to 0.9.13 (#142)

Bumps [gittools/actions](https://github.com/gittools/actions) from 0.9.11 to 0.9.13.
- [Release notes](https://github.com/gittools/actions/releases)
- [Commits](https://github.com/gittools/actions/compare/v0.9.11...v0.9.13)

---
updated-dependencies:
- dependency-name: gittools/actions
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/build-push-action from 2.9.0 to 3.1.1 (#140)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2.9.0 to 3.1.1.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v2.9.0...v3.1.1)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Merge Release/0.3.0 into develop (#150)

* Ignore dependabot.yml from the license scan
* Update third-party licenses
* Update license links
* Fix missing header
* Updates per feedback
* Switch base image to 6.0-jammy (#148)

Signed-off-by: Victor Chang <[email protected]>

* Merge main to develop (#151)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

* Bump Docker.DotNet from 3.125.10 to 3.125.11 (#147)

Bumps [Docker.DotNet](https://github.com/dotnet/Docker.DotNet) from 3.125.10 to 3.125.11.
- [Release notes](https://github.com/dotnet/Docker.DotNet/releases)
- [Commits](https://github.com/dotnet/Docker.DotNet/compare/v3.125.10...v3.125.11)

---
updated-dependencies:
- dependency-name: Docker.DotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump System.IO.Abstractions from 17.1.1 to 17.2.1 (#146)

Bumps [System.IO.Abstractions](https://github.com/TestableIO/System.IO.Abstractions) from 17.1.1 to 17.2.1.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases)
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v17.1.1...v17.2.1)

---
updated-dependencies:
- dependency-name: System.IO.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump System.IO.Abstractions.TestingHelpers from 17.1.1 to 17.2.1 (#145)

Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions) from 17.1.1 to 17.2.1.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases)
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v17.1.1...v17.2.1)

---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update third party licenses

Signed-off-by: Victor Chang <[email protected]>

* Fix missing header

Signed-off-by: Victor Chang <[email protected]>

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Victor Chang <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update .gitversion.yml

* Merge main to develop (#151)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update fo-dicom to 5.0.3 (#164)

* Update fo-dicom to 5.0.3 and handle breaking changes
* Make validation on DICOM to JSON serialization configurable

Signed-off-by: Victor Chang <[email protected]>

* Bump anchore/scan-action from 3.2.5 to 3.3.0 (#158)

Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 3.2.5 to 3.3.0.
- [Release notes](https://github.com/anchore/scan-action/releases)
- [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/anchore/scan-action/compare/v3.2.5...v3.3.0)

---
updated-dependencies:
- dependency-name: anchore/scan-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update default SCU AET to MONAISCU (#157)

* gh-155 Chnage default SCU AET to MONAISCU
* gh-155 update packages
* Update package approvals & licenses

Signed-off-by: Victor Chang <[email protected]>

* Ability to switch temporary storage to use either memory or disk (#166)

* Ability to switch temporary storage to use either memory or disk

Signed-off-by: Victor Chang <[email protected]>

* Fix configuration name for temp data storage.

Signed-off-by: Victor Chang <[email protected]>

* Validate storage configurations based on temp storage location

Signed-off-by: Victor Chang <[email protected]>

* Log time for a payload to complete end-to-end within the service.

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

* Revert "Ability to switch temporary storage to use either memory or disk (#166)" (#167)

This reverts commit 09887b1bff6ec7d77e69e0256edc76bac1ec6a82.

* rebased changes

Signed-off-by: Neil South <[email protected]>

* update to docs

Signed-off-by: Neil South <[email protected]>

* Update ci.yml

Signed-off-by: Victor Chang <[email protected]>

* Enable homebrew

Signed-off-by: Victor Chang <[email protected]>

* Update licenses

Signed-off-by: Victor Chang <[email protected]>

* Implement FHIR server (#118)

* gh-29 Implement FHIR server
* gh-29 Unit test for FHIR service
* gh-29 Test feature for FHIR
* Update API doc & changelog

Signed-off-by: Victor Chang <[email protected]>

* Integrate MS Health Check Service (#130)

* Update health check API
* Integrate MS health check service
* Enable overriding configurations with env vars

Signed-off-by: Victor Chang <[email protected]>

* Merge main to develop (#151)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

* Merge main to develop (#151)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

* merge develop main (#156)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

* Release/0.3.0 (#152)

* Create dependabot.yml

* Bump actions/cache from 2.1.7 to 3.0.8 (#123)

Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.0.8.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v2.1.7...v3.0.8)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/setup-dotnet from 1 to 2 (#121)

Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 1 to 2.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v1...v2)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump anchore/scan-action from 3.2.0 to 3.2.5 (#120)

Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 3.2.0 to 3.2.5.
- [Release notes](https://github.com/anchore/scan-action/releases)
- [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/anchore/scan-action/compare/v3.2.0...v3.2.5)

---
updated-dependencies:
- dependency-name: anchore/scan-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/setup-java from 1 to 3 (#122)

* Bump actions/setup-java from 1 to 3

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 3.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v1...v3)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Chang <[email protected]>

* Bump docker/login-action from 1.12.0 to 2.0.0 (#126)

Bumps [docker/login-action](https://github.com/docker/login-action) from 1.12.0 to 2.0.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](https://github.com/docker/login-action/compare/v1.12.0...v2.0.0)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Implement FHIR server (#118)

* gh-29 Implement FHIR server
* gh-29 Unit test for FHIR service
* gh-29 Test feature for FHIR
* Update API doc & changelog

Signed-off-by: Victor Chang <[email protected]>

* Integrate MS Health Check Service (#130)

* Update health check API
* Integrate MS health check service
* Enable overriding configurations with env vars

Signed-off-by: Victor Chang <[email protected]>

* Bump codecov/codecov-action from 2 to 3 (#131)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2 to 3.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jungwinter/split from 1 to 2 (#136)

* Bump jungwinter/split from 1 to 2

Bumps [jungwinter/split](https://github.com/jungwinter/split) from 1 to 2.
- [Release notes](https://github.com/jungwinter/split/releases)
- [Commits](https://github.com/jungwinter/split/compare/v1...v2)

---
updated-dependencies:
- dependency-name: jungwinter/split
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Chang <[email protected]>

* Bump actions/download-artifact from 2 to 3 (#139)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/upload-artifact from 2.3.1 to 3.1.0 (#133)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.3.1 to 3.1.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v2.3.1...v3.1.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump crazy-max/ghaction-chocolatey from 1 to 2 (#132)

Bumps [crazy-max/ghaction-chocolatey](https://github.com/crazy-max/ghaction-chocolatey) from 1 to 2.
- [Release notes](https://github.com/crazy-max/ghaction-chocolatey/releases)
- [Changelog](https://github.com/crazy-max/ghaction-chocolatey/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crazy-max/ghaction-chocolatey/compare/v1...v2)

---
updated-dependencies:
- dependency-name: crazy-max/ghaction-chocolatey
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/metadata-action from 3.6.2 to 4.0.1 (#135)

Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 3.6.2 to 4.0.1.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md)
- [Commits](https://github.com/docker/metadata-action/compare/v3.6.2...v4.0.1)

---
updated-dependencies:
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/checkout from 2 to 3 (#143)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump gittools/actions from 0.9.11 to 0.9.13 (#142)

Bumps [gittools/actions](https://github.com/gittools/actions) from 0.9.11 to 0.9.13.
- [Release notes](https://github.com/gittools/actions/releases)
- [Commits](https://github.com/gittools/actions/compare/v0.9.11...v0.9.13)

---
updated-dependencies:
- dependency-name: gittools/actions
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/build-push-action from 2.9.0 to 3.1.1 (#140)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2.9.0 to 3.1.1.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v2.9.0...v3.1.1)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Merge Release/0.3.0 into develop (#150)

* Ignore dependabot.yml from the license scan
* Update third-party licenses
* Update license links
* Fix missing header
* Updates per feedback
* Switch base image to 6.0-jammy (#148)

Signed-off-by: Victor Chang <[email protected]>

* Merge main to develop (#151)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

* Bump Docker.DotNet from 3.125.10 to 3.125.11 (#147)

Bumps [Docker.DotNet](https://github.com/dotnet/Docker.DotNet) from 3.125.10 to 3.125.11.
- [Release notes](https://github.com/dotnet/Docker.DotNet/releases)
- [Commits](https://github.com/dotnet/Docker.DotNet/compare/v3.125.10...v3.125.11)

---
updated-dependencies:
- dependency-name: Docker.DotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump System.IO.Abstractions from 17.1.1 to 17.2.1 (#146)

Bumps [System.IO.Abstractions](https://github.com/TestableIO/System.IO.Abstractions) from 17.1.1 to 17.2.1.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases)
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v17.1.1...v17.2.1)

---
updated-dependencies:
- dependency-name: System.IO.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump System.IO.Abstractions.TestingHelpers from 17.1.1 to 17.2.1 (#145)

Bumps [System.IO.Abstractions.TestingHelpers](https://github.com/TestableIO/System.IO.Abstractions) from 17.1.1 to 17.2.1.
- [Release notes](https://github.com/TestableIO/System.IO.Abstractions/releases)
- [Commits](https://github.com/TestableIO/System.IO.Abstractions/compare/v17.1.1...v17.2.1)

---
updated-dependencies:
- dependency-name: System.IO.Abstractions.TestingHelpers
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update third party licenses

Signed-off-by: Victor Chang <[email protected]>

* Fix missing header

Signed-off-by: Victor Chang <[email protected]>

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Victor Chang <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update .gitversion.yml

* Merge main to develop (#151)

* Update for release/0.2.0

* Release 0.3.0 (#144)

* Implement FHIR server (#118)
* Integrate MS Health Check Service (#130)

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>

Signed-off-by: Victor Chang <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Revert "Ability to switch temporary storage to use either memory or disk (#166)" (#167)

This reverts commit 09887b1bff6ec7d77e69e0256edc76bac1ec6a82.

* rebased changes (#170)

Signed-off-by: Neil South <[email protected]>

Signed-off-by: Neil South <[email protected]>

* Ability to switch temporary storage to use either memory or disk (#169)

* Ability to switch temporary storage to use either memory or disk
* Fix configuration name for temp data storage.
* Validate storage configurations based on temp storage location
* Log time for a payload to complete end-to-end wi…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature A new feature
Projects
1 participant