Skip to content

Commit

Permalink
[DataLake]Update ChangeLog (#11133)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiafu-msft authored Apr 29, 2020
1 parent 8de4f3c commit 3b87219
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
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

0 comments on commit 3b87219

Please sign in to comment.