Skip to content

Commit

Permalink
[SignalR] Release 1.7.0 GA version (#27125)
Browse files Browse the repository at this point in the history
  • Loading branch information
Y-Sindo authored Feb 21, 2022
1 parent 1b613fd commit 40124cf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
# Release History

## 1.7.0-beta.3 (Unreleased)
## 1.7.0 (2022-02-22)
**Following are the all changes in 1.7.0-beta.2 and 1.7.0-beta.1 versions.**

### Features Added

### Breaking Changes
* `SignalRConnectionAttribute` can be used to customize the connection name of strongly typed serverless hub too. Usage:
```cs
[SignalRConnection("SignalRConnection")]
public class CustomConnectionHub : ServerlessHub<IChatClient>
{
}
```
```json
{
"Values":{
"SignalRConnection":"Your-Connection-String"
}
}
```
* Added built-in string constants for SignalR trigger: `SignalRTriggerCategories.Connections` for "connections", `SignalRTriggerCategories.Messages` for "messages", `SignalRTriggerEvents.Connected` for "connected", `SignalRTriggerEvents.Disconnected` for "disconnected".
* Added strongly typed serverless hub. See [sample](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/samples/Sample01_StronglyTypedHub.md) for more details.
* Enabled SignalR trigger to use identity-based connection.

### Bugs Fixed

### Other Changes
* Fix a `ServiceEndpoints` binding bug that creating new persistent connections for each request.
* Fixed the bug that the function host could not be shutdown locally on Functions V3 runtime.
* Fixed the package restoring issue on .NET 5 and above.

## 1.7.0-beta.2 (2022-02-14)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<PackageId>Microsoft.Azure.WebJobs.Extensions.SignalRService</PackageId>
<Version>1.7.0-beta.3</Version>
<Version>1.7.0</Version>
<SignAssembly>true</SignAssembly>
<IsExtensionClientLibrary>true</IsExtensionClientLibrary>
<NoWarn>$(NoWarn);CS1591;AZC0001;AZC0107;</NoWarn>
Expand Down

0 comments on commit 40124cf

Please sign in to comment.