Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 2.27 KB

File metadata and controls

41 lines (30 loc) · 2.27 KB

Release History

1.1.0 (2022-07-19)

Features Added

  • Added support to integrate communication as Teams user with Azure Communication Services:
    • Added GetTokenForTeamsUser(GetTokenForTeamsUserOptions options, CancellationToken cancellationToken = default) method that provides the ability to exchange an Azure AD access token of a Teams user for a Communication Identity access token to CommunicationIdentityClient.
  • Removed ServiceVersion.V2021_10_31_preview
  • Added a new API version ServiceVersion.V2022_06_01 that is now the default API version

1.1.0-beta.1 (2021-10-29)

  • Updated version of Identity API to enable to to integrate communication as Teams user with Azure Communication Services

1.0.1 (2021-05-25)

  • Dependency versions updated.

1.0.0 (2021-03-29)

Updated Azure.Communication.Identity version.

1.0.0-beta.5 (2021-03-09)

Breaking

  • CommunicationIdentityClient.IssueToken and CommunicationIdentityClient.IssueTokenAsync are renamed to GetToken and GetTokenAsync, respectively.
  • CommunicationIdentityClient.CreateUserWithToken and CommunicationIdentityClient.CreateUserWithTokenAsync are renamed to CreateUserAndToken and CreateUserAndTokenAsync, respectively. Their return value is also changed from Tuple<CommunicationUserIdentifier, string> to CommunicationUserIdentifierAndToken.

1.0.0-beta.4 (2021-02-09)

Added

  • Added CommunicationIdentityClient (originally was part of the Azure.Communication.Administration package).
  • Added support to create CommunicationIdentityClient with TokenCredential.
  • Added support to create CommunicationIdentityClient with AzureKeyCredential.
  • Added ability to create a user and issue token for it at the same time.

Breaking

  • CommunicationTokenScope.Pstn is removed.
  • CommunicationIdentityClient.RevokeTokens now revoke all the currently issued tokens instead of revoking tokens issued prior to a given time.
  • CommunicationIdentityClient.IssueToken returns an instance of Azure.Core.AccessToken instead of CommunicationUserToken.