@azure/storage-blob 12.26.0-alpha.20250218.1 → 12.26.0-alpha.20250226.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/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
@@ -240,7 +240,7 @@ const { BlobServiceClient } = require("@azure/storage-blob");
|
|
240
240
|
const account = "<account name>";
|
241
241
|
const sas = "<service Shared Access Signature Token>";
|
242
242
|
|
243
|
-
const blobServiceClient = new BlobServiceClient(`https://${account}.blob.core.windows.net
|
243
|
+
const blobServiceClient = new BlobServiceClient(`https://${account}.blob.core.windows.net?${sas}`);
|
244
244
|
```
|
245
245
|
|
246
246
|
### Create a new container
|
@@ -476,7 +476,7 @@ const sas = "<service Shared Access Signature Token>";
|
|
476
476
|
const containerName = "<container name>";
|
477
477
|
const blobName = "<blob name>";
|
478
478
|
|
479
|
-
const blobServiceClient = new BlobServiceClient(`https://${account}.blob.core.windows.net
|
479
|
+
const blobServiceClient = new BlobServiceClient(`https://${account}.blob.core.windows.net?${sas}`);
|
480
480
|
|
481
481
|
async function main() {
|
482
482
|
const containerClient = blobServiceClient.getContainerClient(containerName);
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@azure/storage-blob",
|
3
3
|
"sdk-type": "client",
|
4
|
-
"version": "12.26.0-alpha.
|
4
|
+
"version": "12.26.0-alpha.20250226.1",
|
5
5
|
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
|
6
6
|
"main": "./dist/index.js",
|
7
7
|
"module": "./dist-esm/storage-blob/src/index.js",
|
@@ -162,7 +162,7 @@
|
|
162
162
|
"karma-junit-reporter": "^2.0.1",
|
163
163
|
"karma-mocha": "^2.0.1",
|
164
164
|
"karma-mocha-reporter": "^2.2.5",
|
165
|
-
"karma-sourcemap-loader": "^0.
|
165
|
+
"karma-sourcemap-loader": "^0.4.0",
|
166
166
|
"mocha": "^11.0.2",
|
167
167
|
"nyc": "^17.0.0",
|
168
168
|
"puppeteer": "^24.0.0",
|