Skip to content

Commit 3126951

Browse files
Mohit-ChakrabortyvicancyJialinXin
authored
[Web PubSub] Prepare packages for Nov release (#25163)
* Mark packages in release * Add changelog message for GA libraries * Replace P2P ref on Azure.Core with package ref * Update CHANGELOG.md Co-authored-by: Liangying.Wei <lianwei@microsoft.com> Co-authored-by: Jialin Xin <jixin@microsoft.com>
1 parent b775a1e commit 3126951

File tree

9 files changed

+21
-28
lines changed

9 files changed

+21
-28
lines changed

sdk/webpubsub/Azure.Messaging.WebPubSub/CHANGELOG.md

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

3-
## 1.0.0-beta.4 (Unreleased)
3+
## 1.0.0 (2021-11-09)
44

55
### Features Added
6+
- Added extension method `AddWebPubSubServiceClient` for `TokenCredential`
7+
- Added `CloseGroupConnections`, `CloseAllConnections` and `CloseUserConnections`
68

79
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
10+
- Renamed `GenerateClientAccessUri` to `GetClientAccessUri`
1211

1312
## 1.0.0-beta.3 (2021-09-07)
1413

sdk/webpubsub/Azure.Messaging.WebPubSub/src/Azure.Messaging.WebPubSub.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Description>Azure SDK client library for the WebPubSub service</Description>
44
<AssemblyTitle>Azure SDK for WebPubSub</AssemblyTitle>
5-
<Version>1.0.0-beta.4</Version>
5+
<Version>1.0.0</Version>
66
<PackageTags>Azure, WebPubSub, SignalR</PackageTags>
77
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
88
<NoWarn>$(NoWarn);419</NoWarn>
@@ -12,6 +12,7 @@
1212

1313
<ItemGroup>
1414
<PackageReference Include="System.Text.Json" />
15+
<PackageReference Include="Azure.Core" />
1516
</ItemGroup>
1617

1718
<!-- Shared source from Azure.Core -->
@@ -28,8 +29,5 @@
2829
<Compile Include="$(AzureCoreSharedSources)AzureResourceProviderNamespaceAttribute.cs" LinkBase="Shared" />
2930
<Compile Include="$(AzureCoreSharedSources)Argument.cs" LinkBase="Shared" />
3031
</ItemGroup>
31-
<ItemGroup>
32-
<ProjectReference Include="..\..\..\core\Azure.Core\src\Azure.Core.csproj" />
33-
</ItemGroup>
3432

3533
</Project>

sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub/CHANGELOG.md

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

3-
## 1.0.0-beta.5 (Unreleased)
4-
5-
### Features Added
3+
## 1.0.0 (2021-11-09)
64

75
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
6+
- Move output binding object to namespace `Microsoft.Azure.WebJobs.Extensions.WebPubSub`.
7+
- Add a few static create methods under `WebPubSubAction` to easily discover available actions.
8+
- Add dependency `Azure.Messageing.WebPubSub` for service calls.
9+
- Rename output binding from `WebPubSubOperation` to `WebPubSubAction`, and add `Action` as suffix for derived classes.
10+
- Rename `operationKind` to `actionName` in output binding for javascript to deserialize.
11+
- Changed the name and type of the `Uri` properties in `WebPubSubConnection` to match other libraries in the Azure SDK for .NET.
1212

1313
## 1.0.0-beta.4 (2021-11-09)
1414

sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This extension provides functionality for receiving Web PubSub webhook calls in
1515
Install the Web PubSub extension with [NuGet][nuget]:
1616

1717
```dotnetcli
18-
dotnet add package Microsoft.Azure.WebJobs.Extensions.WebPubSub --prerelease
18+
dotnet add package Microsoft.Azure.WebJobs.Extensions.WebPubSub
1919
```
2020

2121
### Prerequisites

sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub/src/Microsoft.Azure.WebJobs.Extensions.WebPubSub.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
55
<PackageId>Microsoft.Azure.WebJobs.Extensions.WebPubSub</PackageId>
66
<Description>Azure Functions extension for the WebPubSub service</Description>
7-
<Version>1.0.0-beta.5</Version>
7+
<Version>1.0.0</Version>
88
<NoWarn>$(NoWarn);AZC0001;CS8632;CA1056;CA2227</NoWarn>
99
<IsExtensionClientLibrary>true</IsExtensionClientLibrary>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
1313
<PackageReference Include="Microsoft.AspNetCore.Http" />
1414
<PackageReference Include="Microsoft.Azure.WebJobs" />
15+
<PackageReference Include="Azure.Core" />
1516
</ItemGroup>
1617

1718
<ItemGroup>

sdk/webpubsub/Microsoft.Azure.WebPubSub.AspNetCore/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.0.0-beta.1 (Unreleased)
3+
## 1.0.0-beta.1 (2021-11-09)
44

55
### Features Added
66

sdk/webpubsub/Microsoft.Azure.WebPubSub.AspNetCore/src/Microsoft.Azure.WebPubSub.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Azure SDK client library for the WebPubSub service</Description>
44
<AssemblyTitle>Azure SDK for WebPubSub</AssemblyTitle>

sdk/webpubsub/Microsoft.Azure.WebPubSub.Common/CHANGELOG.md

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

3-
## 1.0.0-beta.2 (Unreleased)
4-
5-
### Features Added
3+
## 1.0.0 (2021-11-09)
64

75
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
6+
- Rename `MessageDataType` to `WebPubSubDataType`.
127

138
## 1.0.0-beta.1 (2021-11-09)
149

sdk/webpubsub/Microsoft.Azure.WebPubSub.Common/src/Microsoft.Azure.WebPubSub.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Description>Azure SDK Common object library for the WebPubSub service</Description>
44
<AssemblyTitle>Azure SDK Common for WebPubSub</AssemblyTitle>
5-
<Version>1.0.0-beta.2</Version>
5+
<Version>1.0.0</Version>
66
<PackageTags>Azure, WebPubSub</PackageTags>
77
<RequiredTargetFrameworks>netstandard2.0</RequiredTargetFrameworks>
88
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>

0 commit comments

Comments
 (0)