-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create 2022-10-24.md * Update 2022-10-24.md * added release notes for the identity SDK * common sdk release notes added * Update and rename 2022-10-24.md to 2022-10-17.md * Update README.md * Update README.md * Update release_note_summary.md Co-authored-by: Aigerim <aykobb@gmail.com>
- Loading branch information
Showing
3 changed files
with
105 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# Release notes for October 3rd - October 17th | ||
|
||
## Table of contents | ||
|
||
* [Chat](#chat) | ||
* [Identity](#identity) | ||
* [Common](#common) | ||
|
||
## Chat | ||
|
||
### JS | ||
|
||
### [1.3.0 (2022-10-13)](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/communication/communication-chat/CHANGELOG.md#130-2022-10-13) | ||
|
||
#### Features Added | ||
|
||
- Updated to `@azure/communication-signaling@1.0.0-beta.15`. | ||
- Improves real-time notification of messages when the network is offline, interrupted or unstable. For message(s) sent during this time, the customer will receive the notification that the message has been delivered if the network is functioning normally within 15 minutes. | ||
- Updated to `@azure/core-tracing` 1.0. | ||
|
||
|
||
## Identity | ||
|
||
### .NET | ||
|
||
### [1.2.0 (2022-10-11)](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/communication/Azure.Communication.Identity/CHANGELOG.md#120-2022-10-11) | ||
|
||
#### Features Added | ||
|
||
- Added support to customize the Communication Identity access token’s validity period: | ||
- Added method overloads that provide the ability to create a Communication Identity access token with custom expiration: | ||
- `CreateUserAndToken(IEnumerable<CommunicationTokenScope> scopes, TimeSpan tokenExpiresIn, CancellationToken cancellationToken = default)` | ||
- `CreateUserAndTokenAsync(IEnumerable<CommunicationTokenScope> scopes, TimeSpan tokenExpiresIn, CancellationToken cancellationToken = default)` | ||
- `GetToken(CommunicationUserIdentifier communicationUser, IEnumerable<CommunicationTokenScope> scopes, TimeSpan tokenExpiresIn, CancellationToken cancellationToken = default)` | ||
- `GetTokenAsync(CommunicationUserIdentifier communicationUser, IEnumerable<CommunicationTokenScope> scopes, TimeSpan tokenExpiresIn, CancellationToken cancellationToken = default)` | ||
- Added a new API version `ServiceVersion.V2022_10_01` that is now the default API version. | ||
|
||
### JS | ||
|
||
### [1.2.0 (2022-10-12)](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/communication/communication-identity/CHANGELOG.md#120-2022-10-12) | ||
|
||
#### Features Added | ||
|
||
- Added support to customize the Communication Identity access token's validity period: | ||
- `createUserAndToken` and `getToken` methods now accept `CreateUserAndTokenOptions` and `GetTokenOptions` that provide the ability to create a Communication Identity access token with custom expiration via optional `tokenExpiresInMinutes` property: | ||
- `createUserAndToken(scopes: TokenScope[], options: CreateUserAndTokenOptions = {})` | ||
- `getToken(user: CommunicationUserIdentifier, scopes: TokenScope[], options: GetTokenOptions = {})` | ||
- `interface CreateUserAndTokenOptions extends OperationOptions { tokenExpiresInMinutes?: number; }` | ||
- `interface GetTokenOptions extends OperationOptions { tokenExpiresInMinutes?: number; }` | ||
- Added a new API version `2022-10-01` that is now the default API version. | ||
|
||
|
||
### Java | ||
|
||
### [1.4.0 (2022-10-12)](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/communication/azure-communication-identity/CHANGELOG.md#140-2022-10-12) | ||
|
||
#### Features Added | ||
|
||
- Added support to customize the Communication Identity access token’s validity period: | ||
- Added methods that provide the ability to create a Communication Identity access token with custom expiration: | ||
- CommunicationIdentityClient: | ||
- `createUserAndToken(Iterable<CommunicationTokenScope> scopes, Duration tokenExpiresIn)` | ||
- `createUserAndTokenWithResponse(Iterable<CommunicationTokenScope> scopes, Duration tokenExpiresIn, Context context)` | ||
- `getToken(CommunicationUserIdentifier communicationUser, Iterable<CommunicationTokenScope> scopes, Duration tokenExpiresIn)` | ||
- `getTokenWithResponse(CommunicationUserIdentifier communicationUser, Iterable<CommunicationTokenScope> scopes, Duration tokenExpiresIn, Context context)` | ||
- CommunicationIdentityAsyncClient: | ||
- `createUserAndToken(Iterable<CommunicationTokenScope> scopes, Duration tokenExpiresIn)` | ||
- `createUserAndTokenWithResponse(Iterable<CommunicationTokenScope> scopes, Duration tokenExpiresIn)` | ||
- `getToken(CommunicationUserIdentifier communicationUser, Iterable<CommunicationTokenScope> scopes, Duration tokenExpiresIn)` | ||
- `getTokenWithResponse(CommunicationUserIdentifier communicationUser, Iterable<CommunicationTokenScope> scopes, Duration tokenExpiresIn)` | ||
- Added a new API version `CommunicationIdentityServiceVersion.V2022_10_01` that is now the default API version. | ||
|
||
#### Dependency Updates | ||
|
||
- Upgraded `azure-core` from `1.32.0` to version `1.33.0`. | ||
- Upgraded `azure-communication-common` from `1.2.1` to version `1.2.2`. | ||
|
||
### Python | ||
|
||
### [1.3.0 (2022-10-13)](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/communication/azure-communication-identity/CHANGELOG.md#130-2022-10-13) | ||
|
||
#### Features Added | ||
|
||
- Added support to customize the Communication Identity access token's validity period: | ||
- `create_user_and_token` and `get_token` methods in both sync and async clients can now accept keyword argument `token_expires_in: ~datetime.timedelta` that provides the ability to create a Communication Identity access token with custom expiration. | ||
- Added a new API version `ApiVersion.V2022_10_01` that is now the default API version. | ||
|
||
|
||
## Common | ||
|
||
### Java | ||
|
||
### [1.2.2 (2022-10-11)](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/communication/azure-communication-common/CHANGELOG.md#122-2022-10-11) | ||
|
||
#### Bug Fixes | ||
- Fixed the logic of `PhoneNumberIdentifier` to always maintain the original phone number string whether it included the leading `+` sign or not. | ||
|
||
#### Dependency Updates | ||
|
||
- Upgraded `azure-core` from `1.32.0` to version `1.33.0`. | ||
- Upgraded `azure-core-http-netty` from `1.12.5` to version `1.12.6`. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters