Skip to content

Commit f8d05a1

Browse files
committed
Version 1.1.0 and recordings
1 parent 653621c commit f8d05a1

File tree

564 files changed

+30994
-34219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

564 files changed

+30994
-34219
lines changed

ChangeLog.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
44
55
**Note: This changelog is deprecated starting with version 0.37.0, please refer to the ChangeLog.md in each package for future change logs.**
6-
## Version XX.XX.XX:
7-
- Added support for unbounded and infinite queue message TTL
86

97
## Version 0.37.0:
108

azure-storage-blob/ChangeLog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22

33
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
44
5-
## Version XX.XX.XX:
5+
## Version 1.1.0:
6+
7+
- Support for 2017-07-29 REST version. Please see our REST API documentation and blogs for information about the related added features.
68
- Added support for soft delete feature. If a delete retention policy is enabled through the set service properties API, then blobs or snapshots could be deleted softly and retained for a specified number of days, before being permanently removed by garbage collection.
9+
- Error message now contains the ErrorCode from the x-ms-error-code header value.
710

811
## Version 1.0.0:
912

azure-storage-blob/azure/storage/blob/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# --------------------------------------------------------------------------
66

77
__author__ = 'Microsoft Corp. <[email protected]>'
8-
__version__ = '1.0.0'
8+
__version__ = '1.1.0'
99

1010
# x-ms-version for storage service.
1111
X_MS_VERSION = '2017-07-29'

azure-storage-blob/azure/storage/blob/appendblobservice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def create_blob(self, container_name, blob_name, content_settings=None,
120120
if_modified_since=None, if_unmodified_since=None,
121121
if_match=None, if_none_match=None, timeout=None):
122122
'''
123-
Creates a blob or overrides an existing blob. Use if_match=* to
123+
Creates a blob or overrides an existing blob. Use if_none_match=* to
124124
prevent overriding an existing blob.
125125
126126
See create_blob_from_* for high level

azure-storage-blob/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
setup(
5353
name='azure-storage-blob',
54-
version='1.0.0',
54+
version='1.1.0',
5555
description='Microsoft Azure Storage Blob Client Library for Python',
5656
long_description=open('README.rst', 'r').read(),
5757
license='MIT License',
@@ -74,7 +74,7 @@
7474
packages=find_packages(),
7575
install_requires=[
7676
'azure-common>=1.1.5',
77-
'azure-storage-common>=1.0.0,<1.1.0'
77+
'azure-storage-common>=1.1.0,<1.2.0'
7878
],
7979
extras_require={
8080
":python_version<'3.0'": ['futures'],

azure-storage-common/BreakingChanges.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
> See the [Change Log](ChangeLog.md) for a summary of storage library changes.
44
5-
## Version XX.XX.XX:
6-
- Error message now contains the ErrorCode from the x-ms-error-code header value
5+
## Version 1.1.0:
6+
7+
- Error message now contains the ErrorCode from the x-ms-error-code header value.
78

89
## Version 1.0.0:
910

azure-storage-common/ChangeLog.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# Change Log azure-storage-common
22

33
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
4-
## Version XX.XX.XX:
5-
- Error message now contains the ErrorCode from the x-ms-error-code header value
4+
5+
## Version 1.1.0:
6+
7+
- Support for 2017-07-29 REST version. Please see our REST API documentation and blogs for information about the related added features.
8+
- Error message now contains the ErrorCode from the x-ms-error-code header value.
69

710
## Version 1.0.0:
811

azure-storage-common/azure/storage/common/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import platform
77

88
__author__ = 'Microsoft Corp. <[email protected]>'
9-
__version__ = '1.0.0'
9+
__version__ = '1.1.0'
1010

1111
# UserAgent string sample: 'Azure-Storage/0.37.0-0.38.0 (Python CPython 3.4.2; Windows 8)'
1212
# First version(0.37.0) is the common package, and the second version(0.38.0) is the service package

azure-storage-common/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
setup(
5353
name='azure-storage-common',
54-
version='1.0.0',
54+
version='1.1.0',
5555
description='Microsoft Azure Storage Common Client Library for Python',
5656
long_description=open('README.rst', 'r').read(),
5757
license='MIT License',

azure-storage-file/ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
44
5+
## Version 1.1.0:
6+
7+
- Support for 2017-07-29 REST version. Please see our REST API documentation and blogs for information about the related added features.
8+
- Error message now contains the ErrorCode from the x-ms-error-code header value.
9+
510
## Version 1.0.0:
611

712
- The package has switched from Apache 2.0 to the MIT license.

0 commit comments

Comments
 (0)