From 02768e36ec8c99704930cb4808f96f61ec8b0ec0 Mon Sep 17 00:00:00 2001 From: yzt Date: Wed, 13 Sep 2023 00:07:51 +0800 Subject: [PATCH] [SignalR extensions] Release v1.11.2 (#38623) * Release v1.11.2 * Fix test issue --- eng/Packages.Data.props | 6 +++--- .../CHANGELOG.md | 12 +----------- ...ft.Azure.WebJobs.Extensions.SignalRService.csproj | 2 +- .../tests/JobhostEndToEnd.cs | 3 ++- 4 files changed, 7 insertions(+), 16 deletions(-) diff --git a/eng/Packages.Data.props b/eng/Packages.Data.props index 2a2d360ab6805..dffc545e11b2c 100644 --- a/eng/Packages.Data.props +++ b/eng/Packages.Data.props @@ -142,9 +142,9 @@ - - - + + + diff --git a/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/CHANGELOG.md b/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/CHANGELOG.md index 57180d9832f5e..2abc205131db0 100644 --- a/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/CHANGELOG.md +++ b/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/CHANGELOG.md @@ -1,16 +1,6 @@ # Release History -## 1.12.0-beta.1 (Unreleased) - -### Features Added - -### Breaking Changes - -### Bugs Fixed - -### Other Changes - -## 1.11.1 (2023-09-11) +## 1.11.2 (2023-09-12) ### Bugs Fixed * Fixed the issue when using customized server endpoint with Azure AD credential. diff --git a/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/src/Microsoft.Azure.WebJobs.Extensions.SignalRService.csproj b/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/src/Microsoft.Azure.WebJobs.Extensions.SignalRService.csproj index d276a2149c8af..c51bf6cbeccba 100644 --- a/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/src/Microsoft.Azure.WebJobs.Extensions.SignalRService.csproj +++ b/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/src/Microsoft.Azure.WebJobs.Extensions.SignalRService.csproj @@ -3,7 +3,7 @@ $(RequiredTargetFrameworks) Microsoft.Azure.WebJobs.Extensions.SignalRService - 1.12.0-beta.1 + 1.11.2 1.11.1 true diff --git a/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/tests/JobhostEndToEnd.cs b/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/tests/JobhostEndToEnd.cs index 4b74a00fa340f..b2b6a7a0e5ea9 100644 --- a/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/tests/JobhostEndToEnd.cs +++ b/sdk/signalr/Microsoft.Azure.WebJobs.Extensions.SignalRService/tests/JobhostEndToEnd.cs @@ -5,6 +5,7 @@ using System.Collections.Generic; using System.IdentityModel.Tokens.Jwt; using System.Linq; +using System.Net.Http; using System.Reflection; using System.Text; using System.Threading.Tasks; @@ -203,7 +204,7 @@ await signalRMessages.AddAsync( Arguments = new[] { "message" } }); } - catch (AzureSignalRInaccessibleEndpointException) + catch (AzureSignalRException ex) when (ex.InnerException is HttpRequestException) { // ignore, since we don't really connect to Azure SignalR Service }