-
Notifications
You must be signed in to change notification settings - Fork 175
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
Update to use Shared AuthZ code #631
Conversation
nuget.config
Outdated
@@ -9,4 +9,4 @@ | |||
<disabledPackageSources> | |||
<clear /> | |||
</disabledPackageSources> | |||
</configuration> | |||
</configuration> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I have been typically adding newlines to each file I touch, and I think either VS or VS Code is also of the same persuasion. I think this is an old POSIX behavior which didn't process text that didn't end with a newline lol
} | ||
} | ||
else | ||
{ | ||
services.AddSingleton<IDicomAuthorizationService, DisabledDicomAuthorizationService>(); | ||
services.AddSingleton<IAuthorizationService<DataActions>, DisabledAuthorizationService<DataActions>>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, the existing versions of the shared packages have these types?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, these were abstracted away.
@@ -13,10 +13,16 @@ namespace Microsoft.Health.Dicom.Core.Features.Security | |||
public enum DataActions : ulong | |||
#pragma warning restore CA1028 // Enum Storage should be Int32 | |||
{ | |||
[EnumMember(Value = "none")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These values are the defaults, aren't they? Although I suppose casing is property of some serializers settings, as most things in .NET will be PascalCase
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I see where this comes into play in DicomRoleLoader.cs. We could also assume the name of the action is the name of the value unless EnumMember
is explicitly annotated, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The casing matters, but generally yes they're basically the same. The actual value that's allowed in the json is from the roles.schema.json
.
{ | ||
EnsureArg.IsNotNull(roleContract, nameof(roleContract)); | ||
|
||
DataActions dataActions = roleContract.DataActions.Aggregate(default(DataActions), (acc, a) => acc | ToEnum(a)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: DataActions.None
may be clearer as the initial aggregate state instead of default(DataActions)
* Add Basic RBAC Support (#511) * Deduping approvals to search for unique releases (#548) * Deduping approvals to search for unique releases Co-authored-by: snehabandla <[email protected]> * Bump SdkPackageVersion from 3.1.11 to 5.0.0 (#545) Bumps `SdkPackageVersion` from 3.1.11 to 5.0.0. Updates `Microsoft.AspNetCore.TestHost` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.Extensions.Http` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.AspNetCore.Authentication.JwtBearer` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.0 to 5.0.2 (#544) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.0 to 5.0.2. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](dotnet/aspnetcore@v5.0.0...v5.0.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add setup AAD test environment to CI. (#554) * Add authorization (RBAC) documentation (#550) * Prevent Build Failures due to False NuGet Security Alert (#568) - Set `skipNugetSecurityAnalysis` to `true` and avoid unnecessary security scan * [Dicom-Cast] Update retry policy wait time (#561) * Updating healthcare shared components package version. (#569) Co-authored-by: snehabandla <[email protected]> * Update c# tutorial with nuget information (#555) * Bump Microsoft.Extensions.Configuration.AzureKeyVault (#557) Bumps [Microsoft.Extensions.Configuration.AzureKeyVault](https://github.com/aspnet/Extensions) from 3.1.11 to 3.1.12. - [Release notes](https://github.com/aspnet/Extensions/releases) - [Commits](https://github.com/aspnet/Extensions/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.2 to 5.0.3 (#558) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.2 to 5.0.3. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Azure.Services.AppAuthentication from 1.6.0 to 1.6.1 (#559) Bumps [Microsoft.Azure.Services.AppAuthentication](https://github.com/Azure/azure-sdk-for-net) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/Azure/azure-sdk-for-net/releases) - [Commits](Azure/azure-sdk-for-net@Microsoft.Azure.Services.AppAuthentication_1.6.0...Microsoft.Azure.Services.AppAuthentication_1.6.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 (#570) * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 Bumps `HealthcareSharedPackageVersion` from 1.1.5 to 1.1.7. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Updates `Microsoft.Health.Blob` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Updates `Microsoft.Health.Abstractions` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Updates `Microsoft.Health.Core` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Updates `Microsoft.Health.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Updates `Microsoft.Health.Client` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.5...1.1.7) Signed-off-by: dependabot[bot] <[email protected]> * - Updating code to due build-breaking change in HealthcareSharedPackageVersion from 1.1.7 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Shawn Martelock <[email protected]> * Migrate to .NET Analyzers (#574) Add .NET analyzers from .NET Core SDK and address the suggestions/warnings/errors brought up by both the analyzers and our own .editorconfig file. +semver: major * [Dicom-Cast] Update Arm templates that deploy Dicom, Dicom-Cast, and FHIR (#587) * Update Readme (#586) Clarify that we will not support versioning and that this is for testing (not prod) * Bump net 5 0 103 (#573) * Bump dotnet/aspnet in /build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/aspnet in /converter/dicom-cast/build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /converter/dicom-cast/build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * update global.json * bump deployment json Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add CodeQL GitHub Action (#589) Add CodeQL GitHub action that analyzes our C# and JS code * Add Security Tasks to PR and CI Pipelines (#590) - Add analyze.yml which contains a few 1ES security tasks to ensure secure code quality - Incorporate analyze.yml into both PR and CI * Update Get-AzKeyValueSecret due to breaking change in latest powershell (#596) * Bump HealthcareSharedPackageVersion from 1.1.7 to 1.1.9 (#580) Bumps `HealthcareSharedPackageVersion` from 1.1.7 to 1.1.9. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Updates `Microsoft.Health.Blob` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Updates `Microsoft.Health.Abstractions` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Updates `Microsoft.Health.Core` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Updates `Microsoft.Health.Api` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Updates `Microsoft.Health.SqlServer` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Updates `Microsoft.Health.SqlServer.Api` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Updates `Microsoft.Health.Client` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.7...1.1.9) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.NET.Test.Sdk from 16.8.3 to 16.9.1 (#582) Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.8.3 to 16.9.1. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](microsoft/vstest@v16.8.3...v16.9.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump HealthcareSharedPackageVersion from 1.1.9 to 1.2.2 (#598) * Bump HealthcareSharedPackageVersion from 1.1.9 to 1.2.2 Bumps `HealthcareSharedPackageVersion` from 1.1.9 to 1.2.2. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Updates `Microsoft.Health.Blob` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Updates `Microsoft.Health.Abstractions` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Updates `Microsoft.Health.Core` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Updates `Microsoft.Health.Api` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Updates `Microsoft.Health.SqlServer` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Updates `Microsoft.Health.SqlServer.Api` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Updates `Microsoft.Health.Client` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.1.9...1.2.2) Signed-off-by: dependabot[bot] <[email protected]> * Updates to standard packages. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: brandonpollett <[email protected]> * Bump HealthcareSharedPackageVersion from 1.2.2 to 1.2.3 (#608) Bumps `HealthcareSharedPackageVersion` from 1.2.2 to 1.2.3. Updates `Microsoft.Health.Development.IdentityProvider` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Updates `Microsoft.Health.Blob` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Updates `Microsoft.Health.Abstractions` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Updates `Microsoft.Health.Core` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Updates `Microsoft.Health.Api` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Updates `Microsoft.Health.SqlServer` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Updates `Microsoft.Health.SqlServer.Api` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Updates `Microsoft.Health.Client` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.2...1.2.3) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Refactor Project Files (#606) - Update project dependencies - Ensure all direct dependencies are listed explicitly - Bump versions - Add package descriptions - Fix CI build warnings from SourceLink concerning missing submodules * Bump HealthcareSharedPackageVersion from 1.2.3 to 1.2.8 (#616) Bumps `HealthcareSharedPackageVersion` from 1.2.3 to 1.2.8. Updates `Microsoft.Health.SqlServer` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.3...1.2.8) Updates `Microsoft.Health.Api` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.3...1.2.8) Updates `Microsoft.Health.Client` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.3...1.2.8) Updates `Microsoft.Health.Blob` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.3...1.2.8) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.3...1.2.8) Updates `Microsoft.Health.Abstractions` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.3...1.2.8) Updates `Microsoft.Health.Core` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.3...1.2.8) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.3...1.2.8) Updates `Microsoft.Health.SqlServer.Api` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](microsoft/healthcare-shared-components@1.2.3...1.2.8) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Configuration.AzureKeyVault (#617) * Bump Azure.Core from 1.9.0 to 1.10.0 (#619) * Add DICOM Cast NuGet to Dependabot (#615) * Bump Microsoft.Azure.KeyVault from 2.3.2 to 3.0.5 (#618) * Bump NSubstitute from 4.2.1 to 4.2.2 in /converter/dicom-cast (#624) * Update Microsoft.AspNetCore.Http due to Vulnerability (#633) * Fix Build Warnings for Newer .NET SDK (#632) - Update .NET SDK - Address new analyzer warnings * Bump Microsoft.Extensions.Configuration.AzureKeyVault (#628) * Add BlobUploadOptions to Blob UploadAsync, Fix QIDO fuzzy matching (#639) * Add blob uploadOptions to UploadAsync * Pull latest health-shared nugets and upgrade Ensure.That to 10.0.0 also used in the shared libraries * Update Ensure package * Update Ensure * Remove spliting of words based on space. SQL parser already does that https://docs.microsoft.com/en-us/sql/relational-databases/search/query-with-full-text-search?view=sql-server-ver15 * Bump Microsoft.IO.RecyclableMemoryStream from 1.4.0 to 1.4.1 (#640) * Bump Microsoft.IdentityModel.Tokens from 6.8.0 to 6.9.0 (#642) * Bump System.IdentityModel.Tokens.Jwt from 6.8.0 to 6.9.0 (#643) * Bump IdentityServer4.Storage from 4.1.1 to 4.1.2 (#648) * Bump Microsoft.IdentityModel.Clients.ActiveDirectory from 5.2.8 to 5.2.9 (#649) * Bump IdentityServer4 from 4.1.1 to 4.1.2 (#650) * Bump Microsoft.IdentityModel.Clients.ActiveDirectory (#651) * allow test packages to be packaged and published (#654) * allow test packages to be packaged and published * allow packing of tests.common used by E2E tests * Disable Flaky tests in RetrieveTransactionResourceTests.Study.cs (#653) * Fix analyzeSecurity variable (#658) +semver: skip * Update to use Shared AuthZ code (#631) * Bump Azure.Core from 1.10.0 to 1.11.0 (#660) * Refactor GitVersion Usage (#663) - Update GitVersion extension - Refactor config * Fix build and unit test failurs Co-authored-by: brandonpollett <[email protected]> Co-authored-by: snehabandla <[email protected]> Co-authored-by: snehabandla <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Will Sugarman <[email protected]> Co-authored-by: Abdullah Islam <[email protected]> Co-authored-by: Shawn Martelock <[email protected]> Co-authored-by: Moira Dillon <[email protected]> Co-authored-by: Nick Maliwacki <[email protected]> Co-authored-by: Smitha Saligrama <[email protected]>
* Sql Implementation for Add custom tag (#526) Implement SQL part for Add Custom Tag * Fix Build failure and remove useless methods Fix Build failure and remove useless methods * Revert "Fix Build failure and remove useless methods" This reverts commit 38188880aea42290815189c508826a3a37ee692d. * Fix Build failure and remove useless methods (#551) Fix Build failure and remove useless methods * Merge latest change from main to custom tag feature branch (#556) Merge latest change from main to custom tag feature branch * Add Controller/Handler/Service for deleting custom tag (#552) Add controller, handler and service for deleting custom tag * Adding in tables for CustomTag (#523) * Adding in tables for CustomTag Co-authored-by: snehabandla <[email protected]> * Merge from main to feature branch (2/16/2021) (#571) Merge from main to feature branch (2/16/2021) * Implement SQLStore for DeleteCustomTag (#560) Implement SQLStore for DeleteCustomTag * Add Integration Tests for Add and Remove Custom Tag (#572) Add Integration Tests for Add and Remove Custom Tag * Adding in SQL/Store changes for Get Custom Tag (#542) * Adding stored procedure Co-authored-by: snehabandla <[email protected]> * Add API to DicomWebClientclient as well as End to End Tests (#578) Add API to DicomWebClientclient as well as End to End Tests * Fix bug which block service to start (#585) Fix bug which block service to start * TagKey should be BIGINT (#588) @TagKey is a variable to save tagKey, so that it should be as same type as TagKey. fix the typo. * Add tests to verify SQL schema upgrade (#577) Add tests to verify SQL schema upgrade * Fix and Enable CustomTagStoreTests (#593) Fix and Enable CustomTagStoreTests * Merge from main branch (#594) * Add Basic RBAC Support (#511) * Deduping approvals to search for unique releases (#548) * Deduping approvals to search for unique releases Co-authored-by: snehabandla <[email protected]> * Bump SdkPackageVersion from 3.1.11 to 5.0.0 (#545) Bumps `SdkPackageVersion` from 3.1.11 to 5.0.0. Updates `Microsoft.AspNetCore.TestHost` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.Extensions.Http` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.AspNetCore.Authentication.JwtBearer` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.0 to 5.0.2 (#544) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.0 to 5.0.2. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/compare/v5.0.0...v5.0.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add setup AAD test environment to CI. (#554) * Add authorization (RBAC) documentation (#550) * Prevent Build Failures due to False NuGet Security Alert (#568) - Set `skipNugetSecurityAnalysis` to `true` and avoid unnecessary security scan * [Dicom-Cast] Update retry policy wait time (#561) * Updating healthcare shared components package version. (#569) Co-authored-by: snehabandla <[email protected]> * Update c# tutorial with nuget information (#555) * Bump Microsoft.Extensions.Configuration.AzureKeyVault (#557) Bumps [Microsoft.Extensions.Configuration.AzureKeyVault](https://github.com/aspnet/Extensions) from 3.1.11 to 3.1.12. - [Release notes](https://github.com/aspnet/Extensions/releases) - [Commits](https://github.com/aspnet/Extensions/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.2 to 5.0.3 (#558) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.2 to 5.0.3. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Azure.Services.AppAuthentication from 1.6.0 to 1.6.1 (#559) Bumps [Microsoft.Azure.Services.AppAuthentication](https://github.com/Azure/azure-sdk-for-net) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/Azure/azure-sdk-for-net/releases) - [Commits](https://github.com/Azure/azure-sdk-for-net/compare/Microsoft.Azure.Services.AppAuthentication_1.6.0...Microsoft.Azure.Services.AppAuthentication_1.6.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 (#570) * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 Bumps `HealthcareSharedPackageVersion` from 1.1.5 to 1.1.7. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Blob` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Abstractions` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Core` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Client` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Signed-off-by: dependabot[bot] <[email protected]> * - Updating code to due build-breaking change in HealthcareSharedPackageVersion from 1.1.7 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Shawn Martelock <[email protected]> * Migrate to .NET Analyzers (#574) Add .NET analyzers from .NET Core SDK and address the suggestions/warnings/errors brought up by both the analyzers and our own .editorconfig file. +semver: major * [Dicom-Cast] Update Arm templates that deploy Dicom, Dicom-Cast, and FHIR (#587) * Update Readme (#586) Clarify that we will not support versioning and that this is for testing (not prod) * Bump net 5 0 103 (#573) * Bump dotnet/aspnet in /build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/aspnet in /converter/dicom-cast/build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /converter/dicom-cast/build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * update global.json * bump deployment json Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add CodeQL GitHub Action (#589) Add CodeQL GitHub action that analyzes our C# and JS code * Add Security Tasks to PR and CI Pipelines (#590) - Add analyze.yml which contains a few 1ES security tasks to ensure secure code quality - Incorporate analyze.yml into both PR and CI * Fix Build failures * Update Get-AzKeyValueSecret due to breaking change in latest powershell (#596) Co-authored-by: brandonpollett <[email protected]> Co-authored-by: snehabandla <[email protected]> Co-authored-by: snehabandla <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Will Sugarman <[email protected]> Co-authored-by: Abdullah Islam <[email protected]> Co-authored-by: Shawn Martelock <[email protected]> Co-authored-by: Moira Dillon <[email protected]> Co-authored-by: Nick Maliwacki <[email protected]> * Fix bugs in Get/List Custom Tags (#597) Fix bugs in Get/List CustomTags * Merge from main (3/3/2021) (#604) * Add Basic RBAC Support (#511) * Deduping approvals to search for unique releases (#548) * Deduping approvals to search for unique releases Co-authored-by: snehabandla <[email protected]> * Bump SdkPackageVersion from 3.1.11 to 5.0.0 (#545) Bumps `SdkPackageVersion` from 3.1.11 to 5.0.0. Updates `Microsoft.AspNetCore.TestHost` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.Extensions.Http` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.AspNetCore.Authentication.JwtBearer` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.0 to 5.0.2 (#544) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.0 to 5.0.2. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/compare/v5.0.0...v5.0.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add setup AAD test environment to CI. (#554) * Add authorization (RBAC) documentation (#550) * Prevent Build Failures due to False NuGet Security Alert (#568) - Set `skipNugetSecurityAnalysis` to `true` and avoid unnecessary security scan * [Dicom-Cast] Update retry policy wait time (#561) * Updating healthcare shared components package version. (#569) Co-authored-by: snehabandla <[email protected]> * Update c# tutorial with nuget information (#555) * Bump Microsoft.Extensions.Configuration.AzureKeyVault (#557) Bumps [Microsoft.Extensions.Configuration.AzureKeyVault](https://github.com/aspnet/Extensions) from 3.1.11 to 3.1.12. - [Release notes](https://github.com/aspnet/Extensions/releases) - [Commits](https://github.com/aspnet/Extensions/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.2 to 5.0.3 (#558) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.2 to 5.0.3. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Azure.Services.AppAuthentication from 1.6.0 to 1.6.1 (#559) Bumps [Microsoft.Azure.Services.AppAuthentication](https://github.com/Azure/azure-sdk-for-net) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/Azure/azure-sdk-for-net/releases) - [Commits](https://github.com/Azure/azure-sdk-for-net/compare/Microsoft.Azure.Services.AppAuthentication_1.6.0...Microsoft.Azure.Services.AppAuthentication_1.6.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 (#570) * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 Bumps `HealthcareSharedPackageVersion` from 1.1.5 to 1.1.7. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Blob` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Abstractions` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Core` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Client` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Signed-off-by: dependabot[bot] <[email protected]> * - Updating code to due build-breaking change in HealthcareSharedPackageVersion from 1.1.7 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Shawn Martelock <[email protected]> * Migrate to .NET Analyzers (#574) Add .NET analyzers from .NET Core SDK and address the suggestions/warnings/errors brought up by both the analyzers and our own .editorconfig file. +semver: major * [Dicom-Cast] Update Arm templates that deploy Dicom, Dicom-Cast, and FHIR (#587) * Update Readme (#586) Clarify that we will not support versioning and that this is for testing (not prod) * Bump net 5 0 103 (#573) * Bump dotnet/aspnet in /build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/aspnet in /converter/dicom-cast/build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /converter/dicom-cast/build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * update global.json * bump deployment json Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add CodeQL GitHub Action (#589) Add CodeQL GitHub action that analyzes our C# and JS code * Add Security Tasks to PR and CI Pipelines (#590) - Add analyze.yml which contains a few 1ES security tasks to ensure secure code quality - Incorporate analyze.yml into both PR and CI * Update Get-AzKeyValueSecret due to breaking change in latest powershell (#596) * Bump HealthcareSharedPackageVersion from 1.1.7 to 1.1.9 (#580) Bumps `HealthcareSharedPackageVersion` from 1.1.7 to 1.1.9. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Blob` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Abstractions` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Core` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Api` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.SqlServer` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.SqlServer.Api` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Client` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.NET.Test.Sdk from 16.8.3 to 16.9.1 (#582) Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.8.3 to 16.9.1. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](https://github.com/microsoft/vstest/compare/v16.8.3...v16.9.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump HealthcareSharedPackageVersion from 1.1.9 to 1.2.2 (#598) * Bump HealthcareSharedPackageVersion from 1.1.9 to 1.2.2 Bumps `HealthcareSharedPackageVersion` from 1.1.9 to 1.2.2. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Blob` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Abstractions` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Core` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Api` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.SqlServer` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.SqlServer.Api` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Client` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Signed-off-by: dependabot[bot] <[email protected]> * Updates to standard packages. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: brandonpollett <[email protected]> * Fix Build Failure Co-authored-by: brandonpollett <[email protected]> Co-authored-by: snehabandla <[email protected]> Co-authored-by: snehabandla <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Will Sugarman <[email protected]> Co-authored-by: Abdullah Islam <[email protected]> Co-authored-by: Shawn Martelock <[email protected]> Co-authored-by: Moira Dillon <[email protected]> Co-authored-by: Nick Maliwacki <[email protected]> * Handle custom tags in a QIDO request (#567) * Add handling to enable searching using custom tags Co-authored-by: snehabandla <[email protected]> * Change TagKey column from BigInt to Int. (#609) Change TagKey column from BigInt to Int * Support Validating CustomTag for StoreService (#605) Support Validating CustomTag for StoreService * Merge from main (3/8/2021) (#613) * Add Basic RBAC Support (#511) * Deduping approvals to search for unique releases (#548) * Deduping approvals to search for unique releases Co-authored-by: snehabandla <[email protected]> * Bump SdkPackageVersion from 3.1.11 to 5.0.0 (#545) Bumps `SdkPackageVersion` from 3.1.11 to 5.0.0. Updates `Microsoft.AspNetCore.TestHost` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.Extensions.Http` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.AspNetCore.Authentication.JwtBearer` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.0 to 5.0.2 (#544) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.0 to 5.0.2. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/compare/v5.0.0...v5.0.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add setup AAD test environment to CI. (#554) * Add authorization (RBAC) documentation (#550) * Prevent Build Failures due to False NuGet Security Alert (#568) - Set `skipNugetSecurityAnalysis` to `true` and avoid unnecessary security scan * [Dicom-Cast] Update retry policy wait time (#561) * Updating healthcare shared components package version. (#569) Co-authored-by: snehabandla <[email protected]> * Update c# tutorial with nuget information (#555) * Bump Microsoft.Extensions.Configuration.AzureKeyVault (#557) Bumps [Microsoft.Extensions.Configuration.AzureKeyVault](https://github.com/aspnet/Extensions) from 3.1.11 to 3.1.12. - [Release notes](https://github.com/aspnet/Extensions/releases) - [Commits](https://github.com/aspnet/Extensions/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.2 to 5.0.3 (#558) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.2 to 5.0.3. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Azure.Services.AppAuthentication from 1.6.0 to 1.6.1 (#559) Bumps [Microsoft.Azure.Services.AppAuthentication](https://github.com/Azure/azure-sdk-for-net) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/Azure/azure-sdk-for-net/releases) - [Commits](https://github.com/Azure/azure-sdk-for-net/compare/Microsoft.Azure.Services.AppAuthentication_1.6.0...Microsoft.Azure.Services.AppAuthentication_1.6.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 (#570) * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 Bumps `HealthcareSharedPackageVersion` from 1.1.5 to 1.1.7. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Blob` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Abstractions` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Core` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Client` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Signed-off-by: dependabot[bot] <[email protected]> * - Updating code to due build-breaking change in HealthcareSharedPackageVersion from 1.1.7 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Shawn Martelock <[email protected]> * Migrate to .NET Analyzers (#574) Add .NET analyzers from .NET Core SDK and address the suggestions/warnings/errors brought up by both the analyzers and our own .editorconfig file. +semver: major * [Dicom-Cast] Update Arm templates that deploy Dicom, Dicom-Cast, and FHIR (#587) * Update Readme (#586) Clarify that we will not support versioning and that this is for testing (not prod) * Bump net 5 0 103 (#573) * Bump dotnet/aspnet in /build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/aspnet in /converter/dicom-cast/build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /converter/dicom-cast/build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * update global.json * bump deployment json Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add CodeQL GitHub Action (#589) Add CodeQL GitHub action that analyzes our C# and JS code * Add Security Tasks to PR and CI Pipelines (#590) - Add analyze.yml which contains a few 1ES security tasks to ensure secure code quality - Incorporate analyze.yml into both PR and CI * Update Get-AzKeyValueSecret due to breaking change in latest powershell (#596) * Bump HealthcareSharedPackageVersion from 1.1.7 to 1.1.9 (#580) Bumps `HealthcareSharedPackageVersion` from 1.1.7 to 1.1.9. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Blob` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Abstractions` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Core` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Api` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.SqlServer` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.SqlServer.Api` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Client` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.NET.Test.Sdk from 16.8.3 to 16.9.1 (#582) Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.8.3 to 16.9.1. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](https://github.com/microsoft/vstest/compare/v16.8.3...v16.9.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump HealthcareSharedPackageVersion from 1.1.9 to 1.2.2 (#598) * Bump HealthcareSharedPackageVersion from 1.1.9 to 1.2.2 Bumps `HealthcareSharedPackageVersion` from 1.1.9 to 1.2.2. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Blob` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Abstractions` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Core` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Api` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.SqlServer` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.SqlServer.Api` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Client` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Signed-off-by: dependabot[bot] <[email protected]> * Updates to standard packages. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: brandonpollett <[email protected]> * Bump HealthcareSharedPackageVersion from 1.2.2 to 1.2.3 (#608) Bumps `HealthcareSharedPackageVersion` from 1.2.2 to 1.2.3. Updates `Microsoft.Health.Development.IdentityProvider` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Blob` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Abstractions` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Core` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Api` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.SqlServer` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.SqlServer.Api` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Client` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix Merge Failure Co-authored-by: brandonpollett <[email protected]> Co-authored-by: snehabandla <[email protected]> Co-authored-by: snehabandla <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Will Sugarman <[email protected]> Co-authored-by: Abdullah Islam <[email protected]> Co-authored-by: Shawn Martelock <[email protected]> Co-authored-by: Moira Dillon <[email protected]> Co-authored-by: Nick Maliwacki <[email protected]> * Fixing syntax bug (#635) Co-authored-by: snehabandla <[email protected]> * SQL procedure changes for delete (#636) Co-authored-by: snehabandla <[email protected]> * Implement SQL for STOW (#612) * Implement SQL part for STOW * Refactor SqlIndeDataStore to better support multiple versions * Change TagStatus to Deindexing when start deleting custom tag (#610) Change tagStatus to Deindexing when start deleting custom tag * Add PrivateCreator in table CustomTag (#644) Add PrivateCreator in table CustomTag * Enable End to end tests for ExtendQueryTag (Locally) (#646) Enable End to end tests for ExtendQueryTag (Locally) * Remove support to AT, DT, TM (#652) Remove support to AT, DT, TM * Update AddCustomTag API to support PrivateCreator (#647) 1. Update AddCustomTag API to support PrivateCreator 2. Cleanup CustomTagEntry by moving functionalities required by testing to Test library * Update STOW to support privateCreator (#657) 1. Remove DicomDatasetExtensions.GetMatchingDicomTags 2. IndexTag consider PrivateCreator when parse into DicomTag 3. Update AddInstanceTableValuePrametersBuilder * Rename Custom Tags -> Extended Query Tags (#665) * Rename custom tags -> extended query tags * Renaming Index Tags -> Query Tags Co-authored-by: snehabandla <[email protected]> * Sync from Main branch (3/23) (#666) * Add Basic RBAC Support (#511) * Deduping approvals to search for unique releases (#548) * Deduping approvals to search for unique releases Co-authored-by: snehabandla <[email protected]> * Bump SdkPackageVersion from 3.1.11 to 5.0.0 (#545) Bumps `SdkPackageVersion` from 3.1.11 to 5.0.0. Updates `Microsoft.AspNetCore.TestHost` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.Extensions.Http` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Updates `Microsoft.AspNetCore.Authentication.JwtBearer` from 3.1.11 to 5.0.0 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v5.0.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.0 to 5.0.2 (#544) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.0 to 5.0.2. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/compare/v5.0.0...v5.0.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add setup AAD test environment to CI. (#554) * Add authorization (RBAC) documentation (#550) * Prevent Build Failures due to False NuGet Security Alert (#568) - Set `skipNugetSecurityAnalysis` to `true` and avoid unnecessary security scan * [Dicom-Cast] Update retry policy wait time (#561) * Updating healthcare shared components package version. (#569) Co-authored-by: snehabandla <[email protected]> * Update c# tutorial with nuget information (#555) * Bump Microsoft.Extensions.Configuration.AzureKeyVault (#557) Bumps [Microsoft.Extensions.Configuration.AzureKeyVault](https://github.com/aspnet/Extensions) from 3.1.11 to 3.1.12. - [Release notes](https://github.com/aspnet/Extensions/releases) - [Commits](https://github.com/aspnet/Extensions/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Diagnostics.HealthChecks from 5.0.2 to 5.0.3 (#558) Bumps [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 5.0.2 to 5.0.3. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Azure.Services.AppAuthentication from 1.6.0 to 1.6.1 (#559) Bumps [Microsoft.Azure.Services.AppAuthentication](https://github.com/Azure/azure-sdk-for-net) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/Azure/azure-sdk-for-net/releases) - [Commits](https://github.com/Azure/azure-sdk-for-net/compare/Microsoft.Azure.Services.AppAuthentication_1.6.0...Microsoft.Azure.Services.AppAuthentication_1.6.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 (#570) * Bump HealthcareSharedPackageVersion from 1.1.5 to 1.1.7 Bumps `HealthcareSharedPackageVersion` from 1.1.5 to 1.1.7. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Blob` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Abstractions` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Core` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.SqlServer.Api` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Updates `Microsoft.Health.Client` from 1.1.5 to 1.1.7 - [Release notes](https://github.com/microsoft/healthcare-shared-components/releases) - [Commits](https://github.com/microsoft/healthcare-shared-components/compare/1.1.5...1.1.7) Signed-off-by: dependabot[bot] <[email protected]> * - Updating code to due build-breaking change in HealthcareSharedPackageVersion from 1.1.7 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Shawn Martelock <[email protected]> * Migrate to .NET Analyzers (#574) Add .NET analyzers from .NET Core SDK and address the suggestions/warnings/errors brought up by both the analyzers and our own .editorconfig file. +semver: major * [Dicom-Cast] Update Arm templates that deploy Dicom, Dicom-Cast, and FHIR (#587) * Update Readme (#586) Clarify that we will not support versioning and that this is for testing (not prod) * Bump net 5 0 103 (#573) * Bump dotnet/aspnet in /build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/aspnet in /converter/dicom-cast/build/docker Bumps dotnet/aspnet from 5.0.2-alpine3.12 to 5.0.3-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * Bump dotnet/sdk in /converter/dicom-cast/build/docker Bumps dotnet/sdk from 5.0.102-1-alpine3.12 to 5.0.103-alpine3.12. Signed-off-by: dependabot[bot] <[email protected]> * update global.json * bump deployment json Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add CodeQL GitHub Action (#589) Add CodeQL GitHub action that analyzes our C# and JS code * Add Security Tasks to PR and CI Pipelines (#590) - Add analyze.yml which contains a few 1ES security tasks to ensure secure code quality - Incorporate analyze.yml into both PR and CI * Update Get-AzKeyValueSecret due to breaking change in latest powershell (#596) * Bump HealthcareSharedPackageVersion from 1.1.7 to 1.1.9 (#580) Bumps `HealthcareSharedPackageVersion` from 1.1.7 to 1.1.9. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Blob` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Abstractions` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Core` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Api` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.SqlServer` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.SqlServer.Api` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Updates `Microsoft.Health.Client` from 1.1.7 to 1.1.9 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.7...1.1.9) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.NET.Test.Sdk from 16.8.3 to 16.9.1 (#582) Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.8.3 to 16.9.1. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](https://github.com/microsoft/vstest/compare/v16.8.3...v16.9.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump HealthcareSharedPackageVersion from 1.1.9 to 1.2.2 (#598) * Bump HealthcareSharedPackageVersion from 1.1.9 to 1.2.2 Bumps `HealthcareSharedPackageVersion` from 1.1.9 to 1.2.2. Updates `Microsoft.Health.Development.IdentityProvider` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Blob` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Abstractions` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Core` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Api` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.SqlServer` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.SqlServer.Api` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Updates `Microsoft.Health.Client` from 1.1.9 to 1.2.2 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.1.9...1.2.2) Signed-off-by: dependabot[bot] <[email protected]> * Updates to standard packages. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: brandonpollett <[email protected]> * Bump HealthcareSharedPackageVersion from 1.2.2 to 1.2.3 (#608) Bumps `HealthcareSharedPackageVersion` from 1.2.2 to 1.2.3. Updates `Microsoft.Health.Development.IdentityProvider` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Blob` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Abstractions` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Core` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Api` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.SqlServer` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.SqlServer.Api` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Updates `Microsoft.Health.Client` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.2...1.2.3) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Refactor Project Files (#606) - Update project dependencies - Ensure all direct dependencies are listed explicitly - Bump versions - Add package descriptions - Fix CI build warnings from SourceLink concerning missing submodules * Bump HealthcareSharedPackageVersion from 1.2.3 to 1.2.8 (#616) Bumps `HealthcareSharedPackageVersion` from 1.2.3 to 1.2.8. Updates `Microsoft.Health.SqlServer` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.3...1.2.8) Updates `Microsoft.Health.Api` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.3...1.2.8) Updates `Microsoft.Health.Client` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.3...1.2.8) Updates `Microsoft.Health.Blob` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.3...1.2.8) Updates `Microsoft.Health.Extensions.DependencyInjection` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.3...1.2.8) Updates `Microsoft.Health.Abstractions` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.3...1.2.8) Updates `Microsoft.Health.Core` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.3...1.2.8) Updates `Microsoft.Health.Extensions.BuildTimeCodeGenerator` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.3...1.2.8) Updates `Microsoft.Health.SqlServer.Api` from 1.2.3 to 1.2.8 - [Release notes](https://github.com/microsoft/healthcare-components/releases) - [Commits](https://github.com/microsoft/healthcare-components/compare/1.2.3...1.2.8) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump Microsoft.Extensions.Configuration.AzureKeyVault (#617) * Bump Azure.Core from 1.9.0 to 1.10.0 (#619) * Add DICOM Cast NuGet to Dependabot (#615) * Bump Microsoft.Azure.KeyVault from 2.3.2 to 3.0.5 (#618) * Bump NSubstitute from 4.2.1 to 4.2.2 in /converter/dicom-cast (#624) * Update Microsoft.AspNetCore.Http due to Vulnerability (#633) * Fix Build Warnings for Newer .NET SDK (#632) - Update .NET SDK - Address new analyzer warnings * Bump Microsoft.Extensions.Configuration.AzureKeyVault (#628) * Add BlobUploadOptions to Blob UploadAsync, Fix QIDO fuzzy matching (#639) * Add blob uploadOptions to UploadAsync * Pull latest health-shared nugets and upgrade Ensure.That to 10.0.0 also used in the shared libraries * Update Ensure package * Update Ensure * Remove spliting of words based on space. SQL parser already does that https://docs.microsoft.com/en-us/sql/relational-databases/search/query-with-full-text-search?view=sql-server-ver15 * Bump Microsoft.IO.RecyclableMemoryStream from 1.4.0 to 1.4.1 (#640) * Bump Microsoft.IdentityModel.Tokens from 6.8.0 to 6.9.0 (#642) * Bump System.IdentityModel.Tokens.Jwt from 6.8.0 to 6.9.0 (#643) * Bump IdentityServer4.Storage from 4.1.1 to 4.1.2 (#648) * Bump Microsoft.IdentityModel.Clients.ActiveDirectory from 5.2.8 to 5.2.9 (#649) * Bump IdentityServer4 from 4.1.1 to 4.1.2 (#650) * Bump Microsoft.IdentityModel.Clients.ActiveDirectory (#651) * allow test packages to be packaged and published (#654) * allow test packages to be packaged and published * allow packing of tests.common used by E2E tests * Disable Flaky tests in RetrieveTransactionResourceTests.Study.cs (#653) * Fix analyzeSecurity variable (#658) +semver: skip * Update to use Shared AuthZ code (#631) * Bump Azure.Core from 1.10.0 to 1.11.0 (#660) * Refactor GitVersion Usage (#663) - Update GitVersion extension - Refactor config * Fix build and unit test failurs Co-authored-by: brandonpollett <[email protected]> Co-authored-by: snehabandla <[email protected]> Co-authored-by: snehabandla <snehab…
Description
This PR updates the dicom server to use the shared authz code from the
healthcare-shared-components
repo.Related issues
Addresses AB#79713.
Testing
Existing tests continue to pass.