Skip to content

Releases: Azure/azure-signalr

V1.0.13 SDK for SignalR

02 Sep 08:34
c764ee7
Compare
Choose a tag to compare

General

  1. Fix #632 to throw TimeOutException when JoinGroup/LeaveGroup actions timeout (#638)

V1.0.12 SDK for SignalR

14 Aug 03:20
b58ad94
Compare
Choose a tag to compare

General

  1. Fix #416, #539 that in some corner cases, OnDisconnected event is not invoked. #612

ASP.NET Core

  1. Fix #623: Improve the robustness of the logic getting Context.GetHttpContext().Connection.RemoteIpAddress. #626

V1.0.0 Management SDK for ASP.NET Core SignalR

25 Jul 02:48
a2c91ca
Compare
Choose a tag to compare

SDK for Microsoft.Azure.SignalR.Management

Install-Package Microsoft.Azure.SignalR.Management -Version 1.0.0

Features:

  1. Support adding connection to a group.
serviceHubContext.Groups.AddToGroupAsync(connectionId, groupName);
  1. Support removing connection from a group.
serviceHubContext.Groups.RemoveFromGroupAsync(connectionId, groupName);
  1. Support send messages to a connection.
serviceHubContext.Clients.Client(connectionId).SendAsync(MethodName, Message)

V1.0.11 SDK for SignalR

19 Jul 08:37
e6081a6
Compare
Choose a tag to compare

General

  1. Group add and remove now wait for ack message from service, so that group related messages are now no need to be sticky to a particular server connection. #417 Do use await to guarantee the delivery, for example:
await Groups.AddToGroupAsync(..);
  1. Fix multi-endpoint bug that the endpoint status should be isolated for different hubs. #555
  2. Improve multi-endpoint status change logic, change to push mode instead of pulling the status for every request. #570
  3. For secondary endpoints, the endpoint is set as inactive if there is no client connected to that endpoint. Messages will not be sent to inactive secondary endpoints. #576
  4. access_token is no longer the one that our service relies on to do session sticky. A query parameter asrs_request_id is leveraged to do session sticky. For ASP.NET SignalR, a new version 2.4.1 of client is required to enable this. #587

ASP.NET Core SignalR

  1. Fix cases that customer's application layer logic might prevent server connection from recovering #590

ASP.NET SignalR

  1. Partially fix #473 , now QueryString and Headers can be fetched from Context.Request. #601
  2. Fix cases that customer's application layer logic might lead to connections not cleaned up clearly #595

v1.1.0-preview1-10442 for ASP.NET Core SignalR

24 Jul 02:31
6be0860
Compare
Choose a tag to compare

Support .NET Core 3.0 Preview7

v1.1.0-preview1-10384 for ASP.NET Core SignalR

13 Jun 03:24
3ea0085
Compare
Choose a tag to compare

Feature:

Support .NET Core 3.0 Preview6

V1.0.10 SDK for SignalR

31 May 08:11
a106f61
Compare
Choose a tag to compare

1. SDK for ASP.NET Core SignalR

Install-Package Microsoft.Azure.SignalR -Version 1.0.10

Features:

  1. Add option for ServerStickyMode in case customer has need to make sure negotiation server and hub server are the same one.
  2. Change default server connection count per hub to 2 as we support auto re-balance server connections now.

2. SDK for ASP.NET SignalR

Install-Package Microsoft.Azure.SignalR.AspNet -Version 1.0.10

Features:

  1. Add option for ServerStickyMode in case customer has need to make sure negotiation server and hub server are the same one.
  2. Enable isolation per application name. Fix #348
  3. Change default server connection count per hub to 2 as we support auto re-balance server connections now.

V1.0.0-preview1-10420 Management SDK for ASP.NET Core SignalR

31 May 08:30
a106f61
Compare
Choose a tag to compare

SDK for Microsoft.Azure.SignalR.Management

Install-Package Microsoft.Azure.SignalR.Management -Version 1.0.0-preview1-10420

Features:

  1. Support removing a specific user from all groups.

Bug fixes:

  1. Send correct user-agent header to Azure SignalR Service.

v1.0.9 for ASP.NET Core SignalR

26 Apr 10:34
f184641
Compare
Choose a tag to compare

Features:

  1. Add an ApplicationName option to ServiceOptions so that user now can share one Azure endpoint for different environments, as described in #348. Thanks @steverash for providing this cool feature #449

Bug fixes:

  1. Fix the issue that user's aud claim is ignored when reconstructing the HttpContext for Hub. #465
  2. Fix #480 that connection strings customized is not overwriting the ones from configurations. #481

v1.0.0 for ASP.NET SignalR

26 Apr 10:41
f184641
Compare
Choose a tag to compare

We are releasing the generally available version 1.0.0 for ASP.NET SignalR support.

Features:

  1. Simplify the trace source name to Microsoft.Azure.SignalR for Azure SignalR. #471
  2. For #373, downgrade some transient server connection errors to warnings to reduce noises. #482

Bug fixes:

  1. Fix the issue that user's aud claim is ignored when reconstructing the HttpContext for Hub. #465
  2. Fix #480 that connection strings customized is not overwriting the ones from configurations. #481
  3. Fix #452 that when using net462 or below, server connection fails with assembly not found error for System.Runtime.InteropServices.RuntimeInformation. #499