@azure/storage-blob 12.9.1-alpha.20220418.2 → 12.10.0-beta.1
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 +4 -4
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/models/parameters.js +1 -1
- package/dist-esm/storage-blob/src/generated/src/models/parameters.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/storageClientContext.js +2 -2
- package/dist-esm/storage-blob/src/generated/src/storageClientContext.js.map +1 -1
- package/dist-esm/storage-blob/src/utils/constants.js +2 -2
- package/dist-esm/storage-blob/src/utils/constants.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
-
## 12.
|
3
|
+
## 12.10.0-beta.1 (2022-04-19)
|
4
4
|
|
5
5
|
### Features Added
|
6
6
|
|
7
|
-
|
7
|
+
- Added support for service version 2021-06-08.
|
8
|
+
- Added pageable output of PageBlobClient.listPageRanges() and PageBlobClient.listPageRangesDiff().
|
9
|
+
- Added ability to copy source blob tags for BlobClient.syncCopyFromURL().
|
8
10
|
|
9
11
|
### Bugs Fixed
|
10
12
|
|
11
13
|
- Fix incorrect browser mapping path for BufferScheduler.js
|
12
14
|
- Add `react-native` mapping to ESM entrypoint
|
13
15
|
|
14
|
-
### Other Changes
|
15
|
-
|
16
16
|
## 12.9.0 (2022-03-11)
|
17
17
|
|
18
18
|
### Features Added
|
package/dist/index.js
CHANGED
@@ -8497,7 +8497,7 @@ const timeoutInSeconds = {
|
|
8497
8497
|
const version = {
|
8498
8498
|
parameterPath: "version",
|
8499
8499
|
mapper: {
|
8500
|
-
defaultValue: "2021-
|
8500
|
+
defaultValue: "2021-06-08",
|
8501
8501
|
isConstant: true,
|
8502
8502
|
serializedName: "x-ms-version",
|
8503
8503
|
type: {
|
@@ -13325,8 +13325,8 @@ const logger = logger$1.createClientLogger("storage-blob");
|
|
13325
13325
|
|
13326
13326
|
// Copyright (c) Microsoft Corporation.
|
13327
13327
|
// Licensed under the MIT license.
|
13328
|
-
const SDK_VERSION = "12.
|
13329
|
-
const SERVICE_VERSION = "2021-
|
13328
|
+
const SDK_VERSION = "12.10.0-beta.1";
|
13329
|
+
const SERVICE_VERSION = "2021-06-08";
|
13330
13330
|
const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB
|
13331
13331
|
const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB
|
13332
13332
|
const BLOCK_BLOB_MAX_BLOCKS = 50000;
|
@@ -15309,7 +15309,7 @@ class StorageSharedKeyCredential extends Credential {
|
|
15309
15309
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
15310
15310
|
*/
|
15311
15311
|
const packageName = "azure-storage-blob";
|
15312
|
-
const packageVersion = "12.
|
15312
|
+
const packageVersion = "12.10.0-beta.1";
|
15313
15313
|
class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
15314
15314
|
/**
|
15315
15315
|
* Initializes a new instance of the StorageClientContext class.
|
@@ -15335,7 +15335,7 @@ class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
|
15335
15335
|
// Parameter assignments
|
15336
15336
|
this.url = url;
|
15337
15337
|
// Assigning values to Constant parameters
|
15338
|
-
this.version = options.version || "2021-
|
15338
|
+
this.version = options.version || "2021-06-08";
|
15339
15339
|
}
|
15340
15340
|
}
|
15341
15341
|
|