Modified version, Added changelog/breaking changes for beta.3 (#759)
This commit is contained in:
parent
f3b324d4f5
commit
9633fbc6be
@ -1 +1 @@
|
||||
1.0.0-beta.2
|
||||
1.0.0-beta.3
|
||||
@ -1 +1 @@
|
||||
1.0.0-beta.2
|
||||
1.0.0-beta.3
|
||||
@ -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`.
|
||||
@ -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
|
||||
|
||||
@ -1 +1 @@
|
||||
1.0.0-beta.2
|
||||
1.0.0-beta.3
|
||||
@ -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.
|
||||
@ -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.
|
||||
|
||||
@ -1 +1 @@
|
||||
1.0.0-beta.2
|
||||
1.0.0-beta.3
|
||||
Loading…
Reference in New Issue
Block a user