Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jul 29, 2025

Updated Aspire.Hosting.PostgreSQL from 9.3.1 to 9.4.0.

Release notes

Sourced from Aspire.Hosting.PostgreSQL's releases.

9.3.2

What's Changed

Full Changelog: dotnet/aspire@v9.3.1...v9.3.2

Commits viewable in compare view.

Updated Aspire.Hosting.RabbitMQ from 9.3.1 to 9.4.0.

Release notes

Sourced from Aspire.Hosting.RabbitMQ's releases.

9.3.2

What's Changed

Full Changelog: dotnet/aspire@v9.3.1...v9.3.2

Commits viewable in compare view.

Updated Aspire.Hosting.Redis from 9.3.1 to 9.4.0.

Release notes

Sourced from Aspire.Hosting.Redis's releases.

9.3.2

What's Changed

Full Changelog: dotnet/aspire@v9.3.1...v9.3.2

Commits viewable in compare view.

Updated Aspire.StackExchange.Redis from 9.3.1 to 9.4.0.

Release notes

Sourced from Aspire.StackExchange.Redis's releases.

9.3.2

What's Changed

Full Changelog: dotnet/aspire@v9.3.1...v9.3.2

Commits viewable in compare view.

Updated Aspire.StackExchange.Redis.DistributedCaching from 9.3.1 to 9.4.0.

Release notes

Sourced from Aspire.StackExchange.Redis.DistributedCaching's releases.

9.3.2

What's Changed

Full Changelog: dotnet/aspire@v9.3.1...v9.3.2

Commits viewable in compare view.

Updated FastEndpoints from 6.1.0 to 7.0.1.

Release notes

Sourced from FastEndpoints's releases.

7.0.1


❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current unfortunate state of FOSS, please consider becoming a sponsor and help us beat the odds to keep the project alive and free for everyone.


New 🎉

Relocate response sending methods ⚠️

Response sending methods such as SendOkAsync() have been ripped out of the endpoint base class for a better intellisense experience and extensibility.

Going forward, the response sending methods are accessed via the Send property of the endpoint as follows:

public override async Task HandleAsync(CancellationToken c)
{
    await Send.OkAsync("hello world!");
}

In order to add your own custom response sending methods, simply target the IResponseSender interface and write extension methods like so:

static class SendExtensions
{
    public static Task HelloResponse(this IResponseSender sender)
        => sender.HttpContext.Response.SendOkAsync("hello!");
}

This is obviously is a wide-reaching breaking change which can be easily remedied with a quick regex based find & replace. Please see the breaking changes section below for step-by-step instructions on how to migrate. Takes less than a minute.

Send multiple Server-Sent-Event models in a single stream

It is now possible to send different types of data in a single SSE stream with the use of a wrapper type called StreamItem like so:

public override async Task HandleAsync(CancellationToken ct)
{
    await Send.EventStreamAsync(GetMultiDataStream(ct), ct);

    async IAsyncEnumerable<StreamItem> GetMultiDataStream([EnumeratorCancellation] CancellationToken ct)
    {
        long id = 0;

 ... (truncated)

## 6.2

---

## ❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current [unfortunate state of FOSS](https://www.youtube.com/watch?v=H96Va36xbvo), please consider [becoming a sponsor](https://opencollective.com/fast-endpoints) and help us beat the odds to keep the project alive and free for everyone.

---

<!-- <details><summary>title text</summary></details> -->

## New 🎉

<details><summary>Support 'Scope' based access restriction</summary>

Your can now restrict access based on [Scopes](https://oauth.net/2/scope) in tokens (e.g., from OAuth2/OpenID Connect IDPs). Simply specify required scopes using the newly added **Scopes()** method:

```cs
public override void Configure()
{
    Get("/item");
    Scopes("item:read", "item:write");
}

This allows access if the user's "scope" claim includes ANY of the listed values. To require ALL scopes, use ScopesAll() instead.

By default, scopes are read from the "scope" claim, which can be changed like so:

app.UseFastEndpoints(c => c.Security.ScopeClaimType = "scp")

If scope values aren't space-separated, customize parsing like so:

app.UseFastEndpoints(c => c.Security.ScopeParser = input =>
{
    //extract scope values and return a collection of strings
})
Automatic 'Accepts Metadata' for Non-Json requests

In the past, if an endpoint defines a request DTO type, an accepts-metadata of application/json would be automatically added to the endpoint, which would require the user to clear that default metadata if all the properties of the DTO is bound from non-json binding sources such as route/query/header etc.

Now, if the user annotates all the properties of a DTO with the respective non-json binding sources such as the following:

 ... (truncated)

Commits viewable in [compare view](https://github.com/FastEndpoints/FastEndpoints/compare/v6.1...v7.0.1).
</details>

Updated [FastEndpoints.Messaging.Core](https://github.com/FastEndpoints/FastEndpoints) from 6.1.0 to 7.0.1.

<details>
<summary>Release notes</summary>

_Sourced from [FastEndpoints.Messaging.Core's releases](https://github.com/FastEndpoints/FastEndpoints/releases)._

## 7.0.1

---

## ❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current [unfortunate state of FOSS](https://www.youtube.com/watch?v=H96Va36xbvo), please consider [becoming a sponsor](https://opencollective.com/fast-endpoints) and help us beat the odds to keep the project alive and free for everyone.

---

## New 🎉

<details><summary>Relocate response sending methods ⚠️</summary>

Response sending methods such as `SendOkAsync()` have been ripped out of the endpoint base class for a better intellisense experience and extensibility.

Going forward, the response sending methods are accessed via the `Send` property of the endpoint as follows:

```cs
public override async Task HandleAsync(CancellationToken c)
{
    await Send.OkAsync("hello world!");
}

In order to add your own custom response sending methods, simply target the IResponseSender interface and write extension methods like so:

static class SendExtensions
{
    public static Task HelloResponse(this IResponseSender sender)
        => sender.HttpContext.Response.SendOkAsync("hello!");
}

This is obviously is a wide-reaching breaking change which can be easily remedied with a quick regex based find & replace. Please see the breaking changes section below for step-by-step instructions on how to migrate. Takes less than a minute.

Send multiple Server-Sent-Event models in a single stream

It is now possible to send different types of data in a single SSE stream with the use of a wrapper type called StreamItem like so:

public override async Task HandleAsync(CancellationToken ct)
{
    await Send.EventStreamAsync(GetMultiDataStream(ct), ct);

    async IAsyncEnumerable<StreamItem> GetMultiDataStream([EnumeratorCancellation] CancellationToken ct)
    {
        long id = 0;

 ... (truncated)

## 6.2

---

## ❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current [unfortunate state of FOSS](https://www.youtube.com/watch?v=H96Va36xbvo), please consider [becoming a sponsor](https://opencollective.com/fast-endpoints) and help us beat the odds to keep the project alive and free for everyone.

---

<!-- <details><summary>title text</summary></details> -->

## New 🎉

<details><summary>Support 'Scope' based access restriction</summary>

Your can now restrict access based on [Scopes](https://oauth.net/2/scope) in tokens (e.g., from OAuth2/OpenID Connect IDPs). Simply specify required scopes using the newly added **Scopes()** method:

```cs
public override void Configure()
{
    Get("/item");
    Scopes("item:read", "item:write");
}

This allows access if the user's "scope" claim includes ANY of the listed values. To require ALL scopes, use ScopesAll() instead.

By default, scopes are read from the "scope" claim, which can be changed like so:

app.UseFastEndpoints(c => c.Security.ScopeClaimType = "scp")

If scope values aren't space-separated, customize parsing like so:

app.UseFastEndpoints(c => c.Security.ScopeParser = input =>
{
    //extract scope values and return a collection of strings
})
Automatic 'Accepts Metadata' for Non-Json requests

In the past, if an endpoint defines a request DTO type, an accepts-metadata of application/json would be automatically added to the endpoint, which would require the user to clear that default metadata if all the properties of the DTO is bound from non-json binding sources such as route/query/header etc.

Now, if the user annotates all the properties of a DTO with the respective non-json binding sources such as the following:

 ... (truncated)

Commits viewable in [compare view](https://github.com/FastEndpoints/FastEndpoints/compare/v6.1...v7.0.1).
</details>

Updated [FastEndpoints.Messaging.Remote](https://github.com/FastEndpoints/FastEndpoints) from 6.1.0 to 7.0.1.

<details>
<summary>Release notes</summary>

_Sourced from [FastEndpoints.Messaging.Remote's releases](https://github.com/FastEndpoints/FastEndpoints/releases)._

## 7.0.1

---

## ❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current [unfortunate state of FOSS](https://www.youtube.com/watch?v=H96Va36xbvo), please consider [becoming a sponsor](https://opencollective.com/fast-endpoints) and help us beat the odds to keep the project alive and free for everyone.

---

## New 🎉

<details><summary>Relocate response sending methods ⚠️</summary>

Response sending methods such as `SendOkAsync()` have been ripped out of the endpoint base class for a better intellisense experience and extensibility.

Going forward, the response sending methods are accessed via the `Send` property of the endpoint as follows:

```cs
public override async Task HandleAsync(CancellationToken c)
{
    await Send.OkAsync("hello world!");
}

In order to add your own custom response sending methods, simply target the IResponseSender interface and write extension methods like so:

static class SendExtensions
{
    public static Task HelloResponse(this IResponseSender sender)
        => sender.HttpContext.Response.SendOkAsync("hello!");
}

This is obviously is a wide-reaching breaking change which can be easily remedied with a quick regex based find & replace. Please see the breaking changes section below for step-by-step instructions on how to migrate. Takes less than a minute.

Send multiple Server-Sent-Event models in a single stream

It is now possible to send different types of data in a single SSE stream with the use of a wrapper type called StreamItem like so:

public override async Task HandleAsync(CancellationToken ct)
{
    await Send.EventStreamAsync(GetMultiDataStream(ct), ct);

    async IAsyncEnumerable<StreamItem> GetMultiDataStream([EnumeratorCancellation] CancellationToken ct)
    {
        long id = 0;

 ... (truncated)

## 6.2

---

## ❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current [unfortunate state of FOSS](https://www.youtube.com/watch?v=H96Va36xbvo), please consider [becoming a sponsor](https://opencollective.com/fast-endpoints) and help us beat the odds to keep the project alive and free for everyone.

---

<!-- <details><summary>title text</summary></details> -->

## New 🎉

<details><summary>Support 'Scope' based access restriction</summary>

Your can now restrict access based on [Scopes](https://oauth.net/2/scope) in tokens (e.g., from OAuth2/OpenID Connect IDPs). Simply specify required scopes using the newly added **Scopes()** method:

```cs
public override void Configure()
{
    Get("/item");
    Scopes("item:read", "item:write");
}

This allows access if the user's "scope" claim includes ANY of the listed values. To require ALL scopes, use ScopesAll() instead.

By default, scopes are read from the "scope" claim, which can be changed like so:

app.UseFastEndpoints(c => c.Security.ScopeClaimType = "scp")

If scope values aren't space-separated, customize parsing like so:

app.UseFastEndpoints(c => c.Security.ScopeParser = input =>
{
    //extract scope values and return a collection of strings
})
Automatic 'Accepts Metadata' for Non-Json requests

In the past, if an endpoint defines a request DTO type, an accepts-metadata of application/json would be automatically added to the endpoint, which would require the user to clear that default metadata if all the properties of the DTO is bound from non-json binding sources such as route/query/header etc.

Now, if the user annotates all the properties of a DTO with the respective non-json binding sources such as the following:

 ... (truncated)

Commits viewable in [compare view](https://github.com/FastEndpoints/FastEndpoints/compare/v6.1...v7.0.1).
</details>

Updated [FastEndpoints.Swagger](https://github.com/FastEndpoints/FastEndpoints) from 6.1.0 to 7.0.1.

<details>
<summary>Release notes</summary>

_Sourced from [FastEndpoints.Swagger's releases](https://github.com/FastEndpoints/FastEndpoints/releases)._

## 7.0.1

---

## ❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current [unfortunate state of FOSS](https://www.youtube.com/watch?v=H96Va36xbvo), please consider [becoming a sponsor](https://opencollective.com/fast-endpoints) and help us beat the odds to keep the project alive and free for everyone.

---

## New 🎉

<details><summary>Relocate response sending methods ⚠️</summary>

Response sending methods such as `SendOkAsync()` have been ripped out of the endpoint base class for a better intellisense experience and extensibility.

Going forward, the response sending methods are accessed via the `Send` property of the endpoint as follows:

```cs
public override async Task HandleAsync(CancellationToken c)
{
    await Send.OkAsync("hello world!");
}

In order to add your own custom response sending methods, simply target the IResponseSender interface and write extension methods like so:

static class SendExtensions
{
    public static Task HelloResponse(this IResponseSender sender)
        => sender.HttpContext.Response.SendOkAsync("hello!");
}

This is obviously is a wide-reaching breaking change which can be easily remedied with a quick regex based find & replace. Please see the breaking changes section below for step-by-step instructions on how to migrate. Takes less than a minute.

Send multiple Server-Sent-Event models in a single stream

It is now possible to send different types of data in a single SSE stream with the use of a wrapper type called StreamItem like so:

public override async Task HandleAsync(CancellationToken ct)
{
    await Send.EventStreamAsync(GetMultiDataStream(ct), ct);

    async IAsyncEnumerable<StreamItem> GetMultiDataStream([EnumeratorCancellation] CancellationToken ct)
    {
        long id = 0;

 ... (truncated)

## 6.2

---

## ❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current [unfortunate state of FOSS](https://www.youtube.com/watch?v=H96Va36xbvo), please consider [becoming a sponsor](https://opencollective.com/fast-endpoints) and help us beat the odds to keep the project alive and free for everyone.

---

<!-- <details><summary>title text</summary></details> -->

## New 🎉

<details><summary>Support 'Scope' based access restriction</summary>

Your can now restrict access based on [Scopes](https://oauth.net/2/scope) in tokens (e.g., from OAuth2/OpenID Connect IDPs). Simply specify required scopes using the newly added **Scopes()** method:

```cs
public override void Configure()
{
    Get("/item");
    Scopes("item:read", "item:write");
}

This allows access if the user's "scope" claim includes ANY of the listed values. To require ALL scopes, use ScopesAll() instead.

By default, scopes are read from the "scope" claim, which can be changed like so:

app.UseFastEndpoints(c => c.Security.ScopeClaimType = "scp")

If scope values aren't space-separated, customize parsing like so:

app.UseFastEndpoints(c => c.Security.ScopeParser = input =>
{
    //extract scope values and return a collection of strings
})
Automatic 'Accepts Metadata' for Non-Json requests

In the past, if an endpoint defines a request DTO type, an accepts-metadata of application/json would be automatically added to the endpoint, which would require the user to clear that default metadata if all the properties of the DTO is bound from non-json binding sources such as route/query/header etc.

Now, if the user annotates all the properties of a DTO with the respective non-json binding sources such as the following:

 ... (truncated)

Commits viewable in [compare view](https://github.com/FastEndpoints/FastEndpoints/compare/v6.1...v7.0.1).
</details>

Updated [MassTransit](https://github.com/MassTransit/MassTransit) from 8.4.1 to 8.5.1.

<details>
<summary>Release notes</summary>

_Sourced from [MassTransit's releases](https://github.com/MassTransit/MassTransit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/MassTransit/MassTransit/commits).
</details>

Updated [MassTransit.EntityFrameworkCore](https://github.com/MassTransit/MassTransit) from 8.4.1 to 8.5.1.

<details>
<summary>Release notes</summary>

_Sourced from [MassTransit.EntityFrameworkCore's releases](https://github.com/MassTransit/MassTransit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/MassTransit/MassTransit/commits).
</details>

Updated [MassTransit.RabbitMQ](https://github.com/MassTransit/MassTransit) from 8.4.1 to 8.5.1.

<details>
<summary>Release notes</summary>

_Sourced from [MassTransit.RabbitMQ's releases](https://github.com/MassTransit/MassTransit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/MassTransit/MassTransit/commits).
</details>

Updated [Meziantou.Analyzer](https://github.com/meziantou/Meziantou.Analyzer) from 2.0.202 to 2.0.208.

<details>
<summary>Release notes</summary>

_Sourced from [Meziantou.Analyzer's releases](https://github.com/meziantou/Meziantou.Analyzer/releases)._

## 2.0.208

NuGet package: <https://www.nuget.org/packages/Meziantou.Analyzer/2.0.208>

**Full Changelog**: https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.207...2.0.208

## 2.0.207

NuGet package: <https://www.nuget.org/packages/Meziantou.Analyzer/2.0.207>

## What's Changed
* Apply repository configuration by @​meziantou in https://github.com/meziantou/Meziantou.Analyzer/pull/817


**Full Changelog**: https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.206...2.0.207

## 2.0.206

NuGet package: <https://www.nuget.org/packages/Meziantou.Analyzer/2.0.206>

## What's Changed
* Simplify msbuild properties by @​meziantou in https://github.com/meziantou/Meziantou.Analyzer/pull/816


**Full Changelog**: https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.205...2.0.206

## 2.0.205

NuGet package: <https://www.nuget.org/packages/Meziantou.Analyzer/2.0.205>

## What's Changed
* MA0053 takes ctor visibility into account to determine if a class should be sealed by @​meziantou in https://github.com/meziantou/Meziantou.Analyzer/pull/815


**Full Changelog**: https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.204...2.0.205

## 2.0.204

NuGet package: <https://www.nuget.org/packages/Meziantou.Analyzer/2.0.204>

## What's Changed
* Convert sln to slnx by @​meziantou in https://github.com/meziantou/Meziantou.Analyzer/pull/814


**Full Changelog**: https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.203...2.0.204

## 2.0.203

NuGet package: <https://www.nuget.org/packages/Meziantou.Analyzer/2.0.203>

**Full Changelog**: https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.202...2.0.203

Commits viewable in [compare view](https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.202...2.0.208).
</details>

Updated [Microsoft.AspNetCore.HeaderPropagation](https://github.com/dotnet/aspnetcore) from 9.0.6 to 9.0.7.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.AspNetCore.HeaderPropagation's releases](https://github.com/dotnet/aspnetcore/releases)._

## 9.0.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.7)

## What's Changed
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62242
* [release/9.0] (deps): Bump src/submodules/googletest from `04ee1b4` to `e9092b1` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/62199
* Fix OpenApiJsonSchema array parsing (#​62051) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62118
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61986
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61945
* [release/9.0] Update Alpine helix references by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/62240
* [Backport 9.0] [IIS] Manually parse exe bitness (#​61894) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62038
* [release/9.0] Associate tagged keys with entries so replacements are not evicted by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62248
* [release/9.0] Block test that is failing after switching to latest-chrome by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62283
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62281
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62282
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62303


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.6...v9.0.7

Commits viewable in [compare view](https://github.com/dotnet/aspnetcore/compare/v9.0.6...v9.0.7).
</details>

Updated [Microsoft.AspNetCore.OpenApi](https://github.com/dotnet/aspnetcore) from 9.0.6 to 9.0.7.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.AspNetCore.OpenApi's releases](https://github.com/dotnet/aspnetcore/releases)._

## 9.0.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.7)

## What's Changed
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62242
* [release/9.0] (deps): Bump src/submodules/googletest from `04ee1b4` to `e9092b1` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/62199
* Fix OpenApiJsonSchema array parsing (#​62051) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62118
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61986
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61945
* [release/9.0] Update Alpine helix references by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/62240
* [Backport 9.0] [IIS] Manually parse exe bitness (#​61894) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62038
* [release/9.0] Associate tagged keys with entries so replacements are not evicted by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62248
* [release/9.0] Block test that is failing after switching to latest-chrome by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62283
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62281
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62282
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62303


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.6...v9.0.7

Commits viewable in [compare view](https://github.com/dotnet/aspnetcore/compare/v9.0.6...v9.0.7).
</details>

Updated [Microsoft.EntityFrameworkCore](https://github.com/dotnet/efcore) from 9.0.6 to 9.0.7.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.EntityFrameworkCore's releases](https://github.com/dotnet/efcore/releases)._

## 9.0.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.7)

## What's Changed
* Merge branch 'release/8.0' =>'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35893
* Merge branch 'release/8.0' =>'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36047
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36098
* Delete src/arcade/eng/common directory by @​akoeplinger in https://github.com/dotnet/efcore/pull/36102
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36143
* [release/8.0] Add missing parentheses for set operations by @​roji in https://github.com/dotnet/efcore/pull/36139
* [release/9.0] Add missing parentheses for set operations by @​roji in https://github.com/dotnet/efcore/pull/36138
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36186
* Update branding to 8.0.18 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36185
* [release/8.0] Merge release/8.0-staging => release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36193
* [release/9.0] Merge release/9.0-staging => release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36194
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36192
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36213
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36222
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36223
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36227


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.6...v9.0.7

Commits viewable in [compare view](https://github.com/dotnet/efcore/compare/v9.0.6...v9.0.7).
</details>

Updated [Microsoft.EntityFrameworkCore.Relational](https://github.com/dotnet/efcore) from 9.0.6 to 9.0.7.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.EntityFrameworkCore.Relational's releases](https://github.com/dotnet/efcore/releases)._

## 9.0.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.7)

## What's Changed
* Merge branch 'release/8.0' =>'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35893
* Merge branch 'release/8.0' =>'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36047
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36098
* Delete src/arcade/eng/common directory by @​akoeplinger in https://github.com/dotnet/efcore/pull/36102
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36143
* [release/8.0] Add missing parentheses for set operations by @​roji in https://github.com/dotnet/efcore/pull/36139
* [release/9.0] Add missing parentheses for set operations by @​roji in https://github.com/dotnet/efcore/pull/36138
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36186
* Update branding to 8.0.18 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36185
* [release/8.0] Merge release/8.0-staging => release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36193
* [release/9.0] Merge release/9.0-staging => release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36194
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36192
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36213
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36222
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36223
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36227


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.6...v9.0.7

Commits viewable in [compare view](https://github.com/dotnet/efcore/compare/v9.0.6...v9.0.7).
</details>

Updated [Microsoft.Extensions.Caching.StackExchangeRedis](https://github.com/dotnet/aspnetcore) from 9.0.6 to 9.0.7.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Caching.StackExchangeRedis's releases](https://github.com/dotnet/aspnetcore/releases)._

## 9.0.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.7)

## What's Changed
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62242
* [release/9.0] (deps): Bump src/submodules/googletest from `04ee1b4` to `e9092b1` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/62199
* Fix OpenApiJsonSchema array parsing (#​62051) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62118
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61986
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61945
* [release/9.0] Update Alpine helix references by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/62240
* [Backport 9.0] [IIS] Manually parse exe bitness (#​61894) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62038
* [release/9.0] Associate tagged keys with entries so replacements are not evicted by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62248
* [release/9.0] Block test that is failing after switching to latest-chrome by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62283
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62281
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62282
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62303


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.6...v9.0.7

Commits viewable in [compare view](https://github.com/dotnet/aspnetcore/compare/v9.0.6...v9.0.7).
</details>

Updated [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) from 9.0.6 to 9.0.7.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.DependencyInjection's releases](https://github.com/dotnet/runtime/releases)._

## 9.0.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.7)

## What's Changed
* [release/9.0-staging] Fix crash during Async Break when APC and CET are enabled by @​thaystg in https://github.com/dotnet/runtime/pull/114932
* [release/9.0-staging] [STJ] Account for F# CompilationMappingAttribute now supporting multiple declarations. by @​github-actions in https://github.com/dotnet/runtime/pull/115076
* [release/9.0-staging][wasm][interpreter] Fix PackedSimd interpreter intrinsics by @​lewing in https://github.com/dotnet/runtime/pull/114218
* [release/9.0-staging] JIT: Fix invalid removal of explicit zeroing in methods without .localsinit by @​jakobbotsch in https://github.com/dotnet/runtime/pull/115568
* [release/9.0-staging] throw an exception instead of infinite loop in `sort_mark_list` by @​github-actions in https://github.com/dotnet/runtime/pull/115529
* [release/9.0-staging] [DNS] Ignore ObjectDisposedException on CancellationToken Callback by @​github-actions in https://github.com/dotnet/runtime/pull/115840
* Revert "[release/9.0-staging] Fix crash during Async Break when APC and CET are enabled" by @​thaystg in https://github.com/dotnet/runtime/pull/116015
* [release/9.0-staging] Fix SysV first/second return register GC info mismatch by @​jakobbotsch in https://github.com/dotnet/runtime/pull/116206
* [release/9.0-staging] Fix PipeStream leak on Windows when pipe is disposed with a pending operation by @​github-actions in https://github.com/dotnet/runtime/pull/116188
* [release/9.0] Fix edge cases in Tarjan GC bridge (Android) by @​filipnavara in https://github.com/dotnet/runtime/pull/114682
* [release/9.0-staging] Revert change to follow symlinks of dotnet host  by @​github-actions in https://github.com/dotnet/runtime/pull/116244
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/116312
* [release/9.0-staging] Fix generation of minidump by @​github-actions in https://github.com/dotnet/runtime/pull/115738
* [release/9.0-staging] fix: in rsa signatures, configure digest before padding mode by @​github-actions in https://github.com/dotnet/runtime/pull/115695
* [release/9.0-staging] JIT: Fix possible heap corruption in outlined composite SSA storage by @​github-actions in https://github.com/dotnet/runtime/pull/116132
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115984
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115855
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115597
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115710
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115504
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115589
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115537
* Bump SDK version used by WASM since it was broken by dotnet/arcade codeflow by @​jozkee in https://github.com/dotnet/runtime/pull/116450
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/115576
* [release/9.0-staging] Link peer's X509 stack handle to parent SSL safe handle by @​github-actions in https://github.com/dotnet/runtime/pull/115380
* [release/9.0-staging] [mono][interp] Minor SSA fixes by @​BrzVlad in https://github.com/dotnet/runtime/pull/116428
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115677
* [release/9.0-staging] Disable the UTFStringConversionFailures test on CI runs by @​github-actions in https://github.com/dotnet/runtime/pull/116460
* [manual] Merge release/9.0-staging into release/9.0 by @​jozkee in https://github.com/dotnet/runtime/pull/116459
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/116499
* [release/9.0] Delete s390x and ppc64le helix queues by @​github-actions in https://github.com/dotnet/runtime/pull/116537


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.6...v9.0.7

Commits viewable in [compare view](https://github.com/dotnet/runtime/compare/v9.0.6...v9.0.7).
</details>

Updated [Microsoft.Extensions.DependencyInjection.Abstractions](https://github.com/dotnet/runtime) from 9.0.6 to 9.0.7.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.DependencyInjection.Abstractions's releases](https://github.com/dotnet/runtime/releases)._

## 9.0.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.7)

## What's Changed
* [release/9.0-staging] Fix crash during Async Break when APC and CET are enabled by @​thaystg in https://github.com/dotnet/runtime/pull/114932
* [release/9.0-staging] [STJ] Account for F# CompilationMappingAttribute now supporting multiple declarations. by @​github-actions in https://github.com/dotnet/runtime/pull/115076
* [release/9.0-staging][wasm][interpreter] Fix PackedSimd interpreter intrinsics by @​lewing in https://github.com/dotnet/runtime/pull/114218
* [release/9.0-staging] JIT: Fix invalid removal of explicit zeroing in methods without .localsinit by @​jakobbotsch in https://github.com/dotnet/runtime/pull/115568
* [release/9.0-staging] throw an exception instead of infinite loop in `sort_mark_list` by @​github-actions in https://github.com/dotnet/runtime/pull/115529
* [release/9.0-staging] [DNS] Ignore ObjectDisposedException on CancellationToken Callback by @​github-actions in https://github.com/dotnet/runtime/pull/115840
* Revert "[release/9.0-staging] Fix crash during Async Break when APC and CET are enabled" by @​thaystg in https://github.com/dotnet/runtime/pull/116015
* [release/9.0-staging] Fix SysV first/second return register GC info mismatch by @​jakobbotsch in https://github.com/dotnet/runtime/pull/116206
* [release/9.0-staging] Fix PipeStream leak on Windows when pipe is disposed with a pending operation by @​github-actions in https://github.com/dotnet/runtime/pull/116188
* [release/9.0] Fix edge cases in Tarjan GC bridge (Android) by @​filipnavara in https://github.com/dotnet/runtime/pull/114682
* [release/9.0-staging] Revert change to follow symlinks of dotnet host  by @​github-actions in https://github.com/dotnet/runtime/pull/116244
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/116312
* [release/9.0-staging] Fix generation of minidump by @​github-actions in https://github.com/dotnet/runtime/pull/115738
* [release/9.0-staging] fix: in rsa signatures, configure digest before padding mode by @​github-actions in https://github.com/dotnet/runtime/pull/115695
* [release/9.0-staging] JIT: Fix possible heap corruption in outlined composite SSA storage by @​github-actions in https://github.com/dotnet/runtime/pull/116132
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115984
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115855
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115597
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115710
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115504
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115589
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115537
* Bump SDK version used by WASM since it was broken by dotnet/arcade codeflow by @​jozkee in https://github.com/dotnet/runtime/pull/116450
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/115576
* [release/9.0-staging] Link peer's X509 stack handle to parent SSL safe handle by @​github-actions in https://github.com/dotnet/runtime/pull/115380
* [release/9.0-staging] [mono][interp] Minor SSA fixes by @​BrzVlad in https://github.com/dotnet/runtime/pull/116428
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115677
* [release/9.0-staging] Disable the UTFStringConversionFailures test on CI runs by @​github-actions in https://github.com/dotnet/runtime/pull/116460
* [manual] Merge release/9.0-staging into release/9.0 by @​jozkee in https://github.com/dotnet/runtime/pull/116459
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/116499
* [release/9.0] Delete s390x and ppc64le helix queues by @​github-actions in https://github.com/dotnet/runtime/pull/116537


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.6...v9.0.7

Commits viewable in [compare view](https://github.com/dotnet/runtime/compare/v9.0.6...v9.0.7).
</details>

Updated [Microsoft.Extensions.ServiceDiscovery](https://github.com/dotnet/aspire) from 9.3.1 to 9.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.ServiceDiscovery's releases](https://github.com/dotnet/aspire/releases)._

## 9.3.2

## What's Changed
* [release/9.3] Fix SqlServer PowerShell module version to avoid breaking changes in 22.4.5.1 by @​sebastienros in https://github.com/dotnet/aspire/pull/9958
* Bumping patch version for 9.3.2 by @​joperezr in https://github.com/dotnet/aspire/pull/9963


**Full Changelog**: https://github.com/dotnet/aspire/compare/v9.3.1...v9.3.2

Commits viewable in [compare view](https://github.com/dotnet/aspire/commits).
</details>

Updated [Microsoft.Extensions.ServiceDiscovery.Abstractions](https://github.com/dotnet/aspire) from 9.3.1 to 9.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.ServiceDiscovery.Abstractions's releases](https://github.com/dotnet/aspire/releases)._

## 9.3.2

## What's Changed
* [release/9.3] Fix SqlServer PowerShell module version to avoid breaking changes in 22.4.5.1 by @​sebastienros in https://github.com/dotnet/aspire/pull/9958
* Bumping patch version for 9.3.2 by @​joperezr in https://github.com/dotnet/aspire/pull/9963


**Full Changelog**: https://github.com/dotnet/aspire/compare/v9.3.1...v9.3.2

Commits viewable in [compare view](https://github.com/dotnet/aspire/commits).
</details>

Updated [Microsoft.Extensions.ServiceDiscovery.Dns](https://github.com/dotnet/aspire) from 9.3.1 to 9.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.ServiceDiscovery.Dns's releases](https://github.com/dotnet/aspire/releases)._

## 9.3.2

## What's Changed
* [release/9.3] Fix SqlServer PowerShell module version to avoid breaking changes in 22.4.5.1 by @​sebastienros in https://github.com/dotnet/aspire/pull/9958
* Bumping patch version for 9.3.2 by @​joperezr in https://github.com/dotnet/aspire/pull/9963


**Full Changelog**: https://github.com/dotnet/aspire/compare/v9.3.1...v9.3.2

Commits viewable in [compare view](https://github.com/dotnet/aspire/commits).
</details>

Updated [Microsoft.Extensions.ServiceDiscovery.Yarp](https://github.com/dotnet/aspire) from 9.3.1 to 9.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.ServiceDiscovery.Yarp's releases](https://github.com/dotnet/aspire/releases)._

## 9.3.2

## What's Changed
* [release/9.3] Fix SqlServer PowerShell module version to avoid breaking changes in 22.4.5.1 by @​sebastienros in https://github.com/dotnet/aspire/pull/9958
* Bumping patch version for 9.3.2 by @​joperezr in https://github.com/dotnet/aspire/pull/9963


**Full Changelog**: https://github.com/dotnet/aspire/compare/v9.3.1...v9.3.2

Commits viewable in [compare view](https://github.com/dotnet/aspire/commits).
</details>

Updated [Roslynator.Analyzers](https://github.com/dotnet/roslynator) from 4.13.1 to 4.14.0.

<details>
<summary>Release notes</summary>

_Sourced from [Roslynator.Analyzers's releases](https://github.com/dotnet/roslynator/releases)._

## 4.14.0

### Added

- [CLI] Add support for GitLab analyzer reports ([PR](https://github.com/dotnet/roslynator/pull/1633))

### Fixed

- Fix analyzer [RCS1264](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1264) ([PR](https://github.com/dotnet/roslynator/pull/1666))
- Fix analyzer [RCS1229](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1229) ([PR](https://github.com/dotnet/roslynator/pull/1667))
- Fix analyzer [RCS1250](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1250) ([PR](https://github.com/dotnet/roslynator/pull/1652) by @​aihnatiuk)
- Fix analyzer [RCS1260](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1260) ([PR](https://github.com/dotnet/roslynator/pull/1668))
- Fix analyzer [RCS1105](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1105) ([PR](https://github.com/dotnet/roslynator/pull/1669))
- Fix analyzer [RCS1260](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1260) ([PR](https://github.com/dotnet/roslynator/pull/1672))

### Changed

- Disable analyzer [RCS1036](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1036) by default ([PR](https://github.com/dotnet/roslynator/pull/1671))
  - Use analyzer [RCS0063](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS0063) instead 

### Removed

- Remove legacy config options ([PR](https://github.com/dotnet/roslynator/pull/1304))


Commits viewable in [compare view](https://github.com/dotnet/roslynator/compare/v4.13.1...v4.14.0).
</details>

Updated [Roslynator.CodeAnalysis.Analyzers](https://github.com/dotnet/roslynator) from 4.13.1 to 4.14.0.

<details>
<summary>Release notes</summary>

_Sourced from [Roslynator.CodeAnalysis.Analyzers's releases](https://github.com/dotnet/roslynator/releases)._

## 4.14.0

### Added

- [CLI] Add support for GitLab analyzer reports ([PR](https://github.com/dotnet/roslynator/pull/1633))

### Fixed

- Fix analyzer [RCS1264](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1264) ([PR](https://github.com/dotnet/roslynator/pull/1666))
- Fix analyzer [RCS1229](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1229) ([PR](https://github.com/dotnet/roslynator/pull/1667))
- Fix analyzer [RCS1250](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1250) ([PR](https://github.com/dotnet/roslynator/pull/1652) by @​aihnatiuk)
- Fix analyzer [RCS1260](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1260) ([PR](https://github.com/dotnet/roslynator/pull/1668))
- Fix analyzer [RCS1105](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1105) ([PR](https://github.com/dotnet/roslynator/pull/1669))
- Fix analyzer [RCS1260](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1260) ([PR](https://github.com/dotnet/roslynator/pull/1672))

### Changed

- Disable analyzer [RCS1036](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1036) by default ([PR](https://github.com/dotnet/roslynator/pull/1671))
  - Use analyzer [RCS0063](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS0063) instead 

### Removed

- Remove legacy config options ([PR](https://github.com/dotnet/roslynator/pull/1304))


Commits viewable in [compare view](https://github.com/dotnet/roslynator/compare/v4.13.1...v4.14.0).
</details>

Updated [Roslynator.Formatting.Analyzers](https://github.com/dotnet/roslynator) from 4.13.1 to 4.14.0.

<details>
<summary>Release notes</summary>

_Sourced from [Roslynator.Formatting.Analyzers's releases](https://github.com/dotnet/roslynator/releases)._

## 4.14.0

### Added

- [CLI] Add support for GitLab analyzer reports ([PR](https://github.com/dotnet/roslynator/pull/1633))

### Fixed

- Fix analyzer [RCS1264](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1264) ([PR](https://github.com/dotnet/roslynator/pull/1666))
- Fix analyzer [RCS1229](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1229) ([PR](https://github.com/dotnet/roslynator/pull/1667))
- Fix analyzer [RCS1250](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1250) ([PR](https://github.com/dotnet/roslynator/pull/1652) by @​aihnatiuk)
- Fix analyzer [RCS1260](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1260) ([PR](https://github.com/dotnet/roslynator/pull/1668))
- Fix analyzer [RCS1105](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1105) ([PR](https://github.com/dotnet/roslynator/pull/1669))
- Fix analyzer [RCS1260](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1260) ([PR](https://github.com/dotnet/roslynator/pull/1672))

### Changed

- Disable analyzer [RCS1036](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1036) by default ([PR](https://github.com/dotnet/roslynator/pull/1671))
  - Use analyzer [RCS0063](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS0063) instead 

### Removed

- Remove legacy config options ([PR](https://github.com/dotnet/roslynator/pull/1304))


Commits viewable in [compare view](https://github.com/dotnet/roslynator/compare/v4.13.1...v4.14.0).
</details>

Updated [Scalar.AspNetCore](https://github.com/scalar/scalar) from 2.4.16 to 2.6.4.

<details>
<summary>Release notes</summary>

_Sourced from [Scalar.AspNetCore's releases](https://github.com/scalar/scalar/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/scalar/scalar/commits).
</details>

Updated [Soenneker.Utils.AutoBogus](https://github.com/soenneker/soenneker.utils.autobogus) from 3.0.778 to 3.0.787.

<details>
<summary>Release notes</summary>

_Sourced from [Soenneker.Utils.AutoBogus's releases](https://github.com/soenneker/soenneker.utils.autobogus/releases)._

## 3.0.787

- chore(deps): update dependency soenneker.reflection.cache to 3.0.541 (#​783)

## 3.0.786

- chore(deps): update dependency system.collections.immutable to 9.0.7 (#​782)

## 3.0.785

- Fixed array support Stream support ImmutableDictionary support Performance improvements

## 3.0.784

- chore(deps): update dependency soenneker.reflection.cache to 3.0.540 (#​778)

## 3.0.783

- chore(deps): update dependency soenneker.reflection.cache to 3.0.539 (#​777)

## 3.0.782

- chore(deps): update dependency soenneker.reflection.cache to 3.0.538 (#​776)

## 3.0.781

- chore(deps): update dependency soenneker.extensions.fieldinfo to 3.0.56 (#​770)

## 3.0.780

- chore(deps): update dependency soenneker.extensions.memberinfo to 3.0.51 (#​771)

## 3.0.779

- cleanup

Commits viewable in [compare view](https://github.com/soenneker/soenneker.utils.autobogus/compare/v3.0.778...v3.0.787).
</details>

Updated [Soenneker.Utils.AutoBogus.NSubstitute](https://github.com/soenneker/soenneker.utils.autobogus.nsubstitute) from 3.0.686 to 3.0.694.

<details>
<summary>Release notes</summary>

_Sourced from [Soenneker.Utils.AutoBogus.NSubstitute's releases](https://github.com/soenneker/soenneker.utils.autobogus.nsubstitute/releases)._

## 3.0.694

- Update dependency Soenneker.Utils.AutoBogus to 3.0.787 (#​771)

## 3.0.693

- Update dependency Soenneker.Utils.AutoBogus to 3.0.786 (#​769)

## 3.0.692

- Update dependency Soenneker.Utils.AutoBogus to 3.0.785 (#​767)

## 3.0.691

- Update dependency Soenneker.Utils.AutoBogus to 3.0.784 (#​759)

## 3.0.690

- Update dependency Soenneker.Utils.AutoBogus to 3.0.782 (#​757)

## 3.0.689

- Update dependency Soenneker.Utils.AutoBogus to 3.0.781 (#​754)

## 3.0.688

- Update dependency Soenneker.Utils.AutoBogus to 3.0.780 (#​751)

## 3.0.687

- cleanup

Commits viewable in [compare view](https://github.com/soenneker/soenneker.utils.autobogus.nsubstitute/compare/v3.0.686...v3.0.694).
</details>

Updated [SonarAnalyzer.CSharp](https://github.com/SonarSource/sonar-dotnet) from 10.11.0.117924 to 10.15.0.120848.

<details>
<summary>Release notes</summary>

_Sourced from [SonarAnalyzer.CSharp's releases](https://github.com/SonarSource/sonar-dotnet/releases)._

## 10.15

### False Positive

* [NET-2198](https://sonarsource.atlassian.net/browse/NET-2198) - Fix S1905 FP: Cast of default! expression is required
* [NET-2197](https://sonarsource.atlassian.net/browse/NET-2197) - Fix S1905 FP: stackalloc and Span<T> conversions
* [NET-1641](https://sonarsource.atlassian.net/browse/NET-1641) - Fix S1905 FP: casting `IEnumerable<string?>` to `IEnumerable<string>`
* [NET-2157](https://sonarsource.atlassian.net/browse/NET-2157) - Fix S2589 FP: Don't raise an issue after a delegate is invoked
* [NET-2073](https://sonarsource.atlassian.net/browse/NET-2073) - Fix S2699 FP: Add support for FsCheck property tests
* [NET-1537](https://sonarsource.atlassian.net/browse/NET-1537) - Fix S6964 FP: Don't raise on properties annotated with the BindRequiredAttribute

### Improvement

* [NET-2112](https://sonarsource.atlassian.net/browse/NET-2112) - Consider ExplodedNodes relevant if a successor would be relevant
* [NET-2183](https://sonarsource.atlassian.net/browse/NET-2183) - SE: Set constraint on operation when learning from IsPattern

### False Negative

* [NET-429](https://sonarsource.atlassian.net/browse/NET-429) - Fix S4275 FN: Support partial properties

### Task

* [NET-2208](https://sonarsource.atlassian.net/browse/NET-2208) - Update RSpec before release

## 10.14

Hey everyone,

This release mostly focuses on mitigating (NET-2196) a performance regression that was introduced in 10.13.


### Improvement

* [NET-2196](https://sonarsource.atlassian.net/browse/NET-2196) - Fix path algorithm for execution flows to mitigate performance regression
* [NET-2177](https://sonarsource.atlassian.net/browse/NET-2177) - Improve how the Symbolic Execution engine handles exception paths
* [NET-2135](https://sonarsource.atlassian.net/browse/NET-2135) - Support xUnit V3
* [NET-2163](https://sonarsource.atlassian.net/browse/NET-2163) - Provide Interface for other plugins to add rules to VB.NET SonarWay profile

### False Negative

* [NET-235](https://sonarsource.atlassian.net/browse/NET-235) - Fix S2053: Adjust required salt length to be 32 bytes

### Task

* [NET-2170](https://sonarsource.atlassian.net/browse/NET-2170) - Update RSPEC before 10.14 release

## 10.13

Hello everyone, 

In this release, we've focused on:
- False positive fixes
- Enhancing S2259's secondary locations to provide clearer, step-by-step explanations of null pointer dereferences issues.



### False Positives

* [NET-2099](https://sonarsource.atlassian.net/browse/NET-2099) - Fix S3885 FP: Do not raise in ResolutionEventHandler
* [NET-2023](https://sonarsource.atlassian.net/browse/NET-2023) - Fix S3257 FP: Array with target-typed new
* [NET-1646](https://sonarsource.atlassian.net/browse/NET-1646) - Fix S3267 FP: Loops should be simplified with LINQ expressions
* [NET-1588](https://sonarsource.atlassian.net/browse/NET-1588) - Fix S1066 FP: Combination of `dynamic` and `out` should not raise
* [NET-882](https://sonarsource.atlassian.net/browse/NET-882) - Fix S3257 FP: Don't raise for C# 10 and later when there's explicit delegate creation

### Improvements

* [NET-2095](https://sonarsource.atlassian.net/browse/NET-2095) - Improve incremental PR analysis path detection
* SE: S2259 - Improve secondary locations



## 10.12

This release brings the VB version of S6418 and a few FP and FN fixes.

### New Rule

* [NET-1379](https://sonarsource.atlassian.net/browse/NET-1379) - New Rule: Implement S6418 Hard-coded secrets are security-sensitive for VB.NET

### False Positive

* [NET-1526](https://sonarsource.atlassian.net/browse/NET-1526) - Fix S3267 FP: Only raise on IEnumerable

### False Negative

* [NET-1260](https://sonarsource.atlassian.net/browse/NET-1260) - Fix S1215 FN: GC.GetTotalMemory(forceFullCollection: true) should not be called 
* [NET-1258](https://sonarsource.atlassian.net/browse/NET-1258) - Fix S6678 FN: Lowercase placeholders in interpolated string
* [NET-1255](https://sonarsource.atlassian.net/browse/NET-1255) - Fix S3267 FN: Logical operators are not supported

### Task

* [NET-2060](https://sonarsource.atlassian.net/browse/NET-2060) - Update RSPEC before 11.12 release


Commits viewable in [compare view](https://github.com/SonarSource/sonar-dotnet/commits).
</details>

Updated [StackExchange.Redis](https://github.com/StackExchange/StackExchange.Redis/) from 2.8.41 to 2.8.58.

<details>
<summary>Release notes</summary>

_Sourced from [StackExchange.Redis's releases](https://github.com/StackExchange/StackExchange.Redis//releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/StackExchange/StackExchange.Redis//commits).
</details>

Updated [System.IdentityModel.Tokens.Jwt](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) from 8.12.0 to 8.13.0.

<details>
<summary>Release notes</summary>

_Sourced from [System.IdentityModel.Tokens.Jwt's releases](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)._

## 8.13.0

8.13.0
====
### Fundamentals
- `CaseSensitiveClaimsIdentity.SecurityToken` setter is now protected internal (was internal). See PR [#​3278](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3278) for details.
- Update .NET SDK version to 9.0.108 used when building or running the code. See PR [#​3274](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3274) for details.
- Update RsaSecurityKey.cs to replace the Pkcs1 padding by Pss from HasPrivateKey check. See [#​3280](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3280) for details.

## What's Changed
* Make CaseSensitiveClaimsIdentity.SecurityToken setter protected by @​keegan-caruso in https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3278
* Update .NET SDK version in global.json from 9.0.107 to 9.0.108 by @​Copilot in https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3274
* Update RsaSecurityKey.cs to remove Pkcs 1 by @​keegan-caruso in https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3280
* changelog for 8.13 by @​jennyf19 in https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3282

## New Contributors
* @​Copilot made their first contribution in https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3274

**Full Changelog**: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/compare/8.12.1...8.13.0

## 8.12.1

8.12.1
====
### Fundamentals
- Update .NET SDK version to 9.0.107 used when building or running the code. See [#​3263](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3263) for details.
- To keep our experimental code separate from production code, all files associated with experimental features have been moved to the Experimental folders. See PR [#​3261](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3261) for details.
- Experimental code leaked into TokenValidationResult from early prototypes. See PR [#​3259](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3259) for details.

## What's Changed
* Remove experimental code from TokenValidationResult by @​brentschmaltz in https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3259
* Moved files to experimental folder by @​brentschmaltz in https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3261
* Update global.json to latest by @​jennyf19 in https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/3263


**Full Changelog**: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/compare/8.12.0...8.12.1

Commits viewable in [compare view](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/compare/8.12.0...8.13.0).
</details>

Updated System.Text.Encodings.Web from 9.0.6 to 9.0.7.

Updated System.Text.Json from 9.0.6 to 9.0.7.

Updated [TngTech.ArchUnitNET](https://github.com/TNG/ArchUnitNET) from 0.11.4 to 0.12.1.

<details>
<summary>Release notes</summary>

_Sourced from [TngTech.ArchUnitNET's releases](https://github.com/TNG/ArchUnitNET/releases)._

## 0.12.1

## Fixes
* ResideInNamespaceMatching and ResideInAssemblyMatching incorrectly forward call by @​tnotheis in https://github.com/TNG/ArchUnitNET/pull/379

## New Contributors
* @​tnotheis made their first contribution in https://github.com/TNG/ArchUnitNET/pull/379

**Full Changelog**: https://github.com/TNG/ArchUnitNET/compare/0.12.0...0.12.1

## 0.12.0

## Breaking Changes

### Marking soon to be removed methods in the fluent api as obsolete by @​brandhuf in https://github.com/TNG/ArchUnitNET/pull/362
Until now, ArchUnitNET provided overloads of functions in the fluent syntax that took a string as an argument like `Types().That().DependOnAny("ExampleClass")` or `Types().That().DependOnAny(".*ExampleClass", true)`. Here, however, it is unclear whether the string would match the Name, FullName or AssemblyQualifiedName. These functions have now been marked as obsolete and will be removed in version `0.13.0`.

Besides `HaveName`, the fluent interface now also provides the functions `HaveNameMatching`, `HaveFullName` and `HaveFullNameMatching`. The above call can therefore be replaced with `Types().That().DependOnAny(Types().That().HaveName("ExampleClass"))` or `Types().That().DependOnAny(Types().That().HaveFullNameMatching(".*ExampleClass"))`, giving a clear indication of what is matched and how it is matched.

### Don't Set Assembly Name To It's Full Name by @​alexanderlinne in https://github.com/TNG/ArchUnitNET/pull/372
This is a bug where the Name of an assembly was always set to its FullName. This may be a breaking change for code that currently relies on this behaviour.

## Fixes
* Fix Check in AreNotReadOnly Predicate by @​alexanderlinne in https://github.com/TNG/ArchUnitNET/pull/373

## Enhancements
* Reduce Code Duplication in Fluent Syntax Object Conditions by @​alexanderlinne in https://github.com/TNG/ArchUnitNET/pull/367

## Dependency Updates
* chore(deps): update dependency csharpier to v1 by @​renovate[bot] in https://github.com/TNG/ArchUnitNET/pull/364

**Full C...

_De...

_Description has been truncated_

Bumps Aspire.Hosting.PostgreSQL from 9.3.1 to 9.4.0
Bumps Aspire.Hosting.RabbitMQ from 9.3.1 to 9.4.0
Bumps Aspire.Hosting.Redis from 9.3.1 to 9.4.0
Bumps Aspire.StackExchange.Redis from 9.3.1 to 9.4.0
Bumps Aspire.StackExchange.Redis.DistributedCaching from 9.3.1 to 9.4.0
Bumps FastEndpoints from 6.1.0 to 7.0.1
Bumps FastEndpoints.Messaging.Core from 6.1.0 to 7.0.1
Bumps FastEndpoints.Messaging.Remote from 6.1.0 to 7.0.1
Bumps FastEndpoints.Swagger from 6.1.0 to 7.0.1
Bumps MassTransit from 8.4.1 to 8.5.1
Bumps MassTransit.EntityFrameworkCore from 8.4.1 to 8.5.1
Bumps MassTransit.RabbitMQ from 8.4.1 to 8.5.1
Bumps Meziantou.Analyzer from 2.0.202 to 2.0.208
Bumps Microsoft.AspNetCore.HeaderPropagation from 9.0.6 to 9.0.7
Bumps Microsoft.AspNetCore.OpenApi from 9.0.6 to 9.0.7
Bumps Microsoft.EntityFrameworkCore from 9.0.6 to 9.0.7
Bumps Microsoft.EntityFrameworkCore.Relational from 9.0.6 to 9.0.7
Bumps Microsoft.Extensions.Caching.StackExchangeRedis from 9.0.6 to 9.0.7
Bumps Microsoft.Extensions.DependencyInjection from 9.0.6 to 9.0.7
Bumps Microsoft.Extensions.DependencyInjection.Abstractions from 9.0.6 to 9.0.7
Bumps Microsoft.Extensions.ServiceDiscovery from 9.3.1 to 9.4.0
Bumps Microsoft.Extensions.ServiceDiscovery.Abstractions from 9.3.1 to 9.4.0
Bumps Microsoft.Extensions.ServiceDiscovery.Dns from 9.3.1 to 9.4.0
Bumps Microsoft.Extensions.ServiceDiscovery.Yarp from 9.3.1 to 9.4.0
Bumps Roslynator.Analyzers from 4.13.1 to 4.14.0
Bumps Roslynator.CodeAnalysis.Analyzers from 4.13.1 to 4.14.0
Bumps Roslynator.Formatting.Analyzers from 4.13.1 to 4.14.0
Bumps Scalar.AspNetCore from 2.4.16 to 2.6.4
Bumps Soenneker.Utils.AutoBogus from 3.0.778 to 3.0.787
Bumps Soenneker.Utils.AutoBogus.NSubstitute from 3.0.686 to 3.0.694
Bumps SonarAnalyzer.CSharp from 10.11.0.117924 to 10.15.0.120848
Bumps StackExchange.Redis from 2.8.41 to 2.8.58
Bumps System.IdentityModel.Tokens.Jwt from 8.12.0 to 8.13.0
Bumps System.Text.Encodings.Web from 9.0.6 to 9.0.7
Bumps System.Text.Json from 9.0.6 to 9.0.7
Bumps TngTech.ArchUnitNET from 0.11.4 to 0.12.1
Bumps TngTech.ArchUnitNET.xUnitV3 from 0.11.4 to 0.12.1
Bumps xunit.v3 from 2.0.3 to 3.0.0

---
updated-dependencies:
- dependency-name: Aspire.Hosting.PostgreSQL
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Aspire.Hosting.RabbitMQ
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Aspire.Hosting.Redis
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Aspire.StackExchange.Redis
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Aspire.StackExchange.Redis.DistributedCaching
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: FastEndpoints
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: FastEndpoints.Messaging.Core
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: FastEndpoints.Messaging.Remote
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: FastEndpoints.Swagger
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: MassTransit
  dependency-version: 8.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: MassTransit.EntityFrameworkCore
  dependency-version: 8.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: MassTransit.RabbitMQ
  dependency-version: 8.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Meziantou.Analyzer
  dependency-version: 2.0.208
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.HeaderPropagation
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.DependencyInjection.Abstractions
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.OpenApi
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore.Relational
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Caching.StackExchangeRedis
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.ServiceDiscovery
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Extensions.ServiceDiscovery.Abstractions
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Extensions.ServiceDiscovery.Dns
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Extensions.ServiceDiscovery.Yarp
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Roslynator.Analyzers
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Roslynator.CodeAnalysis.Analyzers
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Roslynator.Formatting.Analyzers
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Scalar.AspNetCore
  dependency-version: 2.6.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Soenneker.Utils.AutoBogus
  dependency-version: 3.0.787
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Soenneker.Utils.AutoBogus.NSubstitute
  dependency-version: 3.0.694
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: SonarAnalyzer.CSharp
  dependency-version: 10.15.0.120848
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: StackExchange.Redis
  dependency-version: 2.8.58
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.IdentityModel.Tokens.Jwt
  dependency-version: 8.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: System.Text.Encodings.Web
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.Text.Json
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: TngTech.ArchUnitNET
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: TngTech.ArchUnitNET.xUnitV3
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: xunit.v3
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Jul 29, 2025
@github-actions
Copy link

Test Results

0 tests   0 ✅  0s ⏱️
0 suites  0 💤
0 files    0 ❌

Results for commit 0a3a062.

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Jul 30, 2025

Superseded by #53.

@dependabot dependabot bot closed this Jul 30, 2025
@dependabot dependabot bot deleted the dependabot/nuget/main/multi-48205e6c40 branch July 30, 2025 17:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant