Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DataLake]Update ChangeLog #11133

Merged
merged 1 commit into from
Apr 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sdk/storage/azure-storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Release History

## 12.3.1 (Unreleased)
## 12.3.1 (2020-04-29)

**Fixes**
- Fixed issue where batch requests could not be combined with token credentials (#9534)
- Skip '/' in url encoding.


## 12.3.0 (2020-03-10)
Expand Down
9 changes: 9 additions & 0 deletions sdk/storage/azure-storage-blob/azure/storage/blob/_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,15 @@ class BlobProperties(DictMixin):
Indicates when the blob was created, in UTC.
:ivar str archive_status:
Archive status of blob.
:ivar str encryption_key_sha256:
The SHA-256 hash of the provided encryption key.
:ivar str encryption_scope:
A predefined encryption scope used to encrypt the data on the service. An encryption
scope can be created using the Management API and referenced here by name. If a default
encryption scope has been defined at the container, this value will override it if the
container-level scope is configured to allow overrides. Otherwise an error will be raised.
:ivar bool request_server_encrypted:
Whether this blob is encrypted.
"""

def __init__(self, **kwargs):
Expand Down
6 changes: 4 additions & 2 deletions sdk/storage/azure-storage-file-datalake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Release History

## 12.0.1 (Unreleased)

## 12.0.1 (2020-04-29)
**Fixes**
- Fixed rename_directory and rename_file doc
- upload_data didn't support setting umask and permissions.

## 12.0.0 (2020-03-10)
**New Feature**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
FileSystemProperties,
FileSystemPropertiesPaged,
DirectoryProperties,
FileProperties,
PathProperties,
PathPropertiesPaged,
LeaseProperties,
Expand Down Expand Up @@ -54,6 +55,7 @@
'FileSystemProperties',
'FileSystemPropertiesPaged',
'DirectoryProperties',
'FileProperties',
'PathProperties',
'PathPropertiesPaged',
'LeaseProperties',
Expand Down