Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.19.0 #1712

Merged
merged 23 commits into from
Nov 8, 2022
Merged

Release v1.19.0 #1712

merged 23 commits into from
Nov 8, 2022

Commits on Sep 6, 2022

  1. Update Actions to use dotnet build (#1663)

    * Update windows.yml
    vicancy authored Sep 6, 2022
    Configuration menu
    Copy the full SHA
    8d589ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e1d3c6c View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2022

  1. Update CI to enable net7.0 preview builds (#1677)

    * Support net7.0
    
    * update osx/ubuntu.
    
    * revert common package upgrade.
    
    * update build-source guide and revert net7.0 in src.
    
    * Add OrTimeout()
    JialinXin authored Sep 7, 2022
    Configuration menu
    Copy the full SHA
    cc356c1 View commit details
    Browse the repository at this point in the history
  2. Fix build warnings and add net6 samples (#1676)

    * Fix build warning
    
    * Update docs
    
    * Fix build failure
    
    * Fix test failure
    vicancy authored Sep 7, 2022
    Configuration menu
    Copy the full SHA
    1bfba7d View commit details
    Browse the repository at this point in the history
  3. Fix vlunerability issue (#1678)

    * Fix vlunerability issue
    
    * fix filters
    
    * fix filters
    vicancy authored Sep 7, 2022
    Configuration menu
    Copy the full SHA
    743ad57 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2022

  1. Configuration menu
    Copy the full SHA
    02d169f View commit details
    Browse the repository at this point in the history
  2. Change emulator to net6.0 (#1682)

    * Change emulator to net6.0
    
    * Fix test
    vicancy authored Sep 20, 2022
    Configuration menu
    Copy the full SHA
    8882dfc View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2022

  1. Add filter property...... (#1686)

    * Add filter
    
    * Add multiPayload case
    
    * Adding comments
    vicancy authored Sep 23, 2022
    Configuration menu
    Copy the full SHA
    eb8575f View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2022

  1. Update management-sdk-guide.md (#1689)

    Improve a confusing statement. The original statement can also be interpreted as this SDK only supports SignalR clients based on ASP.NET Core C#, which confuses users. #1688
    Y-Sindo authored Sep 27, 2022
    Configuration menu
    Copy the full SHA
    84f2d69 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2022

  1. Configuration menu
    Copy the full SHA
    e99d04c View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2022

  1. Fix HubConnectionContext.UserIdentifier is null when negotiation wi…

    …th Management SDK (#1691)
    
    When clients negotiatie with Management SDK and connect to SignalR server, IUserIdProvider might not work as the user ID is set directly in the Management SDK.
    
    To make HubConnectionContext.UserIdentifier have the valid value in this case, we should set it before the server accesses it. HubLifetimeManager{THub}.OnConnectedAsync(HubConnectionContext) is the only chance we can set the value. However, we cannot access the Constants.ClaimType.UserId as ASRS system claims are trimmed there. HubConnectionContext.Features is the place where we can store the user Id.
    
    The following code is the injection point.
    https://github.com/dotnet/aspnetcore/blob/v6.0.9/src/SignalR/server/Core/src/HubConnectionHandler.cs#L132-L141
    
    Fixes #1679
    Y-Sindo authored Sep 29, 2022
    Configuration menu
    Copy the full SHA
    19bfa54 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2022

  1. Add ClientInvocationManager (#1684)

    * add ClientInvocationManager
    xingsy97 authored Oct 14, 2022
    Configuration menu
    Copy the full SHA
    724624c View commit details
    Browse the repository at this point in the history
  2. update CallerClientResultsManager (#1697)

    add `TryCompleteResult` for `ErrorCompletionMessage`
    xingsy97 authored Oct 14, 2022
    Configuration menu
    Copy the full SHA
    6e8b50b View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2022

  1. Configuration menu
    Copy the full SHA
    60c3266 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2022

  1. Add spec for client-invocation. (#1701)

    * Add spec for client-invocation.
    
    * minor update direction for ErrorCompletionMessage
    JialinXin authored Oct 24, 2022
    Configuration menu
    Copy the full SHA
    6671bef View commit details
    Browse the repository at this point in the history
  2. Add client Invocation implementation and UTs (#1687)

    * Add client Invocation implementation and UTs
    xingsy97 authored Oct 24, 2022
    Configuration menu
    Copy the full SHA
    c959735 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2022

  1. [ClientInvocation] Fix cleanup in caller case. (#1702)

    * Fix cleanup in caller case.
    
    * fix UT.
    
    * Update src/Microsoft.Azure.SignalR.Common/ClientInvocation/IClientInvocationManager.cs
    
    Co-authored-by: Liangying.Wei <lianwei@microsoft.com>
    
    Co-authored-by: Liangying.Wei <lianwei@microsoft.com>
    JialinXin and vicancy authored Oct 26, 2022
    Configuration menu
    Copy the full SHA
    34314d1 View commit details
    Browse the repository at this point in the history
  2. Add ClientResultSample (#1703)

    * Add ClientResultSample
    
    * Move file
    
    * minor update.
    
    * minor update README.
    
    * show server/service ex.message
    
    * Add Broadcast method and update README
    JialinXin authored Oct 26, 2022
    Configuration menu
    Copy the full SHA
    5826b42 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2022

  1. Configuration menu
    Copy the full SHA
    b2670fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1c4a20b View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2022

  1. Configuration menu
    Copy the full SHA
    8dc02bb View commit details
    Browse the repository at this point in the history
  2. Clean up dependencies. (#1711)

    * Update dep to GA version.
    
    * clean up dependencies
    
    * clean management.
    
    * fix test dep.
    JialinXin authored Nov 8, 2022
    Configuration menu
    Copy the full SHA
    d97fea3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5eee228 View commit details
    Browse the repository at this point in the history