Modified version, Added changelog/breaking changes for beta.3 (#759)

This commit is contained in:
Kan Tang 2020-10-12 21:30:31 -07:00 committed by GitHub
parent f3b324d4f5
commit 9633fbc6be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 42 additions and 4 deletions

View File

@ -1 +1 @@
1.0.0-beta.2
1.0.0-beta.3

View File

@ -1 +1 @@
1.0.0-beta.2
1.0.0-beta.3

View File

@ -0,0 +1,6 @@
# Release History
## 1.0.0-beta.3 (2020-10-13)
* CreateFromConnectionString now accepts unencoded file, path and directory name.
* `ETag` and `LastModified` is now `std::string` instead of `Azure::Core::Nullable<std::string>` in `CreateDirectoryResult`, `CreateFileResult` and `CreatePathResult`.

View File

@ -1,5 +1,15 @@
# Release History
## 1.0.0-beta.3 (2020-10-13)
* Service version is now 2020-02-10.
* Added support for SAS generation in DataLake service.
* CreateFromConnectionString now accepts unencoded file, path and directory name.
* Added support for `FileClient::ScheduleDeletion`.
* Added support for `DirectoryClient::SetAccessControlRecursive`.
* `ETag` and `LastModified` is now `std::string` instead of `Azure::Core::Nullable<std::string>` in `CreateDirectoryResult`, `CreateFileResult` and `CreatePathResult`.
* `PathAppendDataResult` now returns `ContentMD5`, `ContentCrc64` and `IsServerEncrypted`.
## 1.0.0-beta.2 (2020-09-09)
* Release based on azure-core_1.0.0-beta.1

View File

@ -1 +1 @@
1.0.0-beta.2
1.0.0-beta.3

View File

@ -0,0 +1,8 @@
# Release History
## 1.0.0-beta.3 (2020-10-13)
* CreateFromConnectionString now accepts unencoded file and directory name.
* Added support for getting range list with previous snapshot. `GetFileRangeListResult` now returns `std::vector<FileRange> Ranges` and `std::vector<FileRange> ClearRanges` instead of `std::vector<Range> RangeList`.
* Added support for SMB Multi-Channel setting for `ServiceClient::GetProperties` and `ServiceClient::SetProperties`. This is only available for Storage account with Premium File access.
- Standard account user has to remove the returned SMB Multi-Channel setting before set, otherwise service would return failure.

View File

@ -1,5 +1,19 @@
# Release History
## 1.0.0-beta.3 (2020-10-13)
* Service version is now 2020-02-10.
* CreateFromConnectionString now accepts unencoded file and directory name.
* Added support for getting range list with previous snapshot. `GetFileRangeListResult` now returns `std::vector<FileRange> Ranges` and `std::vector<FileRange> ClearRanges` instead of `std::vector<Range> RangeList`.
* Added support for SMB Multi-Channel setting for `ServiceClient::GetProperties` and `ServiceClient::SetProperties`. This is only available for Storage account with Premium File access.
- Standard account user has to remove the returned SMB Multi-Channel setting before set, otherwise service would return failure.
* Added support for leasing a share:
- ShareClient::AcquireLease
- ShareClient::ReleaseLease
- ShareClient::ChangeLease
- ShareClient::BreakLease
- ShareClient::RenewLease
## 1.0.0-beta.2 (2020-09-09)
* Added File SAS generation support.

View File

@ -1 +1 @@
1.0.0-beta.2
1.0.0-beta.3