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

January release highlights for JavaScript & TypeScript #2240

Merged
7 commits merged into from
Jan 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 75 additions & 9 deletions releases/2021-01/js.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,30 @@ repository: azure/azure-sdk-for-js

The Azure SDK team is pleased to make available the January 2021 client library release.

#### GA

- _Add packages_

#### Updates

- _Add packages_
- Azure Storage Queue
- Azure Storage Blob
- Azure Storage Data Lake
- Azure Storage File Share
- Azure Service Bus

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't these storage packages GA STG 75 features?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ljian3377 please help 🙏

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, they did. according to the email I just forwarded: STG75 features GA, new generateSasUrl() API on storage clients and several bug fixes for Data Lake.

@azure/storage-blob@12.4.0
@azure/storage-file-datalake@12.3.0
@azure/storage-file-share @12.4.0
@azure/storage-queue @12.3.0

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These libraries have been released as GA before, so I was assuming these are only updates. Betas go on the betas section, so these updates can't be betas, but they can be stable versions. I could be missing something, of course.

#### Beta

- _Add packages_
- Azure Data Tables
- Azure Attestation

## Installation Instructions

To install the packages, copy and paste the below into a terminal.

```bash
$> npm install @azure/package-name
$> npm install @azure/storage-blob
$> npm install @azure/storage-file-datalake
$> npm install @azure/storage-file-share
$> npm install @azure/storage-queue
$> npm install @azure/data-tables@next
$> npm install @azure/attestation@next
```

## Feedback
Expand All @@ -34,9 +40,69 @@ If you have a bug or feature request for one of the libraries, please post an is

## Release highlights

### _Package name_
### Azure Storage

sadasant marked this conversation as resolved.
Show resolved Hide resolved
#### @azure/storage-blob [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/storage/storage-blob/CHANGELOG.md)

We are releasing to add support for new service features in Azure Storage Service API version 2020-04-08.

##### New Features on @azure/storage-blob@12.4.0

- Added a new `from(permissionLike)` function to `AccountSASPermissions`, `BlobSASPermissions` and `ContainerSASPermissions` for creating such permissions from raw permission-like objects. Addressed issue [9714](https://github.com/Azure/azure-sdk-for-js/issues/9714).

#### @azure/storage-file-datalake [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/storage/storage-file-datalake/CHANGELOG.md)

##### Major Fixes on @azure/storage-file-datalake@12.3.0

- `DataLakePathClient.move()` now supports source and destination authenticated with SAS. Fixed bug [12758](https://github.com/Azure/azure-sdk-for-js/issues/12758).
- Now you can get the functionality of the root directory via the `DataLakeDirectoryClient` created via `FileSystemClient.getDirectoryClient("")`. Fixed bug [12813](https://github.com/Azure/azure-sdk-for-js/issues/12813).

#### storage-file-share [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/storage/storage-file-share/CHANGELOG.md)

This release contains bug fixes to improve quality.

#### storage-queue [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/storage/storage-queue/CHANGELOG.md)

This release contains bug fixes to improve quality.

### Azure Service Bus

#### @azure/service-bus [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/servicebus/service-bus/CHANGELOG.md)

We're releasing a patch of the Service Bus client that includes some bug fixes.

##### Major Fixes on @azure/service-bus 7.0.1 and 7.0.2

- Improved reliability of the `receiveMessages()` method on the receiver when dealing with large number of messages or slow network connectivity.
- Resolved the issue of hanging receivers when receiving more than 2048 messages from sessions in `receiveAndDelete` mode.
- Fix the use of correlation rule filter when a subset of properties are set.

### Azure Tables

#### @azure/data-tables [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/tables/data-tables/CHANGELOG.md)

We're releasing a new beta for our Azure Data Tables client that improves the precision of the dates being used in the package, and enables this client to communicate with the Azure Storage Emulator.

##### Breaking Changes on @azure/data-tables@1.0.0-beta.4

- Disabled `Edm.DateTime` deserialization into a JavaScript Date to avoid losing precision [#12650](https://github.com/Azure/azure-sdk-for-js/pull/12650).

##### Major Fixes on @azure/data-tables@1.0.0-beta.4

- Fixed an issue that prevented the use of the SDK against the Azure Storage Emulator and `Azurite@3.9.0-table-alpha.1`
[#13165](https://github.com/Azure/azure-sdk-for-js/pull/13165).

### Azure Attestation

#### @azure/attestation [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/attestation/attestation/CHANGELOG.md)

We're introducing our JavaScript and TypeScript client for Microsoft Azure Attestation through an initial beta release.

This beta client provides the following functionality for the Microsoft Azure Attestation Service:

- Major changes only!
- Microsoft Azure Attestation Enclave Attestation.
- Attestation Policy Management APIs.
- Attestation Policy Management Certificate Management APIs.

## Latest Releases

Expand Down