Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion sdk/storage/azure-storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Release History

## 12.32.0b1 (Unreleased)
## 12.31.0 (Unreleased)

This version and all future versions will require Python 3.10+. Python 3.9 is no longer supported.

### Features Added
- Stable release of features from 12.31.0b1
- Added `list` support to `BlobSasPermissions` for use with directory-scoped SAS tokens.

### Bugs Fixed
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Blob storage is ideal for:
## Getting started

### Prerequisites
* Python 3.9 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md).
* Python 3.10 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md).
* You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
[Azure storage account](https://learn.microsoft.com/azure/storage/common/storage-account-overview) to use this package.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "12.32.0b1"
VERSION = "12.31.0"
5 changes: 2 additions & 3 deletions sdk/storage/azure-storage-blob/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,10 @@
url="https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob",
keywords="azure, azure sdk",
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -77,7 +76,7 @@
"tests.common",
]
),
python_requires=">=3.9",
python_requires=">=3.10",
install_requires=[
"azure-core>=1.37.0",
"cryptography>=2.1.4",
Expand Down
5 changes: 4 additions & 1 deletion sdk/storage/azure-storage-file-datalake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Release History

## 12.27.0b1 (Unreleased)
## 12.26.0 (Unreleased)

This version and all future versions will require Python 3.10+. Python 3.9 is no longer supported.

### Features Added
- Stable release of features from 12.26.0b1

## 12.26.0b1 (2026-08-10)

Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file-datalake/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This preview package for Python includes ADLS Gen2 specific API support made ava
## Getting started

### Prerequisites
* Python 3.9 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md).
* Python 3.10 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md).
* You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
[Azure storage account](https://learn.microsoft.com/azure/storage/blobs/data-lake-storage-quickstart-create-account) to use this package.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "12.27.0b1"
VERSION = "12.26.0"
7 changes: 3 additions & 4 deletions sdk/storage/azure-storage-file-datalake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,10 @@
url="https://github.com/Azure/azure-sdk-for-python",
keywords="azure, azure sdk",
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -76,10 +75,10 @@
"tests",
]
),
python_requires=">=3.9",
python_requires=">=3.10",
install_requires=[
"azure-core>=1.37.0",
"azure-storage-blob>=12.32.0b1",
"azure-storage-blob>=12.31.0",
"typing-extensions>=4.6.0",
"isodate>=0.6.1",
],
Expand Down
13 changes: 7 additions & 6 deletions sdk/storage/azure-storage-file-share/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Release History

## 12.28.0b1 (Unreleased)
## 12.27.0 (Unreleased)

This version and all future versions will require Python 3.10+. Python 3.9 is no longer supported.

### Breaking Changes
- Custom transports that use legacy `azure-core` Request/Response types will no longer be supported and may now cause errors if used. Please ensure custom transports are utilizing types from `azure.core.rest`.

### Features Added
- Stable release of features from 12.27.0b1

## 12.27.0b1 (2026-08-10)

Expand All @@ -20,11 +26,6 @@ service responses.
### Bugs Fixed
- Return type of get_share_access_policies is now the publicly exposed SignedIdentifier model containing the publicly exposed AccessPolicy model. Previously we were leaking the internal generated SignedIdentifier model without exposing it in the api.


### Other Changes
- Custom transports that use legacy azure-core Request/Response types will not be supported moving forward
- Removed support for Python 3.9, Python 3.10 or later is required to use this package

## 12.26.0 (2026-06-08)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "12.28.0b1"
VERSION = "12.27.0"
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file-share/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ authors = [
description = "Microsoft Corporation Azure Storage File Share Client Library for Python"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
Expand Down
9 changes: 7 additions & 2 deletions sdk/storage/azure-storage-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Release History

## 12.19.0b1 (Unreleased)
## 12.18.0 (Unreleased)

This version and all future versions will require Python 3.10+. Python 3.9 is no longer supported.

### Breaking Changes
- Custom transports that use legacy `azure-core` Request/Response types will no longer be supported and may now cause errors if used. Please ensure custom transports are utilizing types from `azure.core.rest`.

### Features Added
- Stable release of features from 12.18.0b1

## 12.18.0b1 (2026-08-10)

Expand All @@ -15,7 +21,6 @@
### Bugs Fixed
- Return type of get_access_policies is now the publicly exposed AccessPolicy model. Previously we were leaking the internal generated AccessPolicy model without exposing it in the api.


## 12.17.0 (2026-06-08)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "12.19.0b1"
VERSION = "12.18.0"
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-queue/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ authors = [
description = "Microsoft Corporation Azure Storage Queue Client Library for Python"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
Expand Down
Loading