Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@azure/storage-blob

Package Overview
Dependencies
Maintainers
5
Versions
420
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure/storage-blob - npm Package Compare versions

Comparing version 12.26.0-beta.1 to 12.26.0

2

dist-esm/storage-blob/src/BlobBatchClient.js

@@ -9,3 +9,3 @@ // Copyright (c) Microsoft Corporation.

import { StorageContextClient } from "./StorageContextClient";
import { newPipeline, isPipelineLike, getCoreClientOptions, } from "./Pipeline";
import { newPipeline, isPipelineLike, getCoreClientOptions } from "./Pipeline";
import { assertResponse, getURLPath } from "./utils/utils.common";

@@ -12,0 +12,0 @@ /**

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { isNode } from "@azure/core-util";
import { RetriableReadableStream, } from "./utils/RetriableReadableStream";
import { RetriableReadableStream } from "./utils/RetriableReadableStream";
/**

@@ -6,0 +6,0 @@ * ONLY AVAILABLE IN NODE.JS RUNTIME.

import { __asyncDelegator, __asyncGenerator, __asyncValues, __await } from "tslib";
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { isTokenCredential } from "@azure/core-auth";

@@ -8,3 +6,3 @@ import { getDefaultProxySettings } from "@azure/core-rest-pipeline";

import { newPipeline, isPipelineLike } from "./Pipeline";
import { ContainerClient, } from "./ContainerClient";
import { ContainerClient } from "./ContainerClient";
import { appendToURLPath, appendToURLQuery, extractConnectionStringParts, toTags, } from "./utils/utils.common";

@@ -11,0 +9,0 @@ import { StorageSharedKeyCredential } from "./credentials/StorageSharedKeyCredential";

import { __asyncDelegator, __asyncGenerator, __asyncValues, __await } from "tslib";
import { getDefaultProxySettings, } from "@azure/core-rest-pipeline";
import { getDefaultProxySettings } from "@azure/core-rest-pipeline";
import { isNode } from "@azure/core-util";

@@ -13,3 +13,3 @@ import { isTokenCredential } from "@azure/core-auth";

import { BlobLeaseClient } from "./BlobLeaseClient";
import { AppendBlobClient, BlobClient, BlockBlobClient, PageBlobClient, } from "./Clients";
import { AppendBlobClient, BlobClient, BlockBlobClient, PageBlobClient } from "./Clients";
import { BlobBatchClient } from "./BlobBatchClient";

@@ -1196,3 +1196,2 @@ /**

*/
/* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/
generateUserDelegationSasStringToSign(options, userDelegationKey) {

@@ -1199,0 +1198,0 @@ return generateBlobSASQueryParametersInternal(Object.assign({ containerName: this._containerName }, options), userDelegationKey, this.accountName).stringToSign;

@@ -29,3 +29,3 @@ /*

};
const packageDetails = `azsdk-js-azure-storage-blob/12.26.0-beta.1`;
const packageDetails = `azsdk-js-azure-storage-blob/12.26.0`;
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix

@@ -32,0 +32,0 @@ ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { AbortError } from "@azure/abort-controller";
import { isRestError, RestError, } from "@azure/core-rest-pipeline";
import { isRestError, RestError } from "@azure/core-rest-pipeline";
import { getErrorMessage } from "@azure/core-util";

@@ -6,0 +6,0 @@ import { URLConstants } from "../utils/constants";

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
export const SDK_VERSION = "12.26.0-beta.1";
export const SDK_VERSION = "12.26.0";
export const SERVICE_VERSION = "2025-01-05";

@@ -5,0 +5,0 @@ export const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB

@@ -196,3 +196,3 @@ // Copyright (c) Microsoft Corporation.

catch (_a) {
// eslint-disable-line no-empty
// no-op
}

@@ -199,0 +199,0 @@ switch (type) {

@@ -6,3 +6,2 @@ // Copyright (c) Microsoft Corporation.

return true;
// eslint-disable-next-line eqeqeq
if (a == null || b == null)

@@ -9,0 +8,0 @@ return false;

{
"name": "@azure/storage-blob",
"sdk-type": "client",
"version": "12.26.0-beta.1",
"version": "12.26.0",
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",

@@ -33,3 +33,2 @@ "main": "./dist/index.js",

"scripts": {
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
"build": "npm run clean && tsc -p . && dev-tool run bundle && dev-tool run extract-api",

@@ -41,5 +40,5 @@ "build:browser": "tsc -p . && dev-tool run bundle",

"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
"clean": "rimraf --glob dist dist-* types temp statistics.html coverage coverage-browser .nyc_output *.tgz *.log test*.xml TEST*.xml",
"clean:samples": "rimraf samples/v12/javascript/node_modules samples/v12/typescript/node_modules samples/v12/typescript/dist samples/v12/typescript/package-lock.json samples/v12/javascript/package-lock.json",
"emulator-tests": "cross-env STORAGE_CONNECTION_STRING=UseDevelopmentStorage=true && npm run test:node",
"clean": "dev-tool run vendored rimraf --glob dist dist-* types temp statistics.html coverage coverage-browser .nyc_output *.tgz *.log test*.xml TEST*.xml",
"clean:samples": "dev-tool run vendored rimraf samples/v12/javascript/node_modules samples/v12/typescript/node_modules samples/v12/typescript/dist samples/v12/typescript/package-lock.json samples/v12/javascript/package-lock.json",
"emulator-tests": "dev-tool run vendored cross-env STORAGE_CONNECTION_STRING=UseDevelopmentStorage=true && npm run test:node",
"execute:samples": "dev-tool samples run samples-dev",

@@ -152,3 +151,2 @@ "extract-api": "tsc -p . && dev-tool run extract-api",

"@azure/identity": "^4.0.1",
"@microsoft/api-extractor": "^7.31.1",
"@types/chai": "^4.1.6",

@@ -158,3 +156,2 @@ "@types/mocha": "^10.0.0",

"chai": "^4.2.0",
"cross-env": "^7.0.2",
"dotenv": "^16.0.0",

@@ -176,3 +173,2 @@ "es6-promise": "^4.2.5",

"puppeteer": "^23.0.2",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.9",

@@ -179,0 +175,0 @@ "ts-node": "^10.0.0",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc