Skip to content

Bump the other-packages group with 40 updates#127

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/other-packages-72aa22c483
Open

Bump the other-packages group with 40 updates#127
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/other-packages-72aa22c483

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 16, 2026

Updated Asp.Versioning.Mvc from 8.1.1 to 10.0.0.

Release notes

Sourced from Asp.Versioning.Mvc's releases.

10.0.0

The official release for 10.0 is here! In addition to the changes in the preview releases, there are a few additional changes.

Features

All Platforms

  • ApiVersionAttribute, MapToVersionAttribute, and AdvertiseApiVersionsAttribute all now have a constructor which can support the date format without being a string; for example, [ApiVersion(2026, 04, 01)]

ASP.NET Core OpenAPI

  • XmlCommentsTransformer is now resolved via DI, which allows it to be re-registered with a user-defined file path
  • Public types and members are now virtual for developer extensibility

Fixes

ASP.NET Core OpenAPI

  • Fix comparison between entry and calling assembly (#​1175)
  • Ensure keyed services are registered with a lowercase key (#​1176)
  • Fix nested key service resolution (#​1177)
  • Implement IKeyedServiceProvider when injecting ApiVersion (#​1178)

Breaking Changes

ASP.NET Core OpenAPI

  • OpenAPI documents use "enum": ["1.0"] instead of "default": "1.0"
    • This has a similar effect, but removes the free-form input when the value is bounded
    • When optional, the enum value can still be deleted/removed
    • Some UIs, such as Scalar, still provide a way to provide an enumerated value that isn't in the list

Release Notes

  • Asp.Versioning.OData is being released as rc.1 because Microsoft.AspNetCore.OData is only at preview.2
  • Asp.Versioning.OpenAPI is being released as rc.1 pending the outcome of dotnet/aspnetcore#​66408
    • If the package can be released without requiring the explicit use of Reflection, that is the preference
    • No additional changes are planned unless bugs are reported

Feedback

Thanks to the contributors on this release whether it was code contributions or test driving the previews. Special thanks to @​sander1095 for being a strong advocate and helping to bring even more visibility to the project.

10.0.0-preview.2

This release is a quick iteration which contains minor fixes based on feedback from Preview 1.

Trying out previews is always a big ask. The OpenAPI extensions are net new, so I really am looking for some community support to flush out any edge cases I may have been missed before releasing officially. All other libraries are stable.

Aside from whatever the community may report, there are only two final things I'm considering for the final release:

  1. gRPC versioning support, which I'm waiting on grpc/grpc-dotnet#​2690 and grpc/grpc-dotnet#​2693
  2. Coordination with Microsoft to open up types in Microsoft.AspNetCore.OpenAPI so I don't have to resort to Reflection for integration

If these are not able to be completed within the next few weeks, then I will officially release the stable libraries. The gRPC support will then come in a future, likely minor version, release. The OpenAPI extensions may stay in preview as AOT will likely be broken.

Features

All Platforms

  • Support _ prefix character when extracting API versions from a .NET namespace (#​1172)
  • Generate software bill of materials (SBOM) (#​1100)

Fixes

ASP.NET Core with OpenAPI

  • Build-time OpenAPI documents have empty paths (#​1165, #​1168)
  • Missing XML Comments (#​1169)
  • Support <example> tags (#​1170)

Breaking Changes

The OpenAPI extensions for API Versioning (e.g. x-api-versioning) will now use a nested links property rather than a simple array. This allows the schema to be open for possible future enhancements.

Preview 1

{
    "x-api-versioning":
    [
        {
            "title": "Version Policy",
            "type": "text/html",
            "rel": "info",
            "url": "http://my.api.com/policies/versioning.html"
        }
    ]
}

Preview 2+

{
 ... (truncated)

## 10.0.0-preview.1

This is a major release that includes new, publicly visible API changes as well as a rollup of bug fixes. This is an initial preview release that is primarily focused on improving OpenAPI integration. Additional features will come in the next preview. The wiki has not be fully updated - yet, but that will also occur in the near future.

These are preview features and changes. Please report issues if you find them. Feel free to start a [discussion](../../discussions) about the changes in the forthcoming official release.

# Features

## All Platforms

- Support for the `deprecation` response header as defined by [RFC 9745](https://www.rfc-editor.org/rfc/rfc9745.html) (#​1128)

## ASP.NET Core

- Integration with the [Microsoft.AspNetCore.OpenApi](https://www.nuget.org/packages/Microsoft.AspNetCore.OpenApi) library
  - These features in the new [Asp.Versioning.OpenApi](https://www.nuget.org/packages/Asp.Versioning.OpenApi) library
  - OpenAPI documents are now generated per API version
  - Sunset and deprecation policies are automatically included with standard (English) text, but can be customized
  - Sunset and deprecation policies links are included in OpenAPI documents via the `x-api-versioning` extension
  - The versioned `HttpClient` can now read and report on sunset and deprecation policies
  - All [example projects](../../tree/main/examples/AspNetCore) have been updated to use [Scalar](https://scalar.com/)

### Example

The following provides an example of a bare minimum setup:

```c#
var builder = WebApplication.CreateBuilder( args );
var services = builder.Services;

services.AddApiVersioning()
        .AddApiExplorer()
        .AddOpenApi();

var app = builder.Build();
var hello = app.NewVersionedApi( "HelloWorld" );
var v1 = hello.MapGroup( "/hello-world" ).HasApiVersion( 1.0 );
var v2 = hello.MapGroup( "/hello-world" ).HasApiVersion( 2.0 );

v1.MapGet( "/", ( ApiVersion version ) => $"Hello world from v{version}" );
v2.MapGet( "/", ( ApiVersion version ) => $"Hello world from v{version}" );

if ( app.Environment.IsDevelopment() )
{
    app.MapOpenApi().WithDocumentPerVersion();
}

app.Run();

The key differences from what you may be currently doing:

... (truncated)

Commits viewable in compare view.

Updated Asp.Versioning.Mvc.ApiExplorer from 8.1.1 to 10.0.0.

Release notes

Sourced from Asp.Versioning.Mvc.ApiExplorer's releases.

10.0.0

The official release for 10.0 is here! In addition to the changes in the preview releases, there are a few additional changes.

Features

All Platforms

  • ApiVersionAttribute, MapToVersionAttribute, and AdvertiseApiVersionsAttribute all now have a constructor which can support the date format without being a string; for example, [ApiVersion(2026, 04, 01)]

ASP.NET Core OpenAPI

  • XmlCommentsTransformer is now resolved via DI, which allows it to be re-registered with a user-defined file path
  • Public types and members are now virtual for developer extensibility

Fixes

ASP.NET Core OpenAPI

  • Fix comparison between entry and calling assembly (#​1175)
  • Ensure keyed services are registered with a lowercase key (#​1176)
  • Fix nested key service resolution (#​1177)
  • Implement IKeyedServiceProvider when injecting ApiVersion (#​1178)

Breaking Changes

ASP.NET Core OpenAPI

  • OpenAPI documents use "enum": ["1.0"] instead of "default": "1.0"
    • This has a similar effect, but removes the free-form input when the value is bounded
    • When optional, the enum value can still be deleted/removed
    • Some UIs, such as Scalar, still provide a way to provide an enumerated value that isn't in the list

Release Notes

  • Asp.Versioning.OData is being released as rc.1 because Microsoft.AspNetCore.OData is only at preview.2
  • Asp.Versioning.OpenAPI is being released as rc.1 pending the outcome of dotnet/aspnetcore#​66408
    • If the package can be released without requiring the explicit use of Reflection, that is the preference
    • No additional changes are planned unless bugs are reported

Feedback

Thanks to the contributors on this release whether it was code contributions or test driving the previews. Special thanks to @​sander1095 for being a strong advocate and helping to bring even more visibility to the project.

10.0.0-preview.2

This release is a quick iteration which contains minor fixes based on feedback from Preview 1.

Trying out previews is always a big ask. The OpenAPI extensions are net new, so I really am looking for some community support to flush out any edge cases I may have been missed before releasing officially. All other libraries are stable.

Aside from whatever the community may report, there are only two final things I'm considering for the final release:

  1. gRPC versioning support, which I'm waiting on grpc/grpc-dotnet#​2690 and grpc/grpc-dotnet#​2693
  2. Coordination with Microsoft to open up types in Microsoft.AspNetCore.OpenAPI so I don't have to resort to Reflection for integration

If these are not able to be completed within the next few weeks, then I will officially release the stable libraries. The gRPC support will then come in a future, likely minor version, release. The OpenAPI extensions may stay in preview as AOT will likely be broken.

Features

All Platforms

  • Support _ prefix character when extracting API versions from a .NET namespace (#​1172)
  • Generate software bill of materials (SBOM) (#​1100)

Fixes

ASP.NET Core with OpenAPI

  • Build-time OpenAPI documents have empty paths (#​1165, #​1168)
  • Missing XML Comments (#​1169)
  • Support <example> tags (#​1170)

Breaking Changes

The OpenAPI extensions for API Versioning (e.g. x-api-versioning) will now use a nested links property rather than a simple array. This allows the schema to be open for possible future enhancements.

Preview 1

{
    "x-api-versioning":
    [
        {
            "title": "Version Policy",
            "type": "text/html",
            "rel": "info",
            "url": "http://my.api.com/policies/versioning.html"
        }
    ]
}

Preview 2+

{
 ... (truncated)

## 10.0.0-preview.1

This is a major release that includes new, publicly visible API changes as well as a rollup of bug fixes. This is an initial preview release that is primarily focused on improving OpenAPI integration. Additional features will come in the next preview. The wiki has not be fully updated - yet, but that will also occur in the near future.

These are preview features and changes. Please report issues if you find them. Feel free to start a [discussion](../../discussions) about the changes in the forthcoming official release.

# Features

## All Platforms

- Support for the `deprecation` response header as defined by [RFC 9745](https://www.rfc-editor.org/rfc/rfc9745.html) (#​1128)

## ASP.NET Core

- Integration with the [Microsoft.AspNetCore.OpenApi](https://www.nuget.org/packages/Microsoft.AspNetCore.OpenApi) library
  - These features in the new [Asp.Versioning.OpenApi](https://www.nuget.org/packages/Asp.Versioning.OpenApi) library
  - OpenAPI documents are now generated per API version
  - Sunset and deprecation policies are automatically included with standard (English) text, but can be customized
  - Sunset and deprecation policies links are included in OpenAPI documents via the `x-api-versioning` extension
  - The versioned `HttpClient` can now read and report on sunset and deprecation policies
  - All [example projects](../../tree/main/examples/AspNetCore) have been updated to use [Scalar](https://scalar.com/)

### Example

The following provides an example of a bare minimum setup:

```c#
var builder = WebApplication.CreateBuilder( args );
var services = builder.Services;

services.AddApiVersioning()
        .AddApiExplorer()
        .AddOpenApi();

var app = builder.Build();
var hello = app.NewVersionedApi( "HelloWorld" );
var v1 = hello.MapGroup( "/hello-world" ).HasApiVersion( 1.0 );
var v2 = hello.MapGroup( "/hello-world" ).HasApiVersion( 2.0 );

v1.MapGet( "/", ( ApiVersion version ) => $"Hello world from v{version}" );
v2.MapGet( "/", ( ApiVersion version ) => $"Hello world from v{version}" );

if ( app.Environment.IsDevelopment() )
{
    app.MapOpenApi().WithDocumentPerVersion();
}

app.Run();

The key differences from what you may be currently doing:

... (truncated)

Commits viewable in compare view.

Updated ErrorOr from 2.1.0 to 2.1.1.

Release notes

Sourced from ErrorOr's releases.

2.1.1

new Release with many new features:

  • Some minor Fixes
  • Support for .NET 8 was added
  • Support for .NET 10 was added
  • Added missing async versions of FailIf methods
  • Added FailIf method overloads that allow to use value in error definition using Func<TValue, Error> error builder
  • Added ElseDo and ElseDoAsync methods
  • Added Else/ElseAsync overloads returning ErrorOr
  • Added Else/ElseAsync overloads returning ErrorOr
  • Added ToErrorOrAsync method
  • Added missing ErrorOrFactory.From methods
  • Added missing collection expression support
  • Added FromAsync and missing ToErrorOrAsync methods
  • Added ThenEnsure and ThenEnsureAsync methods
  • Added IsSuccess property to ErrorOr

Commits viewable in compare view.

Updated HotChocolate.AspNetCore from 15.1.12 to 16.0.3.

Release notes

Sourced from HotChocolate.AspNetCore's releases.

16.0.3

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.2...16.0.3

16.0.2

Hot Chocolate 16 is here! 🚀

Read the announcement blog post for the full overview. Fusion and other new components will be announced separately.

Upgrading from 15? See the Hot Chocolate migration guide and the Fusion migration guide.

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0...16.0.2

16.0.1-p.6

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.1-p.5...16.0.1-p.6

16.0.1-p.5

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.1-p.4...16.0.1-p.5

16.0.1-p.4

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.1-p.3...16.0.1-p.4

16.0.1-p.3

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.1-p.2...16.0.1-p.3

16.0.1-p.2

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.1-p.1...16.0.1-p.2

16.0.1-p.1

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.44...16.0.1-p.1

16.0.0

Migration Guide

https://chillicream.com/docs/hotchocolate/v16/migrating/migrate-from-15-to-16/

New Contributors

Full Changelog: ChilliCream/graphql-platform@15.1.16...16.0.0

16.0.0-rc.1.44

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.43...16.0.0-rc.1.44

16.0.0-rc.1.43

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.42...16.0.0-rc.1.43

16.0.0-rc.1.42

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.41...16.0.0-rc.1.42

16.0.0-rc.1.41

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.40...16.0.0-rc.1.41

16.0.0-rc.1.40

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.39...16.0.0-rc.1.40

16.0.0-rc.1.39

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.38...16.0.0-rc.1.39

16.0.0-rc.1.38

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.37...16.0.0-rc.1.38

16.0.0-rc.1.37

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.36...16.0.0-rc.1.37

16.0.0-rc.1.36

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.35...16.0.0-rc.1.36

16.0.0-rc.1.35

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.34...16.0.0-rc.1.35

16.0.0-rc.1.34

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.33...16.0.0-rc.1.34

16.0.0-rc.1.33

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.32...16.0.0-rc.1.33

16.0.0-rc.1.32

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.31...16.0.0-rc.1.32

16.0.0-rc.1.31

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.30...16.0.0-rc.1.31

16.0.0-rc.1.30

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.29...16.0.0-rc.1.30

16.0.0-rc.1.29

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.28...16.0.0-rc.1.29

16.0.0-rc.1.28

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.27...16.0.0-rc.1.28

16.0.0-rc.1.27

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.26...16.0.0-rc.1.27

16.0.0-rc.1.26

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.25...16.0.0-rc.1.26

16.0.0-rc.1.25

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.24...16.0.0-rc.1.25

16.0.0-rc.1.24

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.23...16.0.0-rc.1.24

16.0.0-rc.1.23

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.22...16.0.0-rc.1.23

16.0.0-rc.1.22

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.21...16.0.0-rc.1.22

16.0.0-rc.1.21

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.20...16.0.0-rc.1.21

16.0.0-rc.1.20

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.19...16.0.0-rc.1.20

16.0.0-rc.1.19

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.18...16.0.0-rc.1.19

16.0.0-rc.1.18

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.16...16.0.0-rc.1.18

16.0.0-rc.1.17

16.0.0-rc.1.16

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.15...16.0.0-rc.1.16

16.0.0-rc.1.15

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.14...16.0.0-rc.1.15

16.0.0-rc.1.14

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.13...16.0.0-rc.1.14

16.0.0-rc.1.13

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.12...16.0.0-rc.1.13

16.0.0-rc.1.12

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.11...16.0.0-rc.1.12

16.0.0-rc.1.11

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.10...16.0.0-rc.1.11

16.0.0-rc.1.10

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.9...16.0.0-rc.1.10

16.0.0-rc.1.9

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.8...16.0.0-rc.1.9

16.0.0-rc.1.8

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.7...16.0.0-rc.1.8

16.0.0-rc.1.7

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.6...16.0.0-rc.1.7

16.0.0-rc.1.6

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.5...16.0.0-rc.1.6

16.0.0-rc.1.5

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.4...16.0.0-rc.1.5

16.0.0-rc.1.4

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.3...16.0.0-rc.1.4

16.0.0-rc.1.3

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.2...16.0.0-rc.1.3

16.0.0-rc.1.2

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.1...16.0.0-rc.1.2

16.0.0-rc.1.1

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-rc.1.0...16.0.0-rc.1.1

16.0.0-rc.1.0

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.53...16.0.0-rc.1.0

16.0.0-p.11.53

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.52...16.0.0-p.11.53

16.0.0-p.11.52

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.51...16.0.0-p.11.52

16.0.0-p.11.51

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.50...16.0.0-p.11.51

16.0.0-p.11.50

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.49...16.0.0-p.11.50

16.0.0-p.11.49

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.48...16.0.0-p.11.49

16.0.0-p.11.48

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.47...16.0.0-p.11.48

16.0.0-p.11.47

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.46...16.0.0-p.11.47

16.0.0-p.11.46

What's Changed

New Contributors

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.42...16.0.0-p.11.46

16.0.0-p.11.45

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.43...16.0.0-p.11.45

16.0.0-p.11.44

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.43...16.0.0-p.11.44

16.0.0-p.11.43

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.42...16.0.0-p.11.43

16.0.0-p.11.42

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.41...16.0.0-p.11.42

16.0.0-p.11.41

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.40...16.0.0-p.11.41

16.0.0-p.11.40

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.39...16.0.0-p.11.40

16.0.0-p.11.39

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.38...16.0.0-p.11.39

16.0.0-p.11.38

What's Changed

Full Changelog: ChilliCream/graphql-platform@16.0.0-p.11.37...16.0.0-p.11.38

16.0.0-p.11.37

What's Changed

Description has been truncated

Bumps Asp.Versioning.Mvc from 8.1.1 to 10.0.0
Bumps Asp.Versioning.Mvc.ApiExplorer from 8.1.1 to 10.0.0
Bumps ErrorOr from 2.1.0 to 2.1.1
Bumps HotChocolate.AspNetCore from 15.1.12 to 16.0.3
Bumps HotChocolate.AspNetCore.Authorization from 15.1.12 to 16.0.3
Bumps HotChocolate.Data.EntityFramework from 15.1.12 to 16.0.3
Bumps HotChocolate.Diagnostics from 15.1.12 to 16.0.3
Bumps Keycloak.AuthServices.Authentication from 2.8.0 to 3.0.0
Bumps Keycloak.AuthServices.Authorization from 2.8.0 to 3.0.0
Bumps Keycloak.AuthServices.Sdk from 2.8.0 to 3.0.0
Bumps MailKit from 4.15.1 to 4.16.0
Bumps Microsoft.AspNetCore.Authentication.JwtBearer from 10.0.5 to 10.0.8
Bumps Microsoft.AspNetCore.Authentication.OpenIdConnect from 10.0.5 to 10.0.8
Bumps Microsoft.AspNetCore.DataProtection.StackExchangeRedis from 10.0.5 to 10.0.8
Bumps Microsoft.AspNetCore.Mvc.Testing from 10.0.5 to 10.0.8
Bumps Microsoft.AspNetCore.OpenApi from 10.0.5 to 10.0.8
Bumps Microsoft.AspNetCore.OutputCaching.StackExchangeRedis from 10.0.5 to 10.0.8
Bumps Microsoft.EntityFrameworkCore from 10.0.5 to 10.0.8
Bumps Microsoft.EntityFrameworkCore.Design from 10.0.5 to 10.0.8
Bumps Microsoft.EntityFrameworkCore.InMemory from 10.0.5 to 10.0.8
Bumps Microsoft.Extensions.Caching.StackExchangeRedis from 10.0.5 to 10.0.8
Bumps Microsoft.Extensions.Compliance.Redaction from 10.4.0 to 10.6.0
Bumps Microsoft.Extensions.Http.Resilience from 10.4.0 to 10.6.0
Bumps Microsoft.Extensions.Resilience from 10.4.0 to 10.6.0
Bumps Microsoft.Extensions.Telemetry from 10.4.0 to 10.6.0
Bumps Microsoft.NET.Test.Sdk from 18.3.0 to 18.5.1
Bumps MimeKit from 4.15.1 to 4.16.0
Bumps MongoDB.Bson from 3.7.1 to 3.8.1
Bumps MongoDB.Driver from 3.7.1 to 3.8.1
Bumps OpenTelemetry.Exporter.Console from 1.15.0 to 1.15.3
Bumps OpenTelemetry.Exporter.OpenTelemetryProtocol from 1.15.0 to 1.15.3
Bumps OpenTelemetry.Extensions.Hosting from 1.15.0 to 1.15.3
Bumps OpenTelemetry.Instrumentation.AspNetCore from 1.15.1 to 1.15.2
Bumps OpenTelemetry.Instrumentation.Http from 1.15.0 to 1.15.1
Bumps OpenTelemetry.Instrumentation.Runtime from 1.15.0 to 1.15.1
Bumps Scalar.AspNetCore from 2.13.13 to 2.14.14
Bumps SystemTextJsonPatch from 4.2.0 to 5.0.0
Bumps TickerQ from 10.2.2 to 10.4.0
Bumps TickerQ.EntityFrameworkCore from 10.2.2 to 10.4.0
Bumps WolverineFx from 5.22.0 to 5.39.1

---
updated-dependencies:
- dependency-name: Asp.Versioning.Mvc
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: Asp.Versioning.Mvc.ApiExplorer
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: ErrorOr
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: HotChocolate.AspNetCore
  dependency-version: 16.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: HotChocolate.AspNetCore.Authorization
  dependency-version: 16.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: HotChocolate.Data.EntityFramework
  dependency-version: 16.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: HotChocolate.Diagnostics
  dependency-version: 16.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: Keycloak.AuthServices.Authentication
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: Keycloak.AuthServices.Authorization
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: Keycloak.AuthServices.Sdk
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: MailKit
  dependency-version: 4.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: MimeKit
  dependency-version: 4.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.AspNetCore.Authentication.OpenIdConnect
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.AspNetCore.DataProtection.StackExchangeRedis
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.AspNetCore.OpenApi
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.AspNetCore.OutputCaching.StackExchangeRedis
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.EntityFrameworkCore.InMemory
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.Extensions.Caching.StackExchangeRedis
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Microsoft.Extensions.Compliance.Redaction
  dependency-version: 10.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: Microsoft.Extensions.Http.Resilience
  dependency-version: 10.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: Microsoft.Extensions.Resilience
  dependency-version: 10.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: Microsoft.Extensions.Telemetry
  dependency-version: 10.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: MongoDB.Bson
  dependency-version: 3.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: MongoDB.Driver
  dependency-version: 3.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: OpenTelemetry.Exporter.Console
  dependency-version: 1.15.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: OpenTelemetry.Exporter.OpenTelemetryProtocol
  dependency-version: 1.15.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: OpenTelemetry.Extensions.Hosting
  dependency-version: 1.15.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: OpenTelemetry.Instrumentation.AspNetCore
  dependency-version: 1.15.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: OpenTelemetry.Instrumentation.Http
  dependency-version: 1.15.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: OpenTelemetry.Instrumentation.Runtime
  dependency-version: 1.15.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-packages
- dependency-name: Scalar.AspNetCore
  dependency-version: 2.14.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: SystemTextJsonPatch
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-packages
- dependency-name: TickerQ
  dependency-version: 10.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: TickerQ.EntityFrameworkCore
  dependency-version: 10.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
- dependency-name: WolverineFx
  dependency-version: 5.39.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants