mirror of
https://github.com/actions/setup-java.git
synced 2025-04-19 09:26:46 +00:00
update @azure/storage-blob
This commit is contained in:
parent
916b3204c5
commit
e85f0fb06d
4 changed files with 29 additions and 17 deletions
2
.licenses/npm/@azure/storage-blob.dep.yml
generated
2
.licenses/npm/@azure/storage-blob.dep.yml
generated
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
name: "@azure/storage-blob"
|
||||
version: 12.13.0
|
||||
version: 12.14.0
|
||||
type: npm
|
||||
summary: Microsoft Azure Storage SDK for JavaScript - Blob
|
||||
homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/
|
||||
|
|
16
dist/cleanup/index.js
vendored
16
dist/cleanup/index.js
vendored
|
@ -30691,7 +30691,7 @@ const timeoutInSeconds = {
|
|||
const version = {
|
||||
parameterPath: "version",
|
||||
mapper: {
|
||||
defaultValue: "2021-12-02",
|
||||
defaultValue: "2022-11-02",
|
||||
isConstant: true,
|
||||
serializedName: "x-ms-version",
|
||||
type: {
|
||||
|
@ -35522,8 +35522,8 @@ const logger = logger$1.createClientLogger("storage-blob");
|
|||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
const SDK_VERSION = "12.13.0";
|
||||
const SERVICE_VERSION = "2021-12-02";
|
||||
const SDK_VERSION = "12.14.0";
|
||||
const SERVICE_VERSION = "2022-11-02";
|
||||
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_BLOCKS = 50000;
|
||||
|
@ -37381,7 +37381,7 @@ class StorageSharedKeyCredential extends Credential {
|
|||
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
||||
*/
|
||||
const packageName = "azure-storage-blob";
|
||||
const packageVersion = "12.13.0";
|
||||
const packageVersion = "12.14.0";
|
||||
class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
||||
/**
|
||||
* Initializes a new instance of the StorageClientContext class.
|
||||
|
@ -37407,7 +37407,7 @@ class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
|||
// Parameter assignments
|
||||
this.url = url;
|
||||
// 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)
|
||||
// The second parameter is undefined. Use anonymous credential.
|
||||
url = urlOrConnectionString;
|
||||
if (blobNameOrOptions && typeof blobNameOrOptions !== "string") {
|
||||
options = blobNameOrOptions;
|
||||
}
|
||||
pipeline = newPipeline(new AnonymousCredential(), options);
|
||||
}
|
||||
else if (credentialOrPipelineOrContainerName &&
|
||||
|
@ -42736,6 +42739,9 @@ class BlockBlobClient extends BlobClient {
|
|||
// (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)
|
||||
// The second parameter is undefined. Use anonymous credential.
|
||||
url = urlOrConnectionString;
|
||||
if (blobNameOrOptions && typeof blobNameOrOptions !== "string") {
|
||||
options = blobNameOrOptions;
|
||||
}
|
||||
pipeline = newPipeline(new AnonymousCredential(), options);
|
||||
}
|
||||
else if (credentialOrPipelineOrContainerName &&
|
||||
|
|
16
dist/setup/index.js
vendored
16
dist/setup/index.js
vendored
|
@ -30691,7 +30691,7 @@ const timeoutInSeconds = {
|
|||
const version = {
|
||||
parameterPath: "version",
|
||||
mapper: {
|
||||
defaultValue: "2021-12-02",
|
||||
defaultValue: "2022-11-02",
|
||||
isConstant: true,
|
||||
serializedName: "x-ms-version",
|
||||
type: {
|
||||
|
@ -35522,8 +35522,8 @@ const logger = logger$1.createClientLogger("storage-blob");
|
|||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
const SDK_VERSION = "12.13.0";
|
||||
const SERVICE_VERSION = "2021-12-02";
|
||||
const SDK_VERSION = "12.14.0";
|
||||
const SERVICE_VERSION = "2022-11-02";
|
||||
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_BLOCKS = 50000;
|
||||
|
@ -37381,7 +37381,7 @@ class StorageSharedKeyCredential extends Credential {
|
|||
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
||||
*/
|
||||
const packageName = "azure-storage-blob";
|
||||
const packageVersion = "12.13.0";
|
||||
const packageVersion = "12.14.0";
|
||||
class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
||||
/**
|
||||
* Initializes a new instance of the StorageClientContext class.
|
||||
|
@ -37407,7 +37407,7 @@ class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
|||
// Parameter assignments
|
||||
this.url = url;
|
||||
// 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)
|
||||
// The second parameter is undefined. Use anonymous credential.
|
||||
url = urlOrConnectionString;
|
||||
if (blobNameOrOptions && typeof blobNameOrOptions !== "string") {
|
||||
options = blobNameOrOptions;
|
||||
}
|
||||
pipeline = newPipeline(new AnonymousCredential(), options);
|
||||
}
|
||||
else if (credentialOrPipelineOrContainerName &&
|
||||
|
@ -42736,6 +42739,9 @@ class BlockBlobClient extends BlobClient {
|
|||
// (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions)
|
||||
// The second parameter is undefined. Use anonymous credential.
|
||||
url = urlOrConnectionString;
|
||||
if (blobNameOrOptions && typeof blobNameOrOptions !== "string") {
|
||||
options = blobNameOrOptions;
|
||||
}
|
||||
pipeline = newPipeline(new AnonymousCredential(), options);
|
||||
}
|
||||
else if (credentialOrPipelineOrContainerName &&
|
||||
|
|
12
package-lock.json
generated
12
package-lock.json
generated
|
@ -368,9 +368,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/@azure/storage-blob": {
|
||||
"version": "12.13.0",
|
||||
"resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.13.0.tgz",
|
||||
"integrity": "sha512-t3Q2lvBMJucgTjQcP5+hvEJMAsJSk0qmAnjDLie2td017IiduZbbC9BOcFfmwzR6y6cJdZOuewLCNFmEx9IrXA==",
|
||||
"version": "12.14.0",
|
||||
"resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.14.0.tgz",
|
||||
"integrity": "sha512-g8GNUDpMisGXzBeD+sKphhH5yLwesB4JkHr1U6be/X3F+cAMcyGLPD1P89g2M7wbEtUJWoikry1rlr83nNRBzg==",
|
||||
"dependencies": {
|
||||
"@azure/abort-controller": "^1.0.0",
|
||||
"@azure/core-http": "^3.0.0",
|
||||
|
@ -6106,9 +6106,9 @@
|
|||
}
|
||||
},
|
||||
"@azure/storage-blob": {
|
||||
"version": "12.13.0",
|
||||
"resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.13.0.tgz",
|
||||
"integrity": "sha512-t3Q2lvBMJucgTjQcP5+hvEJMAsJSk0qmAnjDLie2td017IiduZbbC9BOcFfmwzR6y6cJdZOuewLCNFmEx9IrXA==",
|
||||
"version": "12.14.0",
|
||||
"resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.14.0.tgz",
|
||||
"integrity": "sha512-g8GNUDpMisGXzBeD+sKphhH5yLwesB4JkHr1U6be/X3F+cAMcyGLPD1P89g2M7wbEtUJWoikry1rlr83nNRBzg==",
|
||||
"requires": {
|
||||
"@azure/abort-controller": "^1.0.0",
|
||||
"@azure/core-http": "^3.0.0",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue