Releases: Azure/azure-signalr
Releases · Azure/azure-signalr
Release v1.20.0
Features:
The persistent mode of Management SDK now supports MessagePack. See MessagePack serialization for more details.
Release v1.19.2
This release contains only internal engineering changes. For SignalR function extensions users, this version is incompatible with current SignalR function extensions versions by design. Next SignalR function extensions version will adapt to the change.
Release v1.19.1
Release v1.19.0
Features:
- Support SignalR
client result
(.NET7.0
+). - Support CloseOnAuthenticationExpiration. Set this option to enable authentication expiration tracking which will close connections when a token expires.
Bug Fixes
- Fix #1652: Configuration issue and a few improvements #1654.
- Fix #1679:
HubConnectionContext.UserIdentifier
is null if negotiation with Management SDK and set user ID #1691. - Fix #1700: proxy not applied to serverless transient mode #1708.
Improvements
- Reduce retry interval when AAD auth failed #1451.
Release v1.18.3
Features:
- Add 2 properties
InitialHubServerConnectionCount
andMaxHubServerConnectionCount
and obsoleteConnectionCount
Bug Fixes
Release v1.18.1
Release 1.18.0
Feature
- Add
AuthType=azure
,AuthType=azure.msi
,AuthType=azure.app
supports for connection string.
Release 1.17.1
Bug Fixes
- Fix the Azure Function binding issue #1603
Release 1.17.0
Bug Fixes
- Fix the regression issue that for the single endpoint scenario, send message failure does not throw (#1582)
- Improve the error handling when a message fails to send with multiple endpoints (#1582)
- "DefaultMessageRouter" filters out "offline" endpoints so that messages will not send out to offline endpoints
- You can customize your own message router if you'd like to make sure exceptions throw when some endpoints are offline.
- Fix the endpoint hot-reload logic to support "ClientEndpoint" and "ServerEndpoint" property (#1592)
Release v1.16.1
Features
- Add server endpoint and client endpoint as optional parameters of a
ServiceEndpoint
constructor so that users can customize them with AAD auth. #1586
public ServiceEndpoint(Uri endpoint, TokenCredential credential, EndpointType endpointType = EndpointType.Primary, string name = "", Uri serverEndpoint = null, Uri clientEndpoint = null)
Fixes
- Fixes the ackable message time out problem when multiple SignalR endpoints exist. #1576