-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
[Storage] Some final touches #7156
Changes from 5 commits
316a50a
b8e47dc
6263c4c
22004fa
2e57869
e56898d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
# Change Log azure-storage-file | ||
|
||
|
||
## Version 12.0.0b3: | ||
|
||
**New features** | ||
- Added FileSmbProperties REST Parity. | ||
- Added support for PutRangeThroughURL. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. two statements above could be removed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
**Dependency updates** | ||
- Adopted [azure-core](https://pypi.org/project/azure-core/) 1.0.0b3 | ||
- If you later want to revert to previous versions of azure-storage-file, or another Azure SDK | ||
library requiring azure-core 1.0.0b1 or azure-core 1.0.0b2, you must explicitly install | ||
the specific version of azure-core as well. For example: | ||
|
||
`pip install azure-core==1.0.0b2 azure-storage-file==12.0.0b2` | ||
|
||
**Fixes and improvements** | ||
- Fix where content-type was being added in the request when not mentioned explicitly. | ||
|
||
|
||
## Version 12.0.0b2: | ||
|
||
**Breaking changes** | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -609,10 +609,7 @@ class SharePermission(Model): | |
} | ||
|
||
_attribute_map = { | ||
'permission': {'key': 'permission', 'type': 'str', 'xml': {'name': 'permission'}}, | ||
} | ||
|
||
_xml_map = { | ||
'permission': {'key': 'permission', 'type': 'str'}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we should avoid manual edits to the generated files, right? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @zezha-msft - you're correct - this is a temporary workaround for the json/xml feature. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems we can avoid it once all libraries which depend on msrest upgraded on the next release There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's correct. This will be reverted as soon as msrest is updated. |
||
} | ||
|
||
def __init__(self, **kwargs): | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remember to remove synchronously 😀
Added support for append block from URL for append blobs.
Added support for upload pages from URL for page blobs.
Added support for client provided encryption key to numerous APIs.