Skip to content

Commit 1063e29

Browse files
[Storage] Merge hotfix branch into main (Azure#26910)
1 parent cdf13d2 commit 1063e29

File tree

8 files changed

+23
-9
lines changed

8 files changed

+23
-9
lines changed

sdk/storage/azure-storage-blob/CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
# Release History
22

3-
## 12.14.1 (Unreleased)
3+
## 12.14.2 (Unreleased)
44

55
### Features Added
66

77
### Breaking Changes
88

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

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

17+
## 12.14.1 (2022-10-18)
18+
19+
### Bugs Fixed
20+
- Fixed possible `ValueError` for invalid content range that gets raised when downloading empty blobs through Azurite.
21+
1822
## 12.14.0 (2022-10-11)
1923

2024
### Features Added

sdk/storage/azure-storage-blob/azure/storage/blob/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "12.14.1"
7+
VERSION = "12.14.2"

sdk/storage/azure-storage-file-datalake/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 12.9.1 (Unreleased)
3+
## 12.9.2 (Unreleased)
44

55
### Features Added
66

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

17+
## 12.9.1 (2022-10-18)
18+
19+
### Bugs Fixed
20+
- Fixed possible `ValueError` for invalid content range that gets raised when downloading empty files through Azurite.
21+
1722
## 12.9.0 (2022-10-11)
1823

1924
### Features Added

sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "12.9.1"
7+
VERSION = "12.9.2"

sdk/storage/azure-storage-file-datalake/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
python_requires=">=3.7",
7777
install_requires=[
7878
"azure-core<2.0.0,>=1.26.0",
79-
"azure-storage-blob<13.0.0,>=12.14.0",
79+
"azure-storage-blob<13.0.0,>=12.14.1",
8080
"typing-extensions>=4.0.1",
8181
"isodate>=0.6.1"
8282
],

sdk/storage/azure-storage-file-share/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 12.10.1 (Unreleased)
3+
## 12.10.2 (Unreleased)
44

55
### Features Added
66

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

18+
## 12.10.1 (2022-10-18)
19+
20+
### Bugs Fixed
21+
- Fixed possible `ValueError` for invalid content range that gets raised when downloading empty files through Azurite.
22+
1823
## 12.10.0 (2022-10-11)
1924

2025
### Features Added

sdk/storage/azure-storage-file-share/azure/storage/fileshare/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "12.10.1"
7+
VERSION = "12.10.2"

shared_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ yarl<2.0,>=1.0
176176
#override azure-storage-file-share azure-core[aio]<2.0.0,>=1.26.0
177177
#override azure-storage-file-share typing-extensions>=4.0.1
178178
#override azure-storage-file-share isodate>=0.6.1
179-
#override azure-storage-file-datalake azure-storage-blob<13.0.0,>=12.14.0
179+
#override azure-storage-file-datalake azure-storage-blob<13.0.0,>=12.14.1
180180
#override azure-storage-file-datalake azure-core<2.0.0,>=1.26.0
181181
#override azure-storage-file-datalake azure-core[aio]<2.0.0,>=1.26.0
182182
#override azure-storage-file-datalake typing-extensions>=4.0.1

0 commit comments

Comments
 (0)