Skip to content

Bump Aspire.Hosting.AppHost and 20 others #6

New issue

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

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

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

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

Updated Aspire.Hosting.AppHost from 9.0.0 to 9.4.0.

Release notes

Sourced from Aspire.Hosting.AppHost'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

9.3.1

What's Changed

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

9.3.0

We are excited to share that our 9.3.0 release of .NET Aspire has shipped! All of the packages are available in NuGet.org now. Find out what is new here.

What's Changed

9.2.1

We are excited to share that our 9.2.1 release of .NET Aspire has shipped! All of the packages are available in NuGet.org now. Try it out and share your feedback 😃

What's Changed

Full Changelog: dotnet/aspire@v9.2.0...v9.2.1

9.2.0

We are excited to share that our 9.2.0 release of .NET Aspire has shipped! All of the packages are available in NuGet.org now. Please check out what's new in this release. Try it out and share your feedback 😃

What's Changed

9.1.0

We are excited to share that our 9.1.0 release of .NET Aspire has shipped! All of the packages are available in NuGet.org now. Please check out what's new in this release. Try it out and share your feedback 😃

What's Changed

Commits viewable in compare view.

Updated Aspire.Hosting.Testing from 9.0.0 to 9.4.0.

Release notes

Sourced from Aspire.Hosting.Testing'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

9.3.1

What's Changed

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

9.3.0

We are excited to share that our 9.3.0 release of .NET Aspire has shipped! All of the packages are available in NuGet.org now. Find out what is new here.

What's Changed

9.2.1

We are excited to share that our 9.2.1 release of .NET Aspire has shipped! All of the packages are available in NuGet.org now. Try it out and share your feedback 😃

What's Changed

Full Changelog: dotnet/aspire@v9.2.0...v9.2.1

9.2.0

We are excited to share that our 9.2.0 release of .NET Aspire has shipped! All of the packages are available in NuGet.org now. Please check out what's new in this release. Try it out and share your feedback 😃

What's Changed

9.1.0

We are excited to share that our 9.1.0 release of .NET Aspire has shipped! All of the packages are available in NuGet.org now. Please check out what's new in this release. Try it out and share your feedback 😃

What's Changed

Commits viewable in compare view.

Updated Azure.Identity from 1.13.1 to 1.14.2.

Release notes

Sourced from Azure.Identity's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated FastEndpoints from 6.2.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)

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

Updated [FastEndpoints.Swagger](https://github.com/FastEndpoints/FastEndpoints) from 6.2.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)

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

Updated [MediatR](https://github.com/LuckyPennySoftware/MediatR) from 12.5.0 to 13.0.0.

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

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

## 13.0.0

**Full Changelog**: https://github.com/LuckyPennySoftware/MediatR/compare/v12.5.0...v13.0.0

* Added support for .NET Standard 2.0
* Requiring license key
* Moving from Apache license to dual commercial/OSS license

To set your license key:

```csharp
services.AddMediatR(cfg => {
    cfg.LicenseKey = "<License key here>";
});

You can obtain your license key at MediatR.io

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Mvc.Testing from 9.0.6 to 9.0.8.

Release notes

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

9.0.7

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.6...v9.0.7

Commits viewable in compare view.

Updated Microsoft.EntityFrameworkCore.Design from 9.0.6 to 9.0.8.

Release notes

Sourced from Microsoft.EntityFrameworkCore.Design's releases.

9.0.7

Release

What's Changed

Full Changelog: dotnet/efcore@v9.0.6...v9.0.7

Commits viewable in compare view.

Updated Microsoft.EntityFrameworkCore.InMemory from 9.0.6 to 9.0.8.

Release notes

Sourced from Microsoft.EntityFrameworkCore.InMemory's releases.

9.0.7

Release

What's Changed

Full Changelog: dotnet/efcore@v9.0.6...v9.0.7

Commits viewable in compare view.

Updated Microsoft.EntityFrameworkCore.Relational from 9.0.6 to 9.0.8.

Release notes

Sourced from Microsoft.EntityFrameworkCore.Relational's releases.

9.0.7

Release

What's Changed

Full Changelog: dotnet/efcore@v9.0.6...v9.0.7

Commits viewable in compare view.

Updated Microsoft.EntityFrameworkCore.Sqlite from 9.0.6 to 9.0.8.

Release notes

Sourced from Microsoft.EntityFrameworkCore.Sqlite's releases.

9.0.7

Release

What's Changed

_De...

Description has been truncated

Bumps Aspire.Hosting.AppHost from 9.0.0 to 9.4.0
Bumps Aspire.Hosting.Testing from 9.0.0 to 9.4.0
Bumps Azure.Identity from 1.13.1 to 1.14.2
Bumps FastEndpoints from 6.2.0 to 7.0.1
Bumps FastEndpoints.Swagger from 6.2.0 to 7.0.1
Bumps MediatR from 12.5.0 to 13.0.0
Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.6 to 9.0.8
Bumps Microsoft.EntityFrameworkCore.Design from 9.0.6 to 9.0.8
Bumps Microsoft.EntityFrameworkCore.InMemory from 9.0.6 to 9.0.8
Bumps Microsoft.EntityFrameworkCore.Relational from 9.0.6 to 9.0.8
Bumps Microsoft.EntityFrameworkCore.Sqlite from 9.0.6 to 9.0.8
Bumps Microsoft.EntityFrameworkCore.SqlServer from 9.0.6 to 9.0.8
Bumps Microsoft.EntityFrameworkCore.Tools from 9.0.6 to 9.0.8
Bumps Microsoft.Extensions.Configuration from 9.0.6 to 9.0.8
Bumps Microsoft.Extensions.Http.Resilience from 9.6.0 to 9.7.0
Bumps Microsoft.Extensions.Logging from 9.0.6 to 9.0.8
Bumps Microsoft.Extensions.Logging.Abstractions from 9.0.6 to 9.0.8
Bumps Microsoft.Extensions.Options.ConfigurationExtensions from 9.0.6 to 9.0.8
Bumps Microsoft.Extensions.ServiceDiscovery from 9.3.1 to 9.4.0
Bumps ReportGenerator from 5.4.8 to 5.4.11
Bumps xunit.runner.visualstudio from 3.0.2 to 3.1.3

---
updated-dependencies:
- dependency-name: Aspire.Hosting.AppHost
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Aspire.Hosting.Testing
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Azure.Identity
  dependency-version: 1.14.2
  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.Swagger
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: MediatR
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore.InMemory
  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.Logging
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore.Sqlite
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore.SqlServer
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore.Tools
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Http.Resilience
  dependency-version: 9.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Options.ConfigurationExtensions
  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: ReportGenerator
  dependency-version: 5.4.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants