You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ChangeLog.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,17 @@
1
1
Note: This is an Azure Storage only package. The all up Azure node sdk still has the old storage bits in there. In a future release, those storage bits will be removed and an npm dependency to this storage node sdk will
2
2
be taken. This is a GA release and the changes described below indicate the changes from the Azure node SDK 0.9.8 available here - https://github.com/Azure/azure-sdk-for-node.
3
3
4
+
2018.06 Version 2.10.0
5
+
6
+
ALL
7
+
* Updated storage service version to 2018-03-28.
8
+
9
+
BLOB
10
+
* Fixed a bug that `DeleteRetentionPolicy.Days` should be `number` instead of `string` when calling `getServiceProperties`.
11
+
* Added a method `getAccountProperties` to `blobService`.
12
+
* Added a method `createBlockFromURL` to `blobService`.
13
+
* Added support for static website service properties (in preview).
14
+
4
15
2018.05 Version 2.9.0-preview
5
16
6
17
ALL
@@ -11,7 +22,7 @@ ALL
11
22
BLOB
12
23
* Added `createBlobServiceWithTokenCredential()` to create `BlobService` object with bearer tokens such as OAuth access token (in preview).
13
24
* Added support for '$web' as a valid blob container name for static website.
14
-
* Added support for write-once read-many containers.
25
+
* Added support for write-once read-many containers (in preview).
15
26
* The `Get Container Properties` and `List Containers` APIs now return two new properties indicating whether the container has an immutability policy or a legal hold.
16
27
* The `Get Blob Properties` and `List Blobs` APIs now return the creation time of the blob as a property.
Copy file name to clipboardExpand all lines: browser/ChangeLog.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,17 @@
1
1
Note: This is the change log file for Azure Storage JavaScript Client Library.
2
2
3
+
2018.06 Version 2.10.100
4
+
5
+
ALL
6
+
* Generated browser compatible JavaScript files based on Microsoft Azure Storage SDK for Node.js 2.10.0.
7
+
* Updated storage service version to 2018-03-28.
8
+
9
+
BLOB
10
+
* Fixed a bug that `DeleteRetentionPolicy.Days` should be `number` instead of `string` when calling `getServiceProperties`.
11
+
* Added a method `getAccountProperties` to `blobService`.
12
+
* Added a method `createBlockFromURL` to `blobService`.
13
+
* Added support for static website service properties (in preview).
14
+
3
15
2018.05 Version 2.9.100-preview
4
16
5
17
ALL
@@ -11,14 +23,14 @@ ALL
11
23
BLOB
12
24
* Added `createBlobServiceWithTokenCredential()` to create `BlobService` object with bearer tokens such as OAuth access token (in preview).
13
25
* Added support for '$web' as a valid blob container name for static website.
14
-
* Added support for write-once read-many containers.
26
+
* Added support for write-once read-many containers (in preview).
15
27
* The `Get Container Properties` and `List Containers` APIs now return two new properties indicating whether the container has an immutability policy or a legal hold.
16
28
* The `Get Blob Properties` and `List Blobs` APIs now return the creation time of the blob as a property.
17
29
18
30
QUEUE
19
31
* Added `createQueueServiceWithTokenCredential()` to create `QueueService` object with bearer tokens such as OAuth access token (in preview).
20
32
21
-
2018.04 Version 2.8.100+2.8.2
33
+
2018.04 Version 2.8.100
22
34
23
35
* Fixed a bug that retry policy will not retry for XHR error in browsers.
24
36
* Updated README.md under browser folder to make it more clear about the zip file downloading link.
* @property {CorsRule[]} Cors.CorsRules Groups settings for a `[CORS rule]{@link CorsRule}`.
315
315
*/
316
316
317
+
/**
318
+
* The properties of a storage account.
319
+
* @typedef {object} AccountProperties
320
+
* @property {string} SkuName The header that specifies storage SKU, also known as account type.
321
+
* @property {string} AccountKind The header that describes the flavour of the storage account, also known as account kind.
322
+
*/
323
+
324
+
/**
325
+
* The properties of a blob storage service, including properties of Storage Analytics, CORS (Cross-Origin Resource Sharing) rules and Static Webiste configurations.
326
+
* @typedef {object} BlobServiceProperties
327
+
* @property {string} DefaultServiceVersion The default version of Storage Analytics currently in use.
328
+
* @property {LoggingProperties} Logging The Logging settings.
329
+
* @property {MetricsProperties} HourMetrics The HourMetrics settings provide a summary of request statistics grouped by API in hourly aggregates.
330
+
* @property {MetricsProperties} MinuteMetrics The HourMetrics settings provide request statistics grouped by API for each minute.
331
+
* @property {StaticWebsiteProperties} StaticWebsite The Azure Static Website settings.
332
+
* @property {object} Cors Groups all CORS rules.
333
+
* @property {CorsRule[]} Cors.CorsRules Groups settings for a `[CORS rule]{@link CorsRule}`.
334
+
*/
335
+
336
+
/**
337
+
* The Azure Static Website settings.
338
+
* @typedef {object} StaticWebsiteProperties
339
+
* @property {boolean} Enabled Whether feature of Static Website is enabled.
340
+
* @property {string} IndexDocument Indicates index document page path.
0 commit comments