Skip to content

Commit

Permalink
[SignalR extensions] Release v1.11.2 (#38623)
Browse files Browse the repository at this point in the history
* Release v1.11.2

* Fix test issue
  • Loading branch information
Y-Sindo authored Sep 12, 2023
1 parent 35ce212 commit 02768e3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
6 changes: 3 additions & 3 deletions eng/Packages.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@
<PackageReference Update="CloudNative.CloudEvents.SystemTextJson" Version="2.0.0" />
<PackageReference Update="MessagePack" Version="1.9.11" />
<PackageReference Update="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="1.1.5" />
<PackageReference Update="Microsoft.Azure.SignalR" Version="1.21.4" />
<PackageReference Update="Microsoft.Azure.SignalR.Management" Version="1.21.4" />
<PackageReference Update="Microsoft.Azure.SignalR.Protocols" Version="1.21.4" />
<PackageReference Update="Microsoft.Azure.SignalR" Version="1.21.6" />
<PackageReference Update="Microsoft.Azure.SignalR.Management" Version="1.21.6" />
<PackageReference Update="Microsoft.Azure.SignalR.Protocols" Version="1.21.6" />
<PackageReference Update="Microsoft.Azure.SignalR.Serverless.Protocols" Version="1.9.0" />
<PackageReference Update="Microsoft.Azure.WebJobs" Version="3.0.37" />
<PackageReference Update="Microsoft.Azure.WebJobs.Sources" Version="3.0.37" />
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
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.12.0-beta.1</Version>
<Version>1.11.2</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>1.11.1</ApiCompatVersion>
<SignAssembly>true</SignAssembly>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
}
Expand Down

0 comments on commit 02768e3

Please sign in to comment.