Skip to content

Commit c32f9b0

Browse files
authored
changelog for storage common and blob (#974)
1 parent 3cbe607 commit c32f9b0

File tree

2 files changed

+56
-28
lines changed

2 files changed

+56
-28
lines changed

sdk/storage/azure-storage-blobs/CHANGELOG.md

Lines changed: 34 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,53 @@
11
# Release History
22

3-
## 1.0.0-beta.5 (Unreleased)
3+
## 12.0.0-beta.5 (2020-11-13)
44

5-
### Breaking Changes
5+
### New Features
66

7-
* Move header `azure/storage/blobs/blob.hpp` to `azure/storage/blobs.hpp`
7+
* Support for replaceable HTTP transport layer.
8+
* Add `version.hpp`.
89

9-
## 1.0.0-beta.4 (2020-10-16)
10+
### Breaking Changes
1011

11-
### Bug Fixes
12+
* Move header `azure/storage/blobs/blob.hpp` to `azure/storage/blobs.hpp`.
13+
* Service API return types which are typically suffixed with `Result` are moved to the `Models` sub-namespaces and everything else from the protocol layer is made private by moving to the `Details` namespace.
14+
* Make XML serializer and deserializer private by moving them to the `Details` namespace.
15+
* Remove `BlockBlobClientOptions`, `AppendBlobClientOptions` and `PageBlobClientOptions`, use `BlobClientOptions` instead.
16+
* Rename `BlobSasBuilder::ToSasQueryParameters` to `BlobSasBuilder::GenerateSasToken`.
1217

13-
* Unencoded Container/Blob name is now encoded.
18+
### Other Changes and Improvements
1419

15-
## 1.0.0-beta.3 (2020-10-13)
20+
* Default uploading/downloading concurrency is changed from 1 to 5.
21+
* Remove support for specifying SAS version.
22+
23+
## 1.0.0-beta.4 (2020-10-16)
1624

1725
### New Features
1826

19-
* Bump up API version to 2020-02-10
20-
* Support for Last Accessting Time
21-
* Add TagCount and ExiryTime in the responses of getting propertites and downloading blobs
27+
* Bump up API version to 2020-02-10.
28+
* Support for Last Accessting Time.
29+
* Add TagCount and ExiryTime in the responses of getting propertites and downloading blobs.
2230

2331
### Breaking Changes
2432

25-
* Variable name change: BreakContainerLeaseOptions::breakPeriod -> BreakContainerLeaseOptions::BreakPeriod
26-
* Variable name change: BreakBlobLeaseOptions::breakPeriod -> BreakBlobLeaseOptions::BreakPeriod
27-
* CreateFromConnectionString now accepts unencoded blob name
28-
* TagConditions is changed to nullable
33+
* Variable name change: BreakContainerLeaseOptions::breakPeriod -> BreakContainerLeaseOptions::BreakPeriod.
34+
* Variable name change: BreakBlobLeaseOptions::breakPeriod -> BreakBlobLeaseOptions::BreakPeriod.
35+
* CreateFromConnectionString now accepts unencoded blob name.
36+
* TagConditions is changed to nullable.
2937
* Variable name change: `Marker` is renamed to `ContinuationToken` for `ListContainersSegmentOptions`, `FindBlobsByTagsOptions` and `ListBlobsSegmentOptions`.
30-
* Varaible name change: `Marker` is renamed to `PreviousContinuationToken`, `NextMarker` is renamed to `ContinuationToken` for `FilterBlobsSegmentResult`, `ListContainersSegmentResult`, `ListBlobsByHierarchySegmentResult` and `ListBlobsFlatSegmentResult`.
38+
* Variable name change: `Marker` is renamed to `PreviousContinuationToken`, `NextMarker` is renamed to `ContinuationToken` for `FilterBlobsSegmentResult`, `ListContainersSegmentResult`, `ListBlobsByHierarchySegmentResult` and `ListBlobsFlatSegmentResult`.
39+
40+
### Bug Fixes
41+
42+
* Unencoded Container/Blob name is now encoded.
3143

3244
## 1.0.0-beta.2 (2020-09-09)
3345

3446
### New Features
3547

36-
* Support for Blob Batch
37-
* Support for Blob Index
38-
* Release based on azure-core_1.0.0-beta.1
48+
* Support for Blob Batch.
49+
* Support for Blob Index.
50+
* Release based on azure-core_1.0.0-beta.1.
3951

4052
## 1.0.0-beta.1
4153

@@ -50,10 +62,10 @@
5062
- BlobContainerClient::GetAccessPolicy
5163
- BlobContainerClient::SetAccessPolicy
5264
- AppendBlobClient::Seal
53-
* Support for blob versioning
54-
* Support for blob lease and container lease
55-
* Support for account SAS and blob SAS
56-
* Support for transactional checksum
65+
* Support for blob versioning.
66+
* Support for blob lease and container lease.
67+
* Support for account SAS and blob SAS.
68+
* Support for transactional checksum.
5769

5870

5971
## 1.0.0-preview.1 (Unreleased)
Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,38 @@
11
# Release History
22

3+
## 12.0.0-beta.5 (2020-11-13)
4+
5+
### Breaking Changes
6+
7+
* Rename `LastModifiedTimeAccessConditions` to `ModifiedTimeConditions`.
8+
* Rename `StorageError` to `StorageException`.
9+
* Rename header file `storage_error.hpp` to `storage_exception.hpp`.
10+
* Rename `SharedKeyCredential::SetAccountKey` to `SharedKeyCredential::UpdateAccountKey`.
11+
* Rename `AccountSasBuilder::ToSasQueryParameters` to `AccountSasBuilder::GenerateSasToken`.
12+
* Remove `storage_version.hpp` and add `version.hpp`.
13+
* Make `SharedKeyCredential` a class.
14+
15+
### Other Changes and Improvements
16+
17+
* Remove support for specifying SAS version.
18+
319
## 1.0.0-beta.3 (2020-10-13)
420

521
### New Features
622

7-
* Support for customizable retry policy
23+
* Support for customizable retry policy.
824

925
## 1.0.0-beta.2 (2020-09-09)
1026

1127
### New Features
1228

13-
* Release based on azure-core_1.0.0-beta.1
29+
* Release based on azure-core_1.0.0-beta.1.
1430

1531
## 1.0.0-beta.1
1632

1733
### New Features
1834

19-
* Support for Account SAS
20-
* Support for Base64 Encoding/Decoding
21-
* Support for MD5, CRC64
22-
* Support for Shared Key Credential
35+
* Support for Account SAS.
36+
* Support for Base64 Encoding/Decoding.
37+
* Support for MD5, CRC64.
38+
* Support for Shared Key Credential.

0 commit comments

Comments
 (0)