Skip to content

Commit d63b161

Browse files
authored
Changelog for beta.6 release for file/datalake (#1371)
# Pull Request Checklist Please leverage this checklist as a reminder to address commonly occurring feedback when submitting a pull request to make sure your PR can be reviewed quickly: See the detailed list in the [contributing guide](https://github.com/Azure/azure-sdk-for-cpp/blob/master/CONTRIBUTING.md#pull-requests). - [x] [C++ Guidelines](https://azure.github.io/azure-sdk/cpp_introduction.html) - [x] Doxygen docs - [x] Unit tests - [x] No unwanted commits/changes - [x] Descriptive title/description - [x] PR is single purpose - [x] Related issue listed - [x] Comments in source - [x] No typos - [x] Update changelog - [x] Not work-in-progress - [x] External references or docs updated - [x] Self review of PR done - [x] Any breaking changes?
1 parent 63b6474 commit d63b161

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

sdk/storage/azure-storage-files-datalake/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Release History
22

3-
## 12.0.0-beta.6 (Unreleased)
3+
## 12.0.0-beta.6 (2020-01-14)
44

55
### New Features
66

77
- Support setting DataLake SAS permission with a raw string.
8+
- Added support for `CreateIfNotExists` and `DeleteIfExists` for FileSystem, Path, Directory and File clients.
89

910
### Breaking Changes
1011

@@ -24,6 +25,10 @@
2425
- `ReadFileOptions` now have `Azure::Core::Http::Range Range` instead of `Content-Length` and `Offset`.
2526
- Replace scoped enums that don't support bitwise operations with extensible enum.
2627
- `ListPaths` is renamed to `ListPathsSinglePage` and its related return type and options are also renamed accordingly.
28+
- `FileSystemClient` is renamed to `DataLakeFileSystemClient`, `PathClient` is renamed to `DataLakePathClient`, `DirectoryClient` is renamed to `DataLakeDirectoryClient` and `FileClient` is renamed to `DataLakeFileClient`.
29+
- FileSystems, Path, Directory and File related result types and options types now have a `DataLake` prefix. E.g. `GetFileSystemPropertiesResult` is changed to `GetDataLakeFileSystemPropertiesResult`.
30+
- Renamed `GetSubDirectoryClient` to `GetSubdirectoryClient`.
31+
- Removed `NamespaceEnabled` field in `CreateDataLakeFileSystemResult`.
2732

2833
## 12.0.0-beta.5 (2020-11-13)
2934

sdk/storage/azure-storage-files-shares/CHANGELOG.md

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

3-
## 12.0.0-beta.6 (Unreleased)
3+
## 12.0.0-beta.6 (2020-01-14)
4+
5+
### New Features
6+
7+
- Added support for `CreateIfNotExists` for Share and Directory clients, and `DeleteIfExists` for Share, Directory and File clients.
8+
- Support setting file SAS permission with a raw string.
49

510
### Breaking Changes
611

@@ -22,11 +27,9 @@
2227
- Replace scoped enums that don't support bitwise operations with extensible enum.
2328
- `IsServerEncrypted` member in `DownloadFileToResult`, `UploadFileFromResult`, `FileDownloadResult` and `FileGetPropertiesResult` are no longer nullable.
2429
- Create APIs for Directory and File now returns `FileShareSmbProperties` that aggregates SMB related properties.
25-
26-
### New Features
27-
28-
- Added support for `CreateIfNotExists` for Share and Directory clients, and `DeleteIfExists` for Share, Directory and File clients.
29-
- Support setting file SAS permission with a raw string.
30+
- `DirectoryClient` is renamed to `ShareDirectoryClient`, `FileClient` is renamed to `ShareFileClient`.
31+
- Directory and File related result types and options types now have a `Share` prefix. E.g. `SetDirectoryPropertiesResult` is changed to `SetShareDirectoryPropertiesResult`.
32+
- Renamed `GetSubDirectoryClient` to `GetSubdirectoryClient`.
3033

3134
## 12.0.0-beta.5 (2020-11-13)
3235

0 commit comments

Comments
 (0)