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
1 change: 1 addition & 0 deletions sdk/storage/azure-storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
### Other Changes
- Removed `msrest` dependency.
- Added `typing-extensions>=4.0.1` as a dependency.
- Added extra dependency `aio` for installing optional async dependencies. Use `pip install azure-storage-blob[aio]` to install.

## 12.14.0 (2022-10-11)

Expand Down
7 changes: 6 additions & 1 deletion sdk/storage/azure-storage-blob/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,13 @@
]),
python_requires=">=3.7",
install_requires=[
"azure-core<2.0.0,>=1.24.2",
"azure-core<2.0.0,>=1.26.0",
"cryptography>=2.1.4",
"typing-extensions>=4.0.1"
],
extras_require={
"aio": [
"azure-core[aio]<2.0.0,>=1.26.0",
],
},
)
1 change: 1 addition & 0 deletions sdk/storage/azure-storage-file-datalake/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
### Other Changes
- Removed `msrest` dependency.
- Added `typing-extensions>=4.0.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.0 (2022-10-11)

Expand Down
7 changes: 6 additions & 1 deletion sdk/storage/azure-storage-file-datalake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,13 @@
]),
python_requires=">=3.7",
install_requires=[
"azure-core<2.0.0,>=1.24.2",
"azure-core<2.0.0,>=1.26.0",
"azure-storage-blob<13.0.0,>=12.14.0",
"typing-extensions>=4.0.1"
],
extras_require={
"aio": [
"azure-core[aio]<2.0.0,>=1.26.0",
],
},
)
1 change: 1 addition & 0 deletions sdk/storage/azure-storage-file-share/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
### Other Changes
- Removed `msrest` dependency.
- Added `typing-extensions>=4.0.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.0 (2022-10-11)

Expand Down
7 changes: 6 additions & 1 deletion sdk/storage/azure-storage-file-share/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,13 @@
]),
python_requires=">=3.7",
install_requires=[
"azure-core<2.0.0,>=1.24.2",
"azure-core<2.0.0,>=1.26.0",
"cryptography>=2.1.4",
"typing-extensions>=4.0.1"
],
extras_require={
"aio": [
"azure-core[aio]<2.0.0,>=1.26.0",
],
},
)
1 change: 1 addition & 0 deletions sdk/storage/azure-storage-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
### Other Changes
- Removed `msrest` dependency.
- Added `typing-extensions>=4.0.1` as a dependency.
- Added extra dependency `aio` for installing optional async dependencies. Use `pip install azure-storage-queue[aio]` to install.

## 12.5.0 (2022-10-11)

Expand Down
7 changes: 6 additions & 1 deletion sdk/storage/azure-storage-queue/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,13 @@
]),
python_requires=">=3.7",
install_requires=[
"azure-core<2.0.0,>=1.24.2",
"azure-core<2.0.0,>=1.26.0",
"cryptography>=2.1.4",
"typing-extensions>=4.0.1"
],
extras_require={
"aio": [
"azure-core[aio]<2.0.0,>=1.26.0",
],
},
)
12 changes: 8 additions & 4 deletions shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -159,15 +159,19 @@ yarl<2.0,>=1.0
#override azure-search-documents azure-core<2.0.0,>=1.19.0
#override azure-ai-formrecognizer azure-core<2.0.0,>=1.23.0
#override azure-ai-formrecognizer typing-extensions>=4.0.1
#override azure-storage-blob azure-core<2.0.0,>=1.24.2
#override azure-storage-blob azure-core<2.0.0,>=1.26.0
#override azure-storage-blob azure-core[aio]<2.0.0,>=1.26.0
#override azure-storage-blob typing-extensions>=4.0.1
#override azure-storage-blob-changefeed azure-storage-blob>=12.5.0,<13.0.0
#override azure-storage-queue azure-core<2.0.0,>=1.24.2
#override azure-storage-queue azure-core<2.0.0,>=1.26.0
#override azure-storage-queue azure-core[aio]<2.0.0,>=1.26.0
#override azure-storage-queue typing-extensions>=4.0.1
#override azure-storage-file-share azure-core<2.0.0,>=1.24.2
#override azure-storage-file-share azure-core<2.0.0,>=1.26.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-datalake azure-core<2.0.0,>=1.24.2
#override azure-storage-file-datalake azure-storage-blob<13.0.0,>=12.14.0
#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
#override azure-security-attestation azure-core<2.0.0,>=1.8.2
#override azure-schemaregistry azure-core<2.0.0,>=1.24.0
Expand Down