Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Aug 5, 2025

Updated Aspire.Hosting.PostgreSQL from 9.3.1 to 9.4.0.

Release notes

Sourced from Aspire.Hosting.PostgreSQL's releases.

9.4.0

We are excited to share that our 9.4.0 release of Aspire has shipped! All of the packages are available in NuGet.org now. Head over to https://learn.microsoft.com/en-us/dotnet/aspire/whats-new/dotnet-aspire-9.4 to find what's new in 9.4.0!

What's Changed

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.4.0

We are excited to share that our 9.4.0 release of Aspire has shipped! All of the packages are available in NuGet.org now. Head over to https://learn.microsoft.com/en-us/dotnet/aspire/whats-new/dotnet-aspire-9.4 to find what's new in 9.4.0!

What's Changed

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.4.0

We are excited to share that our 9.4.0 release of Aspire has shipped! All of the packages are available in NuGet.org now. Head over to https://learn.microsoft.com/en-us/dotnet/aspire/whats-new/dotnet-aspire-9.4 to find what's new in 9.4.0!

What's Changed

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.4.0

We are excited to share that our 9.4.0 release of Aspire has shipped! All of the packages are available in NuGet.org now. Head over to https://learn.microsoft.com/en-us/dotnet/aspire/whats-new/dotnet-aspire-9.4 to find what's new in 9.4.0!

What's Changed

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.4.0

We are excited to share that our 9.4.0 release of Aspire has shipped! All of the packages are available in NuGet.org now. Head over to https://learn.microsoft.com/en-us/dotnet/aspire/whats-new/dotnet-aspire-9.4 to find what's new in 9.4.0!

What's Changed

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 [Mediator.Abstractions](https://github.com/martinothamar/Mediator) from 3.0.0-preview.65 to 3.0.1.

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

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

No release notes found for this version range.

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

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

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

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

## 2.0.210

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

## What's Changed
* Use additional locations to report diagnostic on symbols with multiple locations by @​meziantou in https://github.com/meziantou/Meziantou.Analyzer/pull/821


**Full Changelog**: https://github.com/meziantou/Meziantou.Analyzer/compare/2.0.209...2.0.210

## 2.0.209

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

## What's Changed
* Add MA0171: Replace HasValue with pattern matching by @​meziantou in https://github.com/meziantou/Meziantou.Analyzer/pull/819


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

## 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.210).
</details>

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

<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/commits).
</details>

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

<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/commits).
</details>

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

<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/commits).
</details>

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

<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/commits).
</details>

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

<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/commits).
</details>

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

<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/seco...

_De...

_Description has been truncated_

> **Note**
> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

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 Mediator.Abstractions from 3.0.0-preview.65 to 3.0.1
Bumps Meziantou.Analyzer from 2.0.202 to 2.0.210
Bumps Microsoft.AspNetCore.HeaderPropagation from 9.0.6 to 9.0.8
Bumps Microsoft.AspNetCore.OpenApi from 9.0.6 to 9.0.8
Bumps Microsoft.EntityFrameworkCore from 9.0.6 to 9.0.8
Bumps Microsoft.EntityFrameworkCore.Relational from 9.0.6 to 9.0.8
Bumps Microsoft.Extensions.Caching.StackExchangeRedis from 9.0.6 to 9.0.8
Bumps Microsoft.Extensions.DependencyInjection from 9.0.6 to 9.0.8
Bumps Microsoft.Extensions.DependencyInjection.Abstractions from 9.0.6 to 9.0.8
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 NSwag.Annotations from 14.4.0 to 14.5.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.8
Bumps Soenneker.Utils.AutoBogus from 3.0.778 to 3.0.789
Bumps Soenneker.Utils.AutoBogus.NSubstitute from 3.0.686 to 3.0.696
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.8
Bumps System.Text.Json from 9.0.6 to 9.0.8
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: Mediator.Abstractions
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Meziantou.Analyzer
  dependency-version: 2.0.210
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.HeaderPropagation
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.DependencyInjection.Abstractions
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.OpenApi
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore.Relational
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Caching.StackExchangeRedis
  dependency-version: 9.0.8
  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: NSwag.Annotations
  dependency-version: 14.5.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.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Soenneker.Utils.AutoBogus
  dependency-version: 3.0.789
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Soenneker.Utils.AutoBogus.NSubstitute
  dependency-version: 3.0.696
  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.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  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 Aug 5, 2025
@github-actions github-actions bot added the chore label Aug 5, 2025
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant