Skip to content

Commit

Permalink
[Storage] Incremented version for preview 3 and updated change log (#…
Browse files Browse the repository at this point in the history
…7156)

* Update Azure Core and msrest

* Add Workaround for SharePermissions,revert msrest

* Update version and history.md

* updates on history.md

* minor change

* more changes
  • Loading branch information
rakshith91 authored and zezha-msft committed Sep 10, 2019
1 parent c60235a commit 2706b0f
Show file tree
Hide file tree
Showing 12 changed files with 65 additions and 14 deletions.
21 changes: 21 additions & 0 deletions sdk/storage/azure-storage-blob/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# Change Log azure-storage-blob


## Version 12.0.0b3:

**New features**
- Added SAS support for snapshot and identity.
- Distributed tracing framework OpenCensus is now supported.
- Added support for append block from URL for append blobs.
- Added support for update page from URL for page blobs.
- Added support for client provided encryption key to numerous APIs.

**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-blob, 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-blob==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**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "12.0.0b2"
VERSION = "12.0.0b3"
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
'tests.common'
]),
install_requires=[
"azure-core<2.0.0,>=1.0.0b2",
"azure-core<2.0.0,>=1.0.0b3",
"msrest>=0.5.0",
"cryptography>=2.1.4"
],
Expand Down
22 changes: 22 additions & 0 deletions sdk/storage/azure-storage-file/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
# Change Log azure-storage-file


## Version 12.0.0b3:

**New features**
- Added FileSmbProperties REST Parity.
- Added support for PutRangeThroughURL.
- Added upload_range_from_url API to write the bytes from one Azure File endpoint into the specified range of another Azure File endpoint.
- Added set_http_headers for directory_client, create_permission_for_share and get_permission_for_share APIs.
- Added optional parameters for smb properties related parameters for create_file*, create_directory* related APIs and set_http_headers API.
- Updated get_properties for directory and file so that the response has SMB properties.

**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**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -609,10 +609,7 @@ class SharePermission(Model):
}

_attribute_map = {
'permission': {'key': 'permission', 'type': 'str', 'xml': {'name': 'permission'}},
}

_xml_map = {
'permission': {'key': 'permission', 'type': 'str'},
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -609,10 +609,7 @@ class SharePermission(Model):
}

_attribute_map = {
'permission': {'key': 'permission', 'type': 'str', 'xml': {'name': 'permission'}},
}

_xml_map = {
'permission': {'key': 'permission', 'type': 'str'},
}

def __init__(self, *, permission: str, **kwargs) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = '12.0.0b2'
VERSION = '12.0.0b3'
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
'tests.common'
]),
install_requires=[
"azure-core<2.0.0,>=1.0.0b2",
"azure-core<2.0.0,>=1.0.0b3",
"msrest>=0.5.0",
"cryptography>=2.1.4"
],
Expand Down
11 changes: 11 additions & 0 deletions sdk/storage/azure-storage-queue/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Change Log azure-storage-queue


## Version 12.0.0b3:

**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-queue, 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-queue==12.0.0b2`


## Version 12.0.0b2:

**Breaking changes**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "12.0.0b2"
VERSION = "12.0.0b3"
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-queue/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
'tests.common'
]),
install_requires=[
"azure-core<2.0.0,>=1.0.0b2",
"azure-core<2.0.0,>=1.0.0b3",
"msrest>=0.5.0",
"cryptography>=2.1.4"
],
Expand Down
3 changes: 3 additions & 0 deletions shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,6 @@ aiohttp>=3.0
aiodns>=2.0
python-dateutil>=2.8.0
six>=1.6
#override azure-storage-blob azure-core<2.0.0,>=1.0.0b3
#override azure-storage-queue azure-core<2.0.0,>=1.0.0b3
#override azure-storage-file azure-core<2.0.0,>=1.0.0b3

0 comments on commit 2706b0f

Please sign in to comment.