Skip to content

Commit 40124cf

Browse files
authored
[SignalR] Release 1.7.0 GA version (Azure#27125)
1 parent 1b613fd commit 40124cf

File tree

2 files changed

+23
-6
lines changed

2 files changed

+23
-6
lines changed

sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/CHANGELOG.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,31 @@
11
# Release History
22

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

56
### Features Added
6-
7-
### Breaking Changes
7+
* `SignalRConnectionAttribute` can be used to customize the connection name of strongly typed serverless hub too. Usage:
8+
```cs
9+
[SignalRConnection("SignalRConnection")]
10+
public class CustomConnectionHub : ServerlessHub<IChatClient>
11+
{
12+
}
13+
```
14+
```json
15+
{
16+
"Values":{
17+
"SignalRConnection":"Your-Connection-String"
18+
}
19+
}
20+
```
21+
* Added built-in string constants for SignalR trigger: `SignalRTriggerCategories.Connections` for "connections", `SignalRTriggerCategories.Messages` for "messages", `SignalRTriggerEvents.Connected` for "connected", `SignalRTriggerEvents.Disconnected` for "disconnected".
22+
* 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.
23+
* Enabled SignalR trigger to use identity-based connection.
824

925
### Bugs Fixed
10-
11-
### Other Changes
26+
* Fix a `ServiceEndpoints` binding bug that creating new persistent connections for each request.
27+
* Fixed the bug that the function host could not be shutdown locally on Functions V3 runtime.
28+
* Fixed the package restoring issue on .NET 5 and above.
1229

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

sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/src/Microsoft.Azure.WebJobs.Extensions.SignalRService.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
55
<PackageId>Microsoft.Azure.WebJobs.Extensions.SignalRService</PackageId>
6-
<Version>1.7.0-beta.3</Version>
6+
<Version>1.7.0</Version>
77
<SignAssembly>true</SignAssembly>
88
<IsExtensionClientLibrary>true</IsExtensionClientLibrary>
99
<NoWarn>$(NoWarn);CS1591;AZC0001;AZC0107;</NoWarn>

0 commit comments

Comments
 (0)