update @azure/storage-blob

This commit is contained in:
Dmitry Shibanov 2023-04-20 12:45:20 +02:00
parent 916b3204c5
commit e85f0fb06d
4 changed files with 29 additions and 17 deletions

View file

@ -1,6 +1,6 @@
--- ---
name: "@azure/storage-blob" name: "@azure/storage-blob"
version: 12.13.0 version: 12.14.0
type: npm type: npm
summary: Microsoft Azure Storage SDK for JavaScript - Blob summary: Microsoft Azure Storage SDK for JavaScript - Blob
homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/ homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/

16
dist/cleanup/index.js vendored
View file

@ -30691,7 +30691,7 @@ const timeoutInSeconds = {
const version = { const version = {
parameterPath: "version", parameterPath: "version",
mapper: { mapper: {
defaultValue: "2021-12-02", defaultValue: "2022-11-02",
isConstant: true, isConstant: true,
serializedName: "x-ms-version", serializedName: "x-ms-version",
type: { type: {
@ -35522,8 +35522,8 @@ const logger = logger$1.createClientLogger("storage-blob");
// Copyright (c) Microsoft Corporation. // Copyright (c) Microsoft Corporation.
// Licensed under the MIT license. // Licensed under the MIT license.
const SDK_VERSION = "12.13.0"; const SDK_VERSION = "12.14.0";
const SERVICE_VERSION = "2021-12-02"; const SERVICE_VERSION = "2022-11-02";
const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB
const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB
const BLOCK_BLOB_MAX_BLOCKS = 50000; const BLOCK_BLOB_MAX_BLOCKS = 50000;
@ -37381,7 +37381,7 @@ class StorageSharedKeyCredential extends Credential {
* Changes may cause incorrect behavior and will be lost if the code is regenerated. * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/ */
const packageName = "azure-storage-blob"; const packageName = "azure-storage-blob";
const packageVersion = "12.13.0"; const packageVersion = "12.14.0";
class StorageClientContext extends coreHttp__namespace.ServiceClient { class StorageClientContext extends coreHttp__namespace.ServiceClient {
/** /**
* Initializes a new instance of the StorageClientContext class. * Initializes a new instance of the StorageClientContext class.
@ -37407,7 +37407,7 @@ class StorageClientContext extends coreHttp__namespace.ServiceClient {
// Parameter assignments // Parameter assignments
this.url = url; this.url = url;
// Assigning values to Constant parameters // Assigning values to Constant parameters
this.version = options.version || "2021-12-02"; this.version = options.version || "2022-11-02";
} }
} }
@ -41433,6 +41433,9 @@ class BlobClient extends StorageClient {
// (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)
// The second parameter is undefined. Use anonymous credential. // The second parameter is undefined. Use anonymous credential.
url = urlOrConnectionString; url = urlOrConnectionString;
if (blobNameOrOptions && typeof blobNameOrOptions !== "string") {
options = blobNameOrOptions;
}
pipeline = newPipeline(new AnonymousCredential(), options); pipeline = newPipeline(new AnonymousCredential(), options);
} }
else if (credentialOrPipelineOrContainerName && else if (credentialOrPipelineOrContainerName &&
@ -42736,6 +42739,9 @@ class BlockBlobClient extends BlobClient {
// (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)
// The second parameter is undefined. Use anonymous credential. // The second parameter is undefined. Use anonymous credential.
url = urlOrConnectionString; url = urlOrConnectionString;
if (blobNameOrOptions && typeof blobNameOrOptions !== "string") {
options = blobNameOrOptions;
}
pipeline = newPipeline(new AnonymousCredential(), options); pipeline = newPipeline(new AnonymousCredential(), options);
} }
else if (credentialOrPipelineOrContainerName && else if (credentialOrPipelineOrContainerName &&

16
dist/setup/index.js vendored
View file

@ -30691,7 +30691,7 @@ const timeoutInSeconds = {
const version = { const version = {
parameterPath: "version", parameterPath: "version",
mapper: { mapper: {
defaultValue: "2021-12-02", defaultValue: "2022-11-02",
isConstant: true, isConstant: true,
serializedName: "x-ms-version", serializedName: "x-ms-version",
type: { type: {
@ -35522,8 +35522,8 @@ const logger = logger$1.createClientLogger("storage-blob");
// Copyright (c) Microsoft Corporation. // Copyright (c) Microsoft Corporation.
// Licensed under the MIT license. // Licensed under the MIT license.
const SDK_VERSION = "12.13.0"; const SDK_VERSION = "12.14.0";
const SERVICE_VERSION = "2021-12-02"; const SERVICE_VERSION = "2022-11-02";
const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB
const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB
const BLOCK_BLOB_MAX_BLOCKS = 50000; const BLOCK_BLOB_MAX_BLOCKS = 50000;
@ -37381,7 +37381,7 @@ class StorageSharedKeyCredential extends Credential {
* Changes may cause incorrect behavior and will be lost if the code is regenerated. * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/ */
const packageName = "azure-storage-blob"; const packageName = "azure-storage-blob";
const packageVersion = "12.13.0"; const packageVersion = "12.14.0";
class StorageClientContext extends coreHttp__namespace.ServiceClient { class StorageClientContext extends coreHttp__namespace.ServiceClient {
/** /**
* Initializes a new instance of the StorageClientContext class. * Initializes a new instance of the StorageClientContext class.
@ -37407,7 +37407,7 @@ class StorageClientContext extends coreHttp__namespace.ServiceClient {
// Parameter assignments // Parameter assignments
this.url = url; this.url = url;
// Assigning values to Constant parameters // Assigning values to Constant parameters
this.version = options.version || "2021-12-02"; this.version = options.version || "2022-11-02";
} }
} }
@ -41433,6 +41433,9 @@ class BlobClient extends StorageClient {
// (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)
// The second parameter is undefined. Use anonymous credential. // The second parameter is undefined. Use anonymous credential.
url = urlOrConnectionString; url = urlOrConnectionString;
if (blobNameOrOptions && typeof blobNameOrOptions !== "string") {
options = blobNameOrOptions;
}
pipeline = newPipeline(new AnonymousCredential(), options); pipeline = newPipeline(new AnonymousCredential(), options);
} }
else if (credentialOrPipelineOrContainerName && else if (credentialOrPipelineOrContainerName &&
@ -42736,6 +42739,9 @@ class BlockBlobClient extends BlobClient {
// (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)
// The second parameter is undefined. Use anonymous credential. // The second parameter is undefined. Use anonymous credential.
url = urlOrConnectionString; url = urlOrConnectionString;
if (blobNameOrOptions && typeof blobNameOrOptions !== "string") {
options = blobNameOrOptions;
}
pipeline = newPipeline(new AnonymousCredential(), options); pipeline = newPipeline(new AnonymousCredential(), options);
} }
else if (credentialOrPipelineOrContainerName && else if (credentialOrPipelineOrContainerName &&

12
package-lock.json generated
View file

@ -368,9 +368,9 @@
} }
}, },
"node_modules/@azure/storage-blob": { "node_modules/@azure/storage-blob": {
"version": "12.13.0", "version": "12.14.0",
"resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.13.0.tgz", "resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.14.0.tgz",
"integrity": "sha512-t3Q2lvBMJucgTjQcP5+hvEJMAsJSk0qmAnjDLie2td017IiduZbbC9BOcFfmwzR6y6cJdZOuewLCNFmEx9IrXA==", "integrity": "sha512-g8GNUDpMisGXzBeD+sKphhH5yLwesB4JkHr1U6be/X3F+cAMcyGLPD1P89g2M7wbEtUJWoikry1rlr83nNRBzg==",
"dependencies": { "dependencies": {
"@azure/abort-controller": "^1.0.0", "@azure/abort-controller": "^1.0.0",
"@azure/core-http": "^3.0.0", "@azure/core-http": "^3.0.0",
@ -6106,9 +6106,9 @@
} }
}, },
"@azure/storage-blob": { "@azure/storage-blob": {
"version": "12.13.0", "version": "12.14.0",
"resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.13.0.tgz", "resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.14.0.tgz",
"integrity": "sha512-t3Q2lvBMJucgTjQcP5+hvEJMAsJSk0qmAnjDLie2td017IiduZbbC9BOcFfmwzR6y6cJdZOuewLCNFmEx9IrXA==", "integrity": "sha512-g8GNUDpMisGXzBeD+sKphhH5yLwesB4JkHr1U6be/X3F+cAMcyGLPD1P89g2M7wbEtUJWoikry1rlr83nNRBzg==",
"requires": { "requires": {
"@azure/abort-controller": "^1.0.0", "@azure/abort-controller": "^1.0.0",
"@azure/core-http": "^3.0.0", "@azure/core-http": "^3.0.0",