chore(deps): update aspire#6165
Conversation
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 0 |
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
There was a problem hiding this comment.
Code Review
Overall: Clean, well-scoped dependency update — no blocking issues.
Summary
This PR updates 9 Aspire packages from 13.4.0 → 13.4.2 (patch) and tightens the TUnit.Aspire version constraint in templates. The critical fix here is the Redis TLS persistent container deadlock: Aspire was using public/allocated host ports instead of internal target ports for TLS startup args, causing Redis to become unreachable when ports differed.
Strengths
- Consistent updates: All 9 Aspire packages bumped uniformly across
Directory.Packages.props, AppHost SDK references, template projects, and the CloudShop example — no version drift. - Correct use of central package management: The two centrally-managed packages (
Aspire.Hosting.AppHost,Aspire.Hosting.Testing) flow throughDirectory.Packages.propsas expected; template/example projects with explicit pins are intentionally standalone. - Low risk: Patch-level update; backward-compatible by semantic versioning contract.
Observation: TUnit.Aspire version constraint narrowing (1.* → 1.5*)
In both template files (TUnit.Aspire.Starter and TUnit.Aspire.Test), the floating constraint changes from any 1.x release to only 1.5.x releases.
This is reasonable — templates scaffold starter code for new users, and pinning to the current minor line (1.5*) prevents new projects from silently picking up a 1.6+ release that could have breaking changes before Renovate can open a PR to update the constraint.
Worth confirming: Is this constraint updated by the same Renovate configuration that opened this PR? If so, the workflow is self-maintaining and nothing more is needed. If not, it would be worth checking that the constraint will be bumped to 1.6* when 1.6 is released, so templates don't stagnate.
Minor: CloudShop example packages not centrally managed
Packages like Aspire.Hosting.Redis, Aspire.Hosting.PostgreSQL, Aspire.StackExchange.Redis, etc. in the CloudShop and template .csproj files carry explicit version pins and are not in Directory.Packages.props. This is fine — these projects are standalone examples, not part of the main build graph — but it does mean version updates to these packages require touching multiple files individually (as this PR does). A future consideration might be to unify into a shared Directory.Packages.props for the examples folder, but that's out of scope here.
Verdict: Approve. The patch bump is correct and the Redis TLS deadlock fix is a meaningful reliability improvement.
25ceef3 to
8162b57
Compare
There was a problem hiding this comment.
Code Review (follow-up pass)
A detailed review was already posted above. This pass confirms there is nothing additional to flag.
Summary of what this PR does: Bumps 9 Aspire packages from 13.4.0 → 13.4.2 (patch) and narrows the TUnit.Aspire floating constraint in templates from 1.* to 1.5*. The key fix in Aspire 13.4.2 is a Redis persistent-container deadlock on TLS startup caused by using the public host port instead of the internal target port.
Checklist:
- All affected files updated consistently — no stragglers left at
13.4.0. - Template projects (
TUnit.Aspire.Starter,TUnit.Aspire.Test) and CloudShop example both updated. Directory.Packages.propscentrally-managed packages updated correctly.- No TUnit engine, source-generator, or test metadata changes — purely a dependency version bump.
- Auto-merge (squash) is already enabled, which is appropriate for a bot-managed Renovate PR.
No blocking issues. This is a safe, well-scoped patch update.
This PR contains the following updates:
13.4.0→13.4.213.4.0→13.4.213.4.0→13.4.213.4.0→13.4.213.4.0→13.4.213.4.0→13.4.213.4.0→13.4.213.4.0→13.4.213.4.0→13.4.21.*→1.5*Release Notes
microsoft/aspire (Aspire.AppHost.Sdk)
v13.4.2: Aspire 13.4.2What's New in Aspire 13.4.2
Patch release for Aspire 13.4 with a fix for Redis persistent container deadlock on startup when using TLS.
🐛 Fixes
WithLifetime(ContainerLifetime.Persistent)could deadlock on startup — Redis TLS startup arguments used the public/allocated host ports instead of the internal target ports. When the public port differed from the target port (or was not yet allocated) the container would listen on an unexpected port and become unreachable. The TLS and non-TLS startup arguments now bind to target ports, matching what Redis expects internally. Fixes #17822. (#17827, backported via #17850,@danegsta)🏷️ Housekeeping
Full Changelog: microsoft/aspire@v13.4.1...v13.4.2
Full commit: d7d0b6759ce4b936c76bc4775814d27db560dd6d
v13.4.1: Aspire 13.4.1What's New in Aspire 13.4.1
Patch release for Aspire 13.4 with fixes for explicit-start resource lifecycle callbacks, Redis persistent container startup, proxyless endpoint allocation, and a duplicated
profilesblock in the empty C# AppHost template.🐛 Fixes
WithExplicitStart()were having their execution configuration callbacks (environment variables, arguments, certificates) evaluated at AppHost startup instead of at manual start. This meant user-interaction callbacks such asWithEnvironment(ctx => PromptForValueAsync(...))were called before the user triggered the resource. DCP registration is now deferred until the user manually starts the resource; persistent explicit-start resources still register immediately but patch the existing DCP record toStart = truerather than deleting and recreating it. Fixes #17813. (#17825, backported via #17826,@danegsta)WithLifetime(ContainerLifetime.Persistent)could deadlock on startup — Redis TLS startup arguments used the public/allocated host ports instead of the internal target ports. When the public port differed from the target port (or was not yet allocated) the container would listen on an unexpected port and become unreachable. The TLS and non-TLS startup arguments now bind to target ports, matching what Redis expects internally. Fixes #17822. (#17827, backported via #17850,@danegsta)BuildContainerPortsruns, normal DCP dynamic port assignment takes over for any later resolution. (#17851, backported via #17859,@danegsta)profilesblock —aspire new aspire-emptyon 13.4 produced anaspire.config.jsonwith aprofilesblock that duplicated the content already present inapphost.run.json, causing redundant launch configuration. The embedded template now contains only the requiredappHost.pathbinding; profile configuration lives exclusively inapphost.run.json. Fixes #17660. (#17781, backported via #17820,@mitchdenny)🏷️ Housekeeping
@adamint)Full Changelog: microsoft/aspire@v13.4.0...v13.4.1
Full commit: cf985fa817dd5863e7f62eb74fa1725ab5069ed2
thomhurst/TUnit (TUnit.Aspire)
v1.50.0: 1.50.0What's Changed
Other Changes
Full Changelog: v1.49.0...v1.50.0
v1.49.0: 1.49.0What's Changed
Other Changes
Dependencies
Full Changelog: v1.48.6...v1.49.0
v1.48.6: 1.48.6What's Changed
Other Changes
Dependencies
Full Changelog: v1.48.0...v1.48.6
v1.48.0: 1.48.0What's Changed
Other Changes
Dependencies
Full Changelog: v1.47.0...v1.48.0
v1.47.0: 1.47.0What's Changed
Other Changes
Dependencies
Full Changelog: v1.46.0...v1.47.0
v1.46.0: 1.46.0What's Changed
Other Changes
Dependencies
New Contributors
Full Changelog: v1.45.29...v1.46.0
v1.45.29: 1.45.29What's Changed
Other Changes
Dependencies
Full Changelog: v1.45.22...v1.45.29
v1.45.22: 1.45.22What's Changed
Other Changes
Dependencies
New Contributors
Full Changelog: v1.45.8...v1.45.22
v1.45.8: 1.45.8What's Changed
Other Changes
Dependencies
Full Changelog: v1.45.0...v1.45.8
v1.45.0: 1.45.0What's Changed
Other Changes
Dependencies
Full Changelog: v1.44.39...v1.45.0
v1.44.39: 1.44.39What's Changed
Other Changes
defaultliteral for value-type assertion parameters by @JohnVerheij in #5919Dependencies
Full Changelog: v1.44.0...v1.44.39
v1.44.0: 1.44.0What's Changed
Other Changes
/to partial endpoint paths (#5838) by @thomhurst in #5874Dependencies
Full Changelog: v1.43.41...v1.44.0
v1.43.41: 1.43.41What's Changed
Other Changes
Dependencies
Full Changelog: v1.43.38...v1.43.41
v1.43.38: 1.43.38What's Changed
Other Changes
Full Changelog: v1.43.37...v1.43.38
v1.43.37: 1.43.37What's Changed
Other Changes
Dependencies
Full Changelog: v1.43.11...v1.43.37
v1.43.11: 1.43.11What's Changed
Other Changes
Dependencies
New Contributors
Full Changelog: v1.43.2...v1.43.11
v1.43.2: 1.43.2What's Changed
Other Changes
Dependencies
Full Changelog: v1.41.0...v1.43.2
v1.41.0: 1.41.0TUnit Should() Assertions (beta)
This versions comes with a beta version of TUnit.Assertions.Should - meaning that you can do:
myCode.Should().BeEqualTo(fluentShouldSyntax);For more information see the docs: https://tunit.dev/docs/assertions/should-syntax
What's Changed
Other Changes
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate.