Release v1.11.0
Features
Management SDK
ServiceHubContext
now implementsIDisposable
.- All methods in
ServiceHubContext.ClientManager
are supported with persistent transport type. - Remove limitation on setting
ServiceManagerOptions.ServiceEndpoints
with transient transport type. Now no matter what transport type is, you can useDefaultAzureCredential
as follows:
var serviceManager = new ServiceManagerBuilder().WithOptions(option =>
{
option.ServiceEndpoints = new ServiceEndpoint[] { new ServiceEndpoint(new Uri("https://<your-signalr-name>.service.signalr.net"), new DefaultAzureCredential()) };
})
.BuildServiceManager();
Protocol
- Add more property to GroupBroadcastMessage (#1429)
Bug fixes
- Fix a bug in
ServiceManager.IsServiceHealthy
that throws exception. (#1430)