Skip to content

[Storage] Merge hotfix branch into main #26910

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

Merged
merged 6 commits into from
Oct 24, 2022
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
8 changes: 6 additions & 2 deletions sdk/storage/azure-storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
# Release History

## 12.14.1 (Unreleased)
## 12.14.2 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
- Fixed possible invalid content range exception that gets raised when downloading empty blobs through Azurite.

### Other Changes
- Removed `msrest` dependency.
- Added `typing-extensions>=4.0.1` as a dependency.
- Added `isodate>=0.6.1` as a dependency.
- Added extra dependency `aio` for installing optional async dependencies. Use `pip install azure-storage-blob[aio]` to install.

## 12.14.1 (2022-10-18)

### Bugs Fixed
- Fixed possible `ValueError` for invalid content range that gets raised when downloading empty blobs through Azurite.

## 12.14.0 (2022-10-11)

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

VERSION = "12.14.1"
VERSION = "12.14.2"
7 changes: 6 additions & 1 deletion sdk/storage/azure-storage-file-datalake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.9.1 (Unreleased)
## 12.9.2 (Unreleased)

### Features Added

Expand All @@ -14,6 +14,11 @@
- Added `isodate>=0.6.1` as a dependency.
- Added extra dependency `aio` for installing optional async dependencies. Use `pip install azure-storage-file-datalake[aio]` to install.

## 12.9.1 (2022-10-18)

### Bugs Fixed
- Fixed possible `ValueError` for invalid content range that gets raised when downloading empty files through Azurite.

## 12.9.0 (2022-10-11)

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

VERSION = "12.9.1"
VERSION = "12.9.2"
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file-datalake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
python_requires=">=3.7",
install_requires=[
"azure-core<2.0.0,>=1.26.0",
"azure-storage-blob<13.0.0,>=12.14.0",
"azure-storage-blob<13.0.0,>=12.14.1",
"typing-extensions>=4.0.1",
"isodate>=0.6.1"
],
Expand Down
7 changes: 6 additions & 1 deletion sdk/storage/azure-storage-file-share/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.10.1 (Unreleased)
## 12.10.2 (Unreleased)

### Features Added

Expand All @@ -15,6 +15,11 @@
- Added `isodate>=0.6.1` as a dependency.
- Added extra dependency `aio` for installing optional async dependencies. Use `pip install azure-storage-file-share[aio]` to install.

## 12.10.1 (2022-10-18)

### Bugs Fixed
- Fixed possible `ValueError` for invalid content range that gets raised when downloading empty files through Azurite.

## 12.10.0 (2022-10-11)

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

VERSION = "12.10.1"
VERSION = "12.10.2"
2 changes: 1 addition & 1 deletion shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ yarl<2.0,>=1.0
#override azure-storage-file-share azure-core[aio]<2.0.0,>=1.26.0
#override azure-storage-file-share typing-extensions>=4.0.1
#override azure-storage-file-share isodate>=0.6.1
#override azure-storage-file-datalake azure-storage-blob<13.0.0,>=12.14.0
#override azure-storage-file-datalake azure-storage-blob<13.0.0,>=12.14.1
#override azure-storage-file-datalake azure-core<2.0.0,>=1.26.0
#override azure-storage-file-datalake azure-core[aio]<2.0.0,>=1.26.0
#override azure-storage-file-datalake typing-extensions>=4.0.1
Expand Down