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
10 changes: 8 additions & 2 deletions sdk/eventhub/azure-eventhub/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

## 5.2.1 (Unreleased)

**Note**
**Bug fixes**

* Updated uAMQP dependency to 1.2.12 adding support for Python 3.9.
* Updated `azure.eventhub.extension.__init__.py` to be compatible with pkgutil-style namespace (PR #13210, thanks @pjachowi).
* Updated uAMQP dependency to 1.2.13
- Added support for Python 3.9.
- Fixed bug that macOS was unable to detect network error (#15473).
- Fixed bug that `uamqp.ReceiveClient` and `uamqp.ReceiveClientAsync` receive messages during connection establishment (#15555).
- Fixed bug where connection establishment on macOS with Clang 12 triggering unrecognized selector exception (#15567).
- Fixed bug in accessing message properties triggering segmentation fault when the underlying C bytes are NULL (#15568).

## 5.2.0 (2020-09-08)

Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/azure-eventhub/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
packages=find_packages(exclude=exclude_packages),
install_requires=[
"azure-core<2.0.0,>=1.5.0",
"uamqp>=1.2.12,<2.0.0",
"uamqp>=1.2.13,<2.0.0",
],
extras_require={
":python_version<'3.0'": ['azure-nspkg'],
Expand Down
2 changes: 1 addition & 1 deletion shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ opentelemetry-api==0.13b0
#override azure-eventhub-checkpointstoreblob msrest>=0.6.10
#override azure-eventhub-checkpointstoreblob-aio msrest>=0.6.10
#override azure-eventhub-checkpointstoreblob-aio aiohttp<4.0,>=3.0
#override azure-eventhub uamqp>=1.2.12,<2.0.0
#override azure-eventhub uamqp>=1.2.13,<2.0.0
#override azure-appconfiguration msrest>=0.6.10
#override azure-servicebus uamqp>=1.2.12,<2.0.0
#override azure-servicebus msrest>=0.6.17,<2.0.0
Expand Down