From 6601794d07ed3b985d6e52fe0493ffc1dd372847 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Thu, 1 Oct 2020 17:13:15 -0700 Subject: [PATCH 1/3] added changelogs --- sdk/storage/azure-storage-blob/CHANGELOG.md | 6 +++++- sdk/storage/azure-storage-blob/setup.py | 2 +- sdk/storage/azure-storage-file-datalake/CHANGELOG.md | 6 ++++-- .../azure/storage/filedatalake/_version.py | 2 +- sdk/storage/azure-storage-file-datalake/setup.py | 2 +- sdk/storage/azure-storage-file-share/CHANGELOG.md | 6 +++++- .../azure/storage/fileshare/_version.py | 2 +- sdk/storage/azure-storage-file-share/setup.py | 2 +- 8 files changed, 19 insertions(+), 9 deletions(-) diff --git a/sdk/storage/azure-storage-blob/CHANGELOG.md b/sdk/storage/azure-storage-blob/CHANGELOG.md index 1d0bd652d4f3..5adeca2c871c 100644 --- a/sdk/storage/azure-storage-blob/CHANGELOG.md +++ b/sdk/storage/azure-storage-blob/CHANGELOG.md @@ -1,6 +1,10 @@ # Release History -## 12.6.0b1 (Unreleased) +## 12.6.0b1 (2020-10-02) +**New features*** +- Added support for Arrow format (`ArrowType`) output serialization using `quick_query()`. +- Added support for undeleting a container. +- Added support for `LastAccessTime` property on a blob, which could be the last time a blob was written or read. ## 12.5.0 (2020-09-10) diff --git a/sdk/storage/azure-storage-blob/setup.py b/sdk/storage/azure-storage-blob/setup.py index 3dc365826ce4..ded5aa613c25 100644 --- a/sdk/storage/azure-storage-blob/setup.py +++ b/sdk/storage/azure-storage-blob/setup.py @@ -71,7 +71,7 @@ author_email='ascl@microsoft.com', url='https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-blob', classifiers=[ - "Development Status :: 5 - Production/Stable", + "Development Status :: 4 - Beta", 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', diff --git a/sdk/storage/azure-storage-file-datalake/CHANGELOG.md b/sdk/storage/azure-storage-file-datalake/CHANGELOG.md index 37ec3658cace..959505240ede 100644 --- a/sdk/storage/azure-storage-file-datalake/CHANGELOG.md +++ b/sdk/storage/azure-storage-file-datalake/CHANGELOG.md @@ -1,6 +1,8 @@ # Release History -## 12.1.3 (Unreleased) - +## 12.2.0b1 (2020-10-02) +**New Features** +- Added support for recursive set/update/remove Access Control on a path and sub-paths. +- Added support for setting an expiry on files where the file gets deleted once it expires. ## 12.1.2 (2020-09-10) **Fixes** diff --git a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_version.py b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_version.py index 1788d7bc87a6..dd22d879d99d 100644 --- a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_version.py +++ b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_version.py @@ -4,4 +4,4 @@ # license information. # -------------------------------------------------------------------------- -VERSION = "12.1.3" +VERSION = "12.2.0b1" diff --git a/sdk/storage/azure-storage-file-datalake/setup.py b/sdk/storage/azure-storage-file-datalake/setup.py index 4ee0b328448c..47493eec3898 100644 --- a/sdk/storage/azure-storage-file-datalake/setup.py +++ b/sdk/storage/azure-storage-file-datalake/setup.py @@ -72,7 +72,7 @@ author_email='ascl@microsoft.com', url='https://github.com/Azure/azure-sdk-for-python', classifiers=[ - "Development Status :: 5 - Production/Stable", + "Development Status :: 4 - Beta", 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', diff --git a/sdk/storage/azure-storage-file-share/CHANGELOG.md b/sdk/storage/azure-storage-file-share/CHANGELOG.md index 784aa8b70dac..b950f476941e 100644 --- a/sdk/storage/azure-storage-file-share/CHANGELOG.md +++ b/sdk/storage/azure-storage-file-share/CHANGELOG.md @@ -1,6 +1,10 @@ # Release History -## 12.2.1 (Unreleased) +## 12.3.0b1 (2020-10-02) +**New features** +- Added support for enabling SMB Multichannel for the share service. +- Added support for leasing a share. +- Added support for getting the range diff between current the file and a snapshot and the diff between two snapshots. ## 12.2.0 (2020-08-13) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_version.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_version.py index c7e18b39cee7..3174c505095c 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_version.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_version.py @@ -4,4 +4,4 @@ # license information. # -------------------------------------------------------------------------- -VERSION = "12.2.1" +VERSION = "12.3.0b1" diff --git a/sdk/storage/azure-storage-file-share/setup.py b/sdk/storage/azure-storage-file-share/setup.py index e4cc87aae80a..74655734004e 100644 --- a/sdk/storage/azure-storage-file-share/setup.py +++ b/sdk/storage/azure-storage-file-share/setup.py @@ -58,7 +58,7 @@ author_email='ascl@microsoft.com', url='https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-share', classifiers=[ - "Development Status :: 5 - Production/Stable", + "Development Status :: 4 - Beta", 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', From ce9e58a707c6ff6efb3a164b48d6d6720cc1c1ef Mon Sep 17 00:00:00 2001 From: tasherif-msft <69483382+tasherif-msft@users.noreply.github.com> Date: Fri, 2 Oct 2020 07:05:59 -0700 Subject: [PATCH 2/3] Update CHANGELOG.md --- sdk/storage/azure-storage-file-share/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/storage/azure-storage-file-share/CHANGELOG.md b/sdk/storage/azure-storage-file-share/CHANGELOG.md index b950f476941e..9fe26a934111 100644 --- a/sdk/storage/azure-storage-file-share/CHANGELOG.md +++ b/sdk/storage/azure-storage-file-share/CHANGELOG.md @@ -4,7 +4,7 @@ **New features** - Added support for enabling SMB Multichannel for the share service. - Added support for leasing a share. -- Added support for getting the range diff between current the file and a snapshot and the diff between two snapshots. +- Added support for getting the range diff between current file and a snapshot as well as getting the diff between two file snapshots. ## 12.2.0 (2020-08-13) From 8d47451f9a98635082c0f06c5525c9cbc8590988 Mon Sep 17 00:00:00 2001 From: Xiaoxi Fu <49707495+xiafu-msft@users.noreply.github.com> Date: Fri, 2 Oct 2020 13:20:42 -0700 Subject: [PATCH 3/3] Update sdk/storage/azure-storage-file-datalake/CHANGELOG.md --- sdk/storage/azure-storage-file-datalake/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/storage/azure-storage-file-datalake/CHANGELOG.md b/sdk/storage/azure-storage-file-datalake/CHANGELOG.md index 959505240ede..c00e212860f4 100644 --- a/sdk/storage/azure-storage-file-datalake/CHANGELOG.md +++ b/sdk/storage/azure-storage-file-datalake/CHANGELOG.md @@ -3,6 +3,7 @@ **New Features** - Added support for recursive set/update/remove Access Control on a path and sub-paths. - Added support for setting an expiry on files where the file gets deleted once it expires. +- Added support to generate directory SAS and added support to specify additional user ids and correlation ids for user delegation SAS. ## 12.1.2 (2020-09-10) **Fixes**