Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Updated Aspire.Hosting.AppHost from 9.3.1 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

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.Hosting.SqlServer from 9.3.2 to 9.4.0.

Release notes

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

Commits viewable in compare view.

Updated Aspire.Hosting.Testing from 9.3.1 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

Commits viewable in compare view.

Updated Aspire.Microsoft.EntityFrameworkCore.SqlServer from 9.3.1 to 9.4.0.

Release notes

Sourced from Aspire.Microsoft.EntityFrameworkCore.SqlServer'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 CommunityToolkit.Aspire.Hosting.Bun from 9.6.0 to 9.7.0.

Release notes

Sourced from CommunityToolkit.Aspire.Hosting.Bun's releases.

9.7.0

Two main features of this release are support for Aspire 9.4 and SurrealDB integrations (hosting and client).

What's Changed

New Contributors

Full Changelog: CommunityToolkit/Aspire@v9.6.0...v9.7.0

Commits viewable in compare view.

Updated CommunityToolkit.Aspire.Hosting.Dapr from 9.6.0 to 9.7.0.

Release notes

Sourced from CommunityToolkit.Aspire.Hosting.Dapr's releases.

9.7.0

Two main features of this release are support for Aspire 9.4 and SurrealDB integrations (hosting and client).

What's Changed

New Contributors

Full Changelog: CommunityToolkit/Aspire@v9.6.0...v9.7.0

Commits viewable in compare view.

Updated Microsoft.Extensions.ServiceDiscovery from 9.3.1 to 9.4.0.

Release notes

Sourced from Microsoft.Extensions.ServiceDiscovery'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 Microsoft.Testing.Extensions.TrxReport from 1.7.3 to 1.8.0.

Release notes

Sourced from Microsoft.Testing.Extensions.TrxReport's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated TUnit from 0.25.21 to 0.50.0.

Release notes

Sourced from TUnit's releases.

0.50.0

Apologies for the delay. This PR has taken a lot longer than anticipated.

It involves a lot of refactoring and rewriting of some core logic. So if I've knocked anything out, apologies, and raise an issue with a reproduceable example please!

There are a bunch of breaking changes in this release, so apologies in advance!
These include:

  • Needing to amend signatures for custom data source attributes
  • The SourceGenerated[Type]Information types have been renamed to [Type]Metadata.

This change does include some new features for any advanced users.

  • Improved automatic object lifecycle tracking.

  • A new Priority attribute, to prioritise running certain tests first. This can be combined with --fail-fast to terminate test runs quicker on failures.

  • One is Asynchronous data sources! I'd advise to be careful with these, as they could dramatically slow down discovery. But you can now use asynchronous APIs to generate data sources for your tests.

  • And the one I'm excited about most, is nested property injection (with initialization). This can allow for some advanced test orchestration with relatively simple code, and TUnit will handle all the advanced bits for you like initialization and object lifetimes!

Here's some pseudo-code:

public class InMemorySql : IAsyncInitializer, IAsyncDisposable
{
    public async Task InitializeAsync()
    {
        await Container.StartAsync();
    }

    public async ValueTask DisposeAsync()
    {
        await Container.DisposeAsync();
    }
}

public class InMemoryRedis : IAsyncInitializer, IAsyncDisposable
{
    public async Task InitializeAsync()
    {
        await Container.StartAsync();
    }

    public async ValueTask DisposeAsync()
    {
        await Container.DisposeAsync();
    }
}

public class InMemoryMessageBus : IAsyncInitializer, IAsyncDisposable
{
 ... (truncated)

Commits viewable in [compare view](https://github.com/thomhurst/TUnit/compare/v0.25.21...v0.50.0).
</details>

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Bumps Aspire.Hosting.AppHost from 9.3.1 to 9.4.0
Bumps Aspire.Hosting.Redis from 9.3.1 to 9.4.0
Bumps Aspire.Hosting.SqlServer from 9.3.2 to 9.4.0
Bumps Aspire.Hosting.Testing from 9.3.1 to 9.4.0
Bumps Aspire.Microsoft.EntityFrameworkCore.SqlServer from 9.3.1 to 9.4.0
Bumps Aspire.StackExchange.Redis.DistributedCaching from 9.3.1 to 9.4.0
Bumps CommunityToolkit.Aspire.Hosting.Bun from 9.6.0 to 9.7.0
Bumps CommunityToolkit.Aspire.Hosting.Dapr from 9.6.0 to 9.7.0
Bumps Microsoft.Extensions.ServiceDiscovery from 9.3.1 to 9.4.0
Bumps Microsoft.Testing.Extensions.TrxReport from 1.7.3 to 1.8.0
Bumps TUnit from 0.25.21 to 0.50.0

---
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.Redis
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Aspire.Hosting.SqlServer
  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: Aspire.Microsoft.EntityFrameworkCore.SqlServer
  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: CommunityToolkit.Aspire.Hosting.Bun
  dependency-version: 9.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: CommunityToolkit.Aspire.Hosting.Dapr
  dependency-version: 9.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Extensions.ServiceDiscovery
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Testing.Extensions.TrxReport
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: TUnit
  dependency-version: 0.50.0
  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 4, 2025
@MarcelMichau MarcelMichau merged commit d6b9acb into main Aug 6, 2025
7 checks passed
@MarcelMichau MarcelMichau deleted the dependabot/nuget/src/server/multi-9ae825cbc6 branch August 6, 2025 11:17
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.

2 participants