Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

build(deps): bump the default group in /src with 14 updates #1018

Merged
merged 2 commits into from
Oct 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 19, 2024

Bumps the default group in /src with 14 updates:

Package From To
Microsoft.NET.Test.Sdk 17.9.0 17.11.1
Microsoft.IdentityModel.Tokens 7.4.1 7.7.1
Microsoft.AspNetCore.Mvc.Testing 8.0.7 8.0.8
Microsoft.Extensions.Configuration.Binder 8.0.1 8.0.2
Microsoft.Extensions.Logging.Abstractions 8.0.0 8.0.1
Microsoft.EntityFrameworkCore 8.0.7 8.0.8
Microsoft.EntityFrameworkCore.InMemory 8.0.7 8.0.8
Microsoft.EntityFrameworkCore.Design 8.0.7 8.0.8
Microsoft.EntityFrameworkCore.Relational 8.0.7 8.0.8
Microsoft.VisualStudio.Azure.Containers.Tools.Targets 1.19.6 1.21.0
Microsoft.CodeAnalysis.CSharp.Scripting 4.5.0 4.11.0
Microsoft.AspNetCore.Authentication.JwtBearer 8.0.3 8.0.8
Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.7 8.0.8
Microsoft.AspNetCore.Authorization 8.0.2 8.0.8

Updates Microsoft.NET.Test.Sdk from 17.9.0 to 17.11.1

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

v17.11.1

What's Changed

Full Changelog: microsoft/vstest@v17.11.0...v17.11.1

v17.11.0

What's Changed

New Contributors

... (truncated)

Commits

Updates Microsoft.IdentityModel.Tokens from 7.4.1 to 7.7.1

Release notes

Sourced from Microsoft.IdentityModel.Tokens's releases.

7.7.1

Bug Fix

  • Re-add JsonSerializerPrimitives.TryAllStringClaimsAsDateTime which was removed as it is in an internal class, but due to InternalsVisibleTo can lead to a MissingMethodException if IdentityModel versions are not aligned. See PR #2734 for details.

7.7.0

CVE package updates

CVE-2024-30105

  • A derived ClaimsIdentity where claim retrieval is case-sensitive. The current ClaimsIdentity, in .NET, retrieves claims in a case-insensitive manner which is different than querying the underlying SecurityToken. The new CaseSensitiveClaimsIdentity class provides consistent retrieval logic with SecurityToken. Opt in to the new behavior via an AppContext switch. See PR #2715 for details.

Performance improvement

  • AppContext.TryGetSwitch statically caches internally but takes out a lock. .NET almost always caches these values. They're not expected to change while the process is running unlike normal config. IdentityModel now caches the value. See issue #2722 for details.

7.6.2

Bug Fix:

  • Revert reduced allocations in AadIssuerValidator by not using string.Replace where appropriate due to an index out-of-range error.

7.6.1

New Features:

  • Add missing metadata parameters to OpenIdConnectConfiguration. See issue #2498 for details.

Bug Fixes:

  • Fix over-reporting of IDX14100. See issue #2058 and PR #2618 for details.
  • JwtRegisteredClaimNames now contains previously missing Standard OpenIdConnect claims. See issue #1598 for details.

Performance Improvements:

  • Reduced allocations in AadIssuerValidator by not using string.Replace where appropriate. See issue #2595 and PR #2597 for more details.
  • No longer for every string claim, calling DateTime.TryParse on each value, whether it is expected to be a DateTime or not. See issue #2615 for details.

7.6.0

New Features:

  • Update JsonWebToken - extract and expose the method that reads the header/payload property values from the reader so it can be overridden in children classes to add any extra own logic. See issues #2581, #2583, and #2495 for details.

Bug Fixes:

  • JWE header algorithm is now compliant to IANA document. See issue #2089 for details.

Performance Improvements:

  • Reduce the number of internal array allocations that need to happen for each claim set, see PR #2596.

Fundamentals:

  • Add an AOT compatibility check on each PR to ensure only AOT compatible code is checked-in. See PR #2598.
  • Update perl scrip for OneBranch build. See PR #2602.
  • Add langversion 12 to benchmark tests. See PR #2601.
  • Removed unused build.cmd file. See PR #2605.

... (truncated)

Changelog

Sourced from Microsoft.IdentityModel.Tokens's changelog.

7.7.1

Bug Fix

  • Re-add JsonSerializerPrimitives.TryAllStringClaimsAsDateTime which was removed as it is in an internal class, but due to InternalsVisibleTo can lead to a MissingMethodException if IdentityModel versions are not aligned. See PR #2734 for details.

7.7.0

CVE package updates

CVE-2024-30105

  • A derived ClaimsIdentity where claim retrieval is case-sensitive. The current ClaimsIdentity, in .NET, retrieves claims in a case-insensitive manner which is different than querying the underlying SecurityToken. The new CaseSensitiveClaimsIdentity class provides consistent retrieval logic with SecurityToken. Opt in to the new behavior via an AppContext switch. See PR #2715 for details.

7.6.3

Bug Fix

  • Remove dependency on AadIssuerValidator.GetTenantIdFromToken in ValidateIssuerSigningKey, to only consider the tid. An AppContext switch enables fallbacking to the previous behavior, which should not be needed. See PR #2680 for details.

7.6.2

Bug Fix:

  • Revert reduced allocations in AadIssuerValidator by not using string.Replace where appropriate due to an index out-of-range error.

7.6.1

New Features:

  • Add missing metadata parameters to OpenIdConnectConfiguration. See issue #2498 for details.

Bug Fixes:

  • Fix over-reporting of IDX14100. See issue #2058 and PR #2618 for details.
  • JwtRegisteredClaimNames now contains previously missing Standard OpenIdConnect claims. See issue #1598 for details.

Performance Improvements:

  • Reduced allocations in AadIssuerValidator by not using string.Replace where appropriate. See issue #2595 and PR #2597 for more details.
  • No longer for every string claim, calling DateTime.TryParse on each value, whether it is expected to be a DateTime or not. See issue #2615 for details.

7.6.0

New Features:

  • Update JsonWebToken - extract and expose the method that reads the header/payload property values from the reader so it can be overridden in children classes to add any extra own logic. See issues #2581, #2583, and #2495 for details.

Bug Fixes:

  • JWE header algorithm is now compliant to IANA document. See issue #2089 for details.

Performance Improvements:

  • Reduce the number of internal array allocations that need to happen for each claim set, see PR #2596.

Fundamentals:

  • Add an AOT compatibility check on each PR to ensure only AOT compatible code is checked-in. See PR #2598.
  • Update perl scrip for OneBranch build. See PR #2602.
  • Add langversion 12 to benchmark tests. See PR #2601.

... (truncated)

Commits

Updates Microsoft.AspNetCore.Mvc.Testing from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Mvc.Testing's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.Extensions.Configuration.Binder from 8.0.1 to 8.0.2

Release notes

Sourced from Microsoft.Extensions.Configuration.Binder's releases.

.NET 8.0.2

Release

Commits
  • 1381d5e Merge in 'release/8.0' changes
  • c987e4f [release/8.0] Fix Options Source Gen RangeAttribute Thread Safety (#97110)
  • 441c91d Merge in 'release/8.0' changes
  • c93800e Merge pull request #97065 from carlossanlop/release/8.0-staging
  • c2d2bb3 Merge branch 'release/8.0' into release/8.0-staging
  • 6d35e39 [release/8.0-staging] UInt64.CreateSaturating<Int128> truncates instead of sa...
  • 96b0a55 [release/8.0-staging] macOS: Set certificate as a dependency of private key h...
  • 85c2772 [release/8.0] Fix server-side OCSP stapling on Linux (#96838)
  • 683da71 [release/8.0-staging] Gen0 segment should always be reported as Gen0 for DacH...
  • f9d0a7b [release/8.0-staging] Fix Crossgen2 PDB generation (again) (#96566)
  • Additional commits viewable in compare view

Updates Microsoft.Extensions.Logging.Abstractions from 8.0.0 to 8.0.1

Release notes

Sourced from Microsoft.Extensions.Logging.Abstractions's releases.

.NET 8.0.1

Release

Commits
  • bf5e279 Merge in 'release/8.0' changes
  • a6e4834 [release/8.0] Free the tls memory on thread termination (#95439)
  • eddf880 Merge in 'release/8.0' changes
  • 89a2364 [release/8.0] Downgrade ServicingVersion for Microsoft.Extensions.Options to ...
  • d682195 Merge in 'release/8.0' changes
  • 8557ef2 Merge pull request #95148 from carlossanlop/release/8.0-staging
  • aaa4b27 Merge pull request #95082 from dotnet-maestro-bot/merge/release/8.0-to-releas...
  • 72e5ae9 X509Chain.Build should throw when an internal error occurs
  • a20ee6f [release/8.0-staging] Fix JsonArray.Add and ReplaceWith regressions. (#94882)
  • 4fc3df2 Fix incremental servicing condition (#95119)
  • Additional commits viewable in compare view

Updates Microsoft.EntityFrameworkCore from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.EntityFrameworkCore's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.EntityFrameworkCore.InMemory from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.EntityFrameworkCore.InMemory's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.EntityFrameworkCore from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.EntityFrameworkCore's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.EntityFrameworkCore.Design from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.EntityFrameworkCore.Design's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.EntityFrameworkCore.Relational from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.EntityFrameworkCore.Relational's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.EntityFrameworkCore from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.EntityFrameworkCore's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.EntityFrameworkCore.Relational from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.EntityFrameworkCore.Relational's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.EntityFrameworkCore from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.EntityFrameworkCore's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.VisualStudio.Azure.Containers.Tools.Targets from 1.19.6 to 1.21.0

Updates Microsoft.CodeAnalysis.CSharp.Scripting from 4.5.0 to 4.11.0

Release notes

Sourced from Microsoft.CodeAnalysis.CSharp.Scripting's releases.

.NET 6.0.1

Release

.NET 5.0.4

Release

.NET 5.0.2

Release Notes Install Instructions

Repos

Changelog

Sourced from Microsoft.CodeAnalysis.CSharp.Scripting's changelog.

API Breaking Changes

Version 1.1.0

Removed VisualBasicCommandLineParser.ctor

During a toolset update we noticed the constructor on VisualBasicCommandLineParser was public. This in turn made many of the protected members of CommandLineParser a part of the API surface as it gave external customers an inheritance path.

It was never the intent for these members to be a part of the supported API surface. Creation of the parsers is meant to be done via the Default singleton properties. There seems to be little risk that we broke any customers here and hence we decided to remove this API.

PR: dotnet/roslyn#4169

Changed Simplifier methods to throw ArgumentNullExceptions

Changed Simplifier.ReduceAsync, Simplifier.ExpandAsync, and Simplifier.Expand methods to throw ArgumentNullExceptions if any non-optional, nullable arguments are passed in. Previously the user would get a NullReferenceException for synchronous methods and an AggregateException containing a NullReferenceException for asynchronous methods.

PR: dotnet/roslyn#5144

Version 1.3.0

Treat a method marked with both public and private flags as private

The scenario is loading an assembly where some methods, fields or nested types have accessibility flags set to 7 (all three bits set), which mean public AND private. After the fix, such flags are loaded to mean private. The compat change is we’re trading a compile-time success and runtime failure (native compiler) against a compile-time error (restoring the behavior of v1.2).

Details below:

  • The native compiler successfully compiles the method and field case (those only yield runtime error System.TypeLoadException: Invalid Field Access Flags) and reported an accessibility error on the nested type.
  • The 1.2 compiler generated errors:
error BC30390: 'C.Private Overloads Sub M()' is not accessible in this context because it is 'Private'.
error BC30389: 'C.F' is not accessible in this context because it is 'Private'.
error BC30389: 'C.C2' is not accessible in this context because it is 'Protected Friend'.
error BC30390: 'C2.Private Overloads Sub M2()' is not accessible in this context because it is 'Private'.
  • The 1.3 compiler crashes.
  • After fix, the same errors as 1.2 are generated again.

PR: dotnet/roslyn#11547

Don't emit bad DateTimeConstant, and load bad BadTimeConstant as default value instead

The change affects compatibility in two ways:

  • When loading an invalid DateTimeConstant(-1), the compiler will use default(DateTime) instead, whereas the native compiler would produce code that fails to execute.
  • DateTimeConstant(-1) will still count when we check that you don’t specify two default values. The compiler will produce an error, instead of succeeding (and producing IL with two attributes).

PR: dotnet/roslyn#11536

Version 4.1.0

... (truncated)

Commits

Updates Microsoft.AspNetCore.Authentication.JwtBearer from 8.0.3 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Authentication.JwtBearer's releases.

.NET 8.0.8

Release

.NET 8.0.7

Release

.NET 8.0.6

Release

.NET 8.0.5

Release

What's Changed

@dependabot dependabot bot force-pushed the dependabot/nuget/src/default-8acc578bfd branch 3 times, most recently from 44f3a21 to 63c0d90 Compare September 27, 2024 08:12
Bumps the default group in /src with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.9.0` | `17.11.1` |
| [Microsoft.IdentityModel.Tokens](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) | `7.4.1` | `7.7.1` |
| [Microsoft.AspNetCore.Mvc.Testing](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.Extensions.Configuration.Binder](https://github.com/dotnet/runtime) | `8.0.1` | `8.0.2` |
| [Microsoft.Extensions.Logging.Abstractions](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.1` |
| [Microsoft.EntityFrameworkCore](https://github.com/dotnet/efcore) | `8.0.7` | `8.0.8` |
| [Microsoft.EntityFrameworkCore.InMemory](https://github.com/dotnet/efcore) | `8.0.7` | `8.0.8` |
| [Microsoft.EntityFrameworkCore.Design](https://github.com/dotnet/efcore) | `8.0.7` | `8.0.8` |
| [Microsoft.EntityFrameworkCore.Relational](https://github.com/dotnet/efcore) | `8.0.7` | `8.0.8` |
| Microsoft.VisualStudio.Azure.Containers.Tools.Targets | `1.19.6` | `1.21.0` |
| [Microsoft.CodeAnalysis.CSharp.Scripting](https://github.com/dotnet/roslyn) | `4.5.0` | `4.11.0` |
| [Microsoft.AspNetCore.Authentication.JwtBearer](https://github.com/dotnet/aspnetcore) | `8.0.3` | `8.0.8` |
| [Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.AspNetCore.Authorization](https://github.com/dotnet/aspnetcore) | `8.0.2` | `8.0.8` |


Updates `Microsoft.NET.Test.Sdk` from 17.9.0 to 17.11.1
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.9.0...v17.11.1)

Updates `Microsoft.IdentityModel.Tokens` from 7.4.1 to 7.7.1
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/7.7.1/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@v7.4.1...7.7.1)

Updates `Microsoft.AspNetCore.Mvc.Testing` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.Extensions.Configuration.Binder` from 8.0.1 to 8.0.2
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.1...v8.0.2)

Updates `Microsoft.Extensions.Logging.Abstractions` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.EntityFrameworkCore` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.EntityFrameworkCore.InMemory` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.EntityFrameworkCore` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.EntityFrameworkCore.Design` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.EntityFrameworkCore.Relational` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.EntityFrameworkCore` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.EntityFrameworkCore.Relational` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.EntityFrameworkCore` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.VisualStudio.Azure.Containers.Tools.Targets` from 1.19.6 to 1.21.0

Updates `Microsoft.CodeAnalysis.CSharp.Scripting` from 4.5.0 to 4.11.0
- [Release notes](https://github.com/dotnet/roslyn/releases)
- [Changelog](https://github.com/dotnet/roslyn/blob/main/docs/Breaking%20API%20Changes.md)
- [Commits](https://github.com/dotnet/roslyn/commits)

Updates `Microsoft.AspNetCore.Authentication.JwtBearer` from 8.0.3 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.3...v8.0.8)

Updates `Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.Extensions.Logging.Abstractions` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

Updates `Microsoft.EntityFrameworkCore.Relational` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.EntityFrameworkCore` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.7...v8.0.8)

Updates `Microsoft.AspNetCore.Authorization` from 8.0.2 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.2...v8.0.8)

Updates `Microsoft.Extensions.Logging.Abstractions` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: default
- dependency-name: Microsoft.IdentityModel.Tokens
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: default
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.Extensions.Configuration.Binder
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore.InMemory
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore.Relational
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore.Relational
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.VisualStudio.Azure.Containers.Tools.Targets
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: default
- dependency-name: Microsoft.CodeAnalysis.CSharp.Scripting
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: default
- dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore.Relational
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.AspNetCore.Authorization
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: default
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/nuget/src/default-8acc578bfd branch from 63c0d90 to e96280e Compare September 27, 2024 08:54
@Phil91 Phil91 force-pushed the dependabot/nuget/src/default-8acc578bfd branch from 992bab2 to 0f8cf52 Compare October 1, 2024 11:12
@Phil91 Phil91 force-pushed the dependabot/nuget/src/default-8acc578bfd branch from 0f8cf52 to 8dff9e1 Compare October 1, 2024 11:30
Copy link

sonarcloud bot commented Oct 1, 2024

@Phil91 Phil91 merged commit 2922d43 into main Oct 1, 2024
11 checks passed
@Phil91 Phil91 deleted the dependabot/nuget/src/default-8acc578bfd branch October 1, 2024 11:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: USER READY
Development

Successfully merging this pull request may close these issues.

1 participant