@azure/storage-blob 12.8.0 → 12.8.1-alpha.20211015.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -6
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist-esm/storage-blob/src/Clients.js +1 -1
- package/dist-esm/storage-blob/src/Clients.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/storageClientContext.js +1 -1
- package/dist-esm/storage-blob/src/generated/src/storageClientContext.js.map +1 -1
- package/dist-esm/storage-blob/src/utils/constants.js +1 -1
- package/dist-esm/storage-blob/src/utils/constants.js.map +1 -1
- package/package.json +7 -7
- package/typings/3.1/storage-blob.d.ts +12 -9
- package/typings/latest/storage-blob.d.ts +26 -9
package/CHANGELOG.md
CHANGED
@@ -1,11 +1,27 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
## 12.8.1 (Unreleased)
|
4
|
+
|
5
|
+
### Features Added
|
6
|
+
|
7
|
+
### Breaking Changes
|
8
|
+
|
9
|
+
### Bugs Fixed
|
10
|
+
|
11
|
+
### Other Changes
|
12
|
+
|
3
13
|
## 12.8.0 (2021-09-10)
|
4
14
|
|
5
15
|
### Features Added
|
6
16
|
|
7
17
|
- Includes all features released in 12.8.0-beta.1.
|
8
18
|
|
19
|
+
## 12.7.0 (2021-08-02)
|
20
|
+
|
21
|
+
- Support for Node.js 8 and IE 11 has been dropped. Please see our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
|
22
|
+
- Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features
|
23
|
+
- Updated our internal core package dependencies to their latest versions in order to add support for Opentelemetry 1.0.0 which is compatible with the latest versions of our other client libraries.
|
24
|
+
|
9
25
|
## 12.8.0-beta.1 (2021-07-28)
|
10
26
|
|
11
27
|
### Features Added
|
@@ -20,12 +36,6 @@
|
|
20
36
|
- Added support for Parquet as an input format in `BlockBlobClient.query()`.
|
21
37
|
- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
|
22
38
|
|
23
|
-
## 12.7.0 (2021-08-02)
|
24
|
-
|
25
|
-
- Support for Node.js 8 and IE 11 has been dropped. Please see our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
|
26
|
-
- Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features
|
27
|
-
- Updated our internal core package dependencies to their latest versions in order to add support for Opentelemetry 1.0.0 which is compatible with the latest versions of our other client libraries.
|
28
|
-
|
29
39
|
## 12.6.0 (2021-06-09)
|
30
40
|
|
31
41
|
- Includes all features released in 12.6.0-beta.1.
|
package/dist/index.js
CHANGED
@@ -13150,7 +13150,7 @@ const logger = logger$1.createClientLogger("storage-blob");
|
|
13150
13150
|
|
13151
13151
|
// Copyright (c) Microsoft Corporation.
|
13152
13152
|
// Licensed under the MIT license.
|
13153
|
-
const SDK_VERSION = "12.8.
|
13153
|
+
const SDK_VERSION = "12.8.1";
|
13154
13154
|
const SERVICE_VERSION = "2020-10-02";
|
13155
13155
|
const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB
|
13156
13156
|
const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB
|
@@ -14641,7 +14641,7 @@ class StorageSharedKeyCredential extends Credential {
|
|
14641
14641
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
14642
14642
|
*/
|
14643
14643
|
const packageName = "azure-storage-blob";
|
14644
|
-
const packageVersion = "12.8.
|
14644
|
+
const packageVersion = "12.8.1";
|
14645
14645
|
class StorageClientContext extends coreHttp.ServiceClient {
|
14646
14646
|
/**
|
14647
14647
|
* Initializes a new instance of the StorageClientContext class.
|
@@ -20146,7 +20146,7 @@ class BlockBlobClient extends BlobClient {
|
|
20146
20146
|
* Uploads data to block blob. Requires a bodyFactory as the data source,
|
20147
20147
|
* which need to return a {@link HttpRequestBody} object with the offset and size provided.
|
20148
20148
|
*
|
20149
|
-
* When data length is no more than the
|
20149
|
+
* When data length is no more than the specified {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is
|
20150
20150
|
* {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload.
|
20151
20151
|
* Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList}
|
20152
20152
|
* to commit the block list.
|