Skip to content

Release v1.11.0

Compare
Choose a tag to compare
@Y-Sindo Y-Sindo released this 09 Sep 05:48
1080847

Features

Management SDK

  1. ServiceHubContext now implements IDisposable.
  2. All methods in ServiceHubContext.ClientManager are supported with persistent transport type.
  3. Remove limitation on setting ServiceManagerOptions.ServiceEndpoints with transient transport type. Now no matter what transport type is, you can use DefaultAzureCredential 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

  1. Add more property to GroupBroadcastMessage (#1429)

Bug fixes

  1. Fix a bug in ServiceManager.IsServiceHealthy that throws exception. (#1430)