Skip to content

Update all non-major dependencies#1132

Merged
Carl Sixsmith (carlsixsmith-moj) merged 1 commit into
developfrom
renovate-all-minor-patch
Jun 19, 2026
Merged

Update all non-major dependencies#1132
Carl Sixsmith (carlsixsmith-moj) merged 1 commit into
developfrom
renovate-all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jun 11, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
AWSSDK.Extensions.NETCore.Setup 4.0.4.14.0.4.8 age confidence
AWSSDK.S3 4.0.23.44.0.24.5 age confidence
AWSSDK.SecurityToken 4.0.6.74.0.7.5 age confidence
Aspire.AppHost.Sdk 13.3.513.4.3 age confidence
Aspire.Hosting.RabbitMQ 13.3.513.4.3 age confidence
Aspire.Hosting.SqlServer 13.3.513.4.3 age confidence
CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects 13.3.013.4.0 age confidence
MessagePack 3.1.63.1.7 age confidence
Microsoft.AspNetCore.Components.Web (source) 10.0.810.0.9 age confidence
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore (source) 10.0.810.0.9 age confidence
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (source) 10.0.810.0.9 age confidence
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source) 10.0.810.0.9 age confidence
Microsoft.AspNetCore.SignalR.Client (source) 10.0.810.0.9 age confidence
Microsoft.EntityFrameworkCore (source) 10.0.810.0.9 age confidence
Microsoft.EntityFrameworkCore.Design (source) 10.0.810.0.9 age confidence
Microsoft.EntityFrameworkCore.InMemory (source) 10.0.810.0.9 age confidence
Microsoft.EntityFrameworkCore.Relational (source) 10.0.810.0.9 age confidence
Microsoft.EntityFrameworkCore.SqlServer (source) 10.0.810.0.9 age confidence
Microsoft.EntityFrameworkCore.Tools (source) 10.0.810.0.9 age confidence
Microsoft.Extensions.DependencyInjection (source) 10.0.810.0.9 age confidence
Microsoft.Extensions.Hosting (source) 10.0.810.0.9 age confidence
Microsoft.Extensions.Hosting.Abstractions (source) 10.0.810.0.9 age confidence
Microsoft.Extensions.Http.Polly (source) 10.0.810.0.9 age confidence
Microsoft.Extensions.Http.Resilience (source) 10.6.010.7.0 age confidence
Microsoft.Extensions.Identity.Core (source) 10.0.810.0.9 age confidence
Microsoft.Extensions.Localization.Abstractions (source) 10.0.810.0.9 age confidence
Microsoft.Extensions.ServiceDiscovery (source) 10.6.010.7.0 age confidence
Microsoft.NET.Test.Sdk 18.5.118.6.0 age confidence
MudBlazor (source) 9.4.09.5.0 age confidence
OpenTelemetry.Exporter.OpenTelemetryProtocol (source) 1.15.31.16.0 age confidence
OpenTelemetry.Extensions.Hosting (source) 1.15.31.16.0 age confidence
Sentry (source) 6.5.06.6.0 age confidence
Sentry.AspNetCore (source) 6.5.06.6.0 age confidence
Sentry.EntityFramework (source) 6.5.06.6.0 age confidence
aspire.cli 13.4.213.4.4 age confidence
dotnet-ef (source) 10.0.810.0.9 age confidence

Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v4.0.24

microsoft/aspire (Aspire.AppHost.Sdk)

v13.4.3: Aspire 13.4.3

What's New in Aspire 13.4.3

Patch release for Aspire 13.4 with a fix for persistent container endpoint allocation regressions introduced in 13.4.

🐛 Fixes
  • 🔌 Persistent container endpoints had incorrect default behavior — Persistent containers were defaulting to proxyless endpoint behavior instead of the proxied behavior used by normal containers. This caused integrations that depend on endpoint allocation before resource startup (such as the KeyVault emulator) to fail. Persistent containers now default to proxied endpoints matching normal container behavior; opt out with isProxied: false or WithEndpointProxySupport(false). Proxyless container endpoints with only a targetPort specified now also resolve immediately to that port instead of waiting for delayed allocation. (#​17960, @danegsta)
🏷️ Housekeeping
  • 🛠️ Unblocked WinGet manifest publishing on locked-down 1ES agents and updated manifest tags (#​17958)

Full Changelog: microsoft/aspire@v13.4.2...v13.4.3

Full commit: 4f218933552e18ff2874d1b6d5dc3fe671e3b6d9

Generated by Generate release notes for a new stable Aspire release · ● 4.7M

v13.4.2: Aspire 13.4.2

What'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
  • 🔴 Redis with 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

Generated by Generate release notes for a new stable Aspire release · ● 5M

v13.4.1: Aspire 13.4.1

What'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 profiles block in the empty C# AppHost template.

🐛 Fixes
  • ⏱️ Explicit-start resources triggered lifecycle callbacks too early — Session-scoped resources marked with 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 as WithEnvironment(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 to Start = true rather than deleting and recreating it. Fixes #​17813. (#​17825, backported via #​17826, @danegsta)
  • 🔴 Redis with 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)
  • 🔌 Proxyless container endpoint could hang when resolved before container creation — Referencing a proxyless container endpoint in an environment variable callback (before the container port spec was finalized) could deadlock. An on-demand allocation path now commits the target port as the fallback host port in that case; once BuildContainerPorts runs, normal DCP dynamic port assignment takes over for any later resolution. (#​17851, backported via #​17859, @danegsta)
  • 📄 Empty C# AppHost template emitted duplicate profiles blockaspire new aspire-empty on 13.4 produced an aspire.config.json with a profiles block that duplicated the content already present in apphost.run.json, causing redundant launch configuration. The embedded template now contains only the required appHost.path binding; profile configuration lives exclusively in apphost.run.json. Fixes #​17660. (#​17781, backported via #​17820, @mitchdenny)
🏷️ Housekeeping
  • 📦 Added Aspire CLI npm package to the release pipeline so the npm distribution is published as part of stable releases. (#​17297, backported via #​17766, @adamint)
  • 🚀 Bumped branding to 13.4.1 (#​17819)

Full Changelog: microsoft/aspire@v13.4.0...v13.4.1

Full commit: cf985fa817dd5863e7f62eb74fa1725ab5069ed2

Generated by Generate release notes for a new stable Aspire release · ● 1.0.40

Generated by Generate release notes for a new stable Aspire release · ● 3.9M

v13.4.0: Aspire 13.4.0

Aspire 13.4.0

Aspire 13.4 brings major improvements to Foundry hosted agents, the Aspire skills system, CLI reliability, and TypeScript AppHost stability — with cross-compute-environment deployment now working end-to-end and TypeScript AppHost support — Aspire's polyglot story — reaching general availability (GA).

Highlights
  • 🎉 TypeScript AppHost is now GA — First introduced as a preview in an earlier version of Aspire, the TypeScript AppHost — Aspire's polyglot story — has reached the quality bar for general availability and is now officially supported for production use alongside C#. As part of GA, the experimental markers on the Azure TypeScript AppHost (ATS) APIs have been removed and the ATS surface area is stable for 13.4.
  • 🤖 Foundry hosted agents — Protocol selection (responses / invocations) is now configurable from both C# and TypeScript AppHosts. Cross-compute-environment deployments (e.g., a Foundry hosted agent + an AKS consumer) now wire up correctly: endpoint resolution and the required Azure AI User RBAC role assignment on the Foundry account are generated automatically — no manual az role assignment create steps needed.
  • 🛠️ Aspire skills catalog from bundleaspire agent init now drives its installable skill catalog from the bundle manifest, surfacing all six bundled skills (previously only three were visible). An embedded snapshot means the full catalog is available even in airgapped / disconnected environments.
  • 🔧 CLI reliability — Multiple CLI fixes: implicit-channel discovery restored, aspire stop no longer falsely reports failure on Unix, aspire ps no longer includes raw resource data (use aspire describe for detailed state), aspire new prefers the current CLI template version, friendly error for aspire do --list-steps without a step argument, and improved --search option description with documentation link.
  • ⌨️ TypeScript AppHost — Fixed a deadlock that occurred when lazy options callbacks invoked async methods; dev-localhost resource service URLs are now accepted for local development without extra configuration.
  • 📊 Dashboard — Summary log formatting improved for readability, dotnet watch dashboard auto-launch signal restored, and dynamic-port handling fixed for DistributedApplicationTestingBuilder.
  • ☸️ Kubernetes — The Helm CLI minimum version (≥ 4.2.0) is now validated before a Kubernetes deploy, giving a clear error instead of a cryptic failure.
  • ⚠️ Aspire.Hosting.Blazor ships as preview in 13.4 — A packaging issue with the Blazor gateway scripts means the package is intentionally marked preview for this release. Full stable support is targeted for 13.5.
⚠️ Notable changes
  • aspire ps no longer includes raw resource data in its output. Use aspire describe <resource> to inspect detailed resource state.
  • Foundry hosted agent builder API shape updated — see #​17545 and #​17669 for the updated C# and TypeScript signatures.
  • Aspire.Hosting.Blazor is preview-versioned in 13.4 (SuppressFinalPackageVersion=true). A fix for the addBlazorGateway gateway script resolution error in TypeScript AppHosts is tracked in #​17685.
📖 Learn more

For the full details on everything in this release, check out the What's new in Aspire 13.4 documentation.

Thank you to all the community contributors who helped make Aspire 13.4 possible! 💜


Full Changelog: microsoft/aspire@v13.3.5...v13.4.0

Full commit: becb48e2d61099e35ae336d527d3875e928d6594

Generated by Generate release notes for a new stable Aspire release · ● 6.5M

CommunityToolkit/Aspire (CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects)

v13.4.0

This release aligns CommunityToolkit/Aspire with Aspire 13.4.0 and delivers new integrations, TypeScript AppHost improvements, CI reliability work, and broad package updates.

We’re especially excited to ship this alongside Aspire 13.4, where TypeScript AppHost is now GA, resource commands gained typed arguments/process commands, and Kubernetes/AKS support continued to expand:
https://devblogs.microsoft.com/aspire/whats-new-aspire-13-4/

🔥 Highlights in this release

New integrations and capabilities
  • Added DuckDB Aspire integration (hosting + client) (#​1245)
  • Added bacon hosting integration (#​1302)
  • Added Aspire integration analyzer (#​1370)
  • Added Bun package manager support for JavaScript hosting extensions (#​1243)
  • Added TypeScript AppHost skill and Ollama test (#​1378)
  • Added Aspire upgrade skill support (#​1358)
Reliability, fixes, and developer experience
  • Swapped deprecated flagd package (#​1272)
  • Fixed NuGet restore loop with CPM for SqlDatabaseProjects (#​1291)
  • Aligned Sqlite enrich behavior (#​1282)
  • Used DatabaseName for Keycloak Postgres JDBC URL (#​1328)
  • Fixed waitfor behavior between script and runspace (#​1352)
  • Simplified Aspire name resolution (#​1382)
  • Improved affected test selection for TypeScript AppHost files (#​1379)
  • Added transient Docker startup failure auto-rerun in CI (#​1360)
  • Handled already-running job rerun 403s in transient auto-rerun workflow (#​1374)
  • Improved PR test execution efficiency (#​1355)
Versioning and dependency updates
  • Updated to Aspire 13.4.0 / preview train updates (#​1359, #​1377)
  • Updated workflows and tooling, including actions/setup-dotnet v5 and actions/github-script v9 (#​1363, #​1279)
  • Updated key dependencies including coverlet.collector, Microsoft.EntityFrameworkCore.Design, Microsoft.Extensions.AI, DuckDB, and npm/yarn grouped updates (#​1306, #​1331, #​1368, #​1369, #​1365, #​1373)
Deprecations and obsoletions
  • Deprecated CommunityToolkit Bun hosting integration in favor of core Aspire.Hosting.JavaScript (#​1376)
  • Marked Golang hosting package as obsolete (#​1323)

🙌 New contributors

Full Changelog: CommunityToolkit/Aspire@v13.3.0...v13.4.0 (or see below)

What's Changed

New Contributors

Full Changelog: CommunityToolkit/Aspire@v13.3.0...v13.4.0

MessagePack-CSharp/MessagePack-CSharp (MessagePack)

v3.1.7

What's Changed

Security release details

This release fixes 3 high severity and 9 moderate severity security vulnerabilities.

High severity advisory fixes
Moderage severity advisory fixes
Fixes with no security advisory
  • fb0fe9f Honor TypeFormatter options hooks for CWE-470
  • c1c06a6 Fix WriteRawX methods to advance by written length
  • 46c6a0f Fix CWE-190 map header length overflow

Full Changelog: MessagePack-CSharp/MessagePack-CSharp@v3.1.6...v3.1.7

dotnet/dotnet (Microsoft.AspNetCore.Components.Web)

v10.0.9

dotnet/extensions (Microsoft.Extensions.Http.Resilience)

v10.7.0

v10.7.0 graduates the Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes package to stable. The package registers a Kubernetes-aware ResourceQuotaProvider that reads the pod's CPU and memory requests and limits and exposes them to Microsoft.Extensions.Diagnostics.ResourceMonitoring as baseline and maximum quotas, which then feed the request and limit dimensions of the published resource utilization metrics. The companion ResourceQuota and ResourceQuotaProvider types in Microsoft.Extensions.Diagnostics.ResourceMonitoring graduate to stable in the same change so that consumers can implement custom quota providers without taking an experimental dependency.

On the AI side, Microsoft.Extensions.AI.OpenAI moves to OpenAI 2.11.0 and fixes a deserialization bug in ToolJson.AdditionalProperties so that JSON Schema additionalProperties values shaped as sub-schema objects (for example {"type":"string"}) are preserved instead of throwing during deserialization. HostedFileContent.SizeInBytes and HostedFileContent.CreatedAt graduate to stable since both values are consistently available across hosted-file providers, while Purpose and Scope remain experimental as provider-shaped vocabulary. FunctionInvokingChatClient drops a backward-compat path that auto-marked ToolApprovalResponseContent entries with InformationalOnly: true; consumers that need to continue accepting sessions serialized before #​7468 can use the sample ApprovalHistoryNormalizingChatClient middleware added in the test project.

Experimental API Changes
Now Stable
  • Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes package is now stable #​7253
  • Resource Monitoring ResourceQuota and ResourceQuotaProvider APIs are now stable (previously EXTEXP0008) #​7253
  • HostedFileContent.SizeInBytes and HostedFileContent.CreatedAt are now stable (previously MEAI001) #​7513
What's Changed
AI
Diagnostics, Health Checks, and Resource Monitoring
Repository Infrastructure Updates
  • [main] Update dependencies from dotnet/arcade #​7521
  • Bump dotnet-reportgenerator-globaltool from 5.5.9 to 5.5.10 #​7522
  • Bump dotnet-coverage from 18.6.2 to 18.7.0 #​7530
  • Bump PowerShell from 7.6.1 to 7.6.2 #​7531
  • Bump qs from 6.15.1 to 6.15.2 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7532
  • [main] Update dependencies from dotnet/arcade #​7534
  • Bump tmp from 0.2.5 to 0.2.6 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7537
Acknowledgements

Full Changelog: dotnet/extensions@v10.6.0...v10.7.0

microsoft/vstest (Microsoft.NET.Test.Sdk)

v18.6.0

What's Changed

Changes to tests and infra

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/London)

  • Branch creation
    • "after 9am every weekday,before 5pm every weekday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested review from a team as code owners June 11, 2026 12:50
@renovate renovate Bot force-pushed the renovate-all-minor-patch branch 2 times, most recently from bef2b0a to 2302b93 Compare June 12, 2026 04:25
@renovate renovate Bot force-pushed the renovate-all-minor-patch branch from 2302b93 to 98924d5 Compare June 12, 2026 11:16
@renovate renovate Bot force-pushed the renovate-all-minor-patch branch 5 times, most recently from 49a7519 to 1e556d1 Compare June 16, 2026 21:40
@samgibsonmoj Sam Gibson (samgibsonmoj) added the Approved Changes have been approved label Jun 17, 2026
@renovate renovate Bot force-pushed the renovate-all-minor-patch branch 4 times, most recently from 9aa3d6d to bb3562e Compare June 18, 2026 22:49
@renovate renovate Bot force-pushed the renovate-all-minor-patch branch from bb3562e to dd643af Compare June 19, 2026 07:29
@carlsixsmith-moj Carl Sixsmith (carlsixsmith-moj) merged commit 617d362 into develop Jun 19, 2026
1 check passed
@carlsixsmith-moj Carl Sixsmith (carlsixsmith-moj) deleted the renovate-all-minor-patch branch June 19, 2026 11:00
Carl Sixsmith (carlsixsmith-moj) pushed a commit that referenced this pull request Jun 25, 2026
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Approved Changes have been approved

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants