SDK v1.32.0
What's Changed
- Fix issue caused by AckHandler disposing by yzt (@Y-Sindo) in #2215
- Remove .net 6 from target frameworks by yzt (@Y-Sindo) in #2216
- Fix #1928 that when client connection is closed, no need to throw by Liangying.Wei (@vicancy) in #2220
I can't edit the GitHub release page directly, but here's suggested content to add to the v1.32.0 release notes to call out the breaking change:
⚠️ Breaking Changes
- Dropped support for .NET 6. Following the end of Microsoft support for .NET 6 on November 12, 2024,
Microsoft.Azure.SignalRno longer targetsnet6.0starting with this release. Supported target frameworks are now .NET 8 and .NET 9.- If your application still targets
net6.0, you will encounter runtime errors such asSystem.MissingMethodException: Method not found: 'Void Microsoft.AspNetCore.SignalR.HubConnectionContext..ctor(...)'on negotiate, because the SDK will bind against thenet6.0build ofMicrosoft.AspNetCore.SignalRshipped with the shared framework, which has a differentHubConnectionContextsignature. - Action required: Upgrade your application to .NET 8 (LTS) or .NET 9.
- If you must remain on .NET 6, pin to the last version that targeted
net6.0:Microsoft.Azure.SignalR1.31.x(no further fixes will be backported).
- If your application still targets
See issue #2258 for context.
Full Changelog: v1.31.0...v1.32.0