Skip to content
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

[EventHub&ServiceBus] Bump uAMQP dependency #17942

Merged
merged 7 commits into from
May 5, 2021
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
14 changes: 9 additions & 5 deletions sdk/eventhub/azure-eventhub/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@
## 5.5.0 (Unreleased)

**New Features**
- Added support for using `azure.core.credentials.AzureNamedKeyCredential` as credential for authenticating producer and consumer clients.

**Notes**

- Updated azure-core dependency to 1.14.0.
- Added support for using `azure.core.credentials.AzureNamedKeyCredential` as credential for authenticating producer and consumer clients.

**Bug Fixes**

- Fixed bug that custom user agent string should be put in front of the built-in user agent string instead of being appended.
- Updated uAMQP dependency to 1.4.0.
- Fixed memory leaks in the process of link attach where source and target cython objects are not properly deallocated (#15747).
- Improved management operation callback not to parse description value of non AMQP_TYPE_STRING type as string (#18361).

**Notes**

- Updated azure-core dependency to 1.14.0.

## 5.4.0 (2021-04-07)

Expand All @@ -26,7 +30,7 @@ This version follows from version 5.3.1, rather than 5.4.0b1 so that the preview

**Bug Fixes**

* Updated uAMQP dependency to 1.3.0.
- Updated uAMQP dependency to 1.3.0.
- Fixed bug that sending message of large size triggering segmentation fault when the underlying socket connection is lost (#13739, #14543).
- Fixed bug in link flow control where link credit and delivery count should be calculated based on per message instead of per transfer frame (#16934).

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.14.0",
"uamqp>=1.3.0,<2.0.0",
"uamqp>=1.4.0,<2.0.0",
],
extras_require={
":python_version<'3.0'": ['azure-nspkg'],
Expand Down
6 changes: 6 additions & 0 deletions sdk/servicebus/azure-servicebus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ The preview features related to AMQPAnnotatedMessage introduced in 7.2.0b1 are n

* Support for using `azure.core.credentials.AzureSasCredential` as credential for authenticating the clients is now GA.

**Bug Fixes**

- Updated uAMQP dependency to 1.4.0.
- Fixed memory leaks in the process of link attach where source and target cython objects are not properly deallocated (#15747).
- Improved management operation callback not to parse description value of non AMQP_TYPE_STRING type as string (#18361).

## 7.2.0b1 (2021-04-07)

**New Features**
Expand Down
2 changes: 1 addition & 1 deletion sdk/servicebus/azure-servicebus/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
'azure',
]),
install_requires=[
"uamqp>=1.3.0,<2.0.0",
"uamqp>=1.4.0,<2.0.0",
'azure-common~=1.1',
'msrest>=0.6.17,<2.0.0',
'azure-core<2.0.0,>=1.13.0',
Expand Down
4 changes: 2 additions & 2 deletions shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ opentelemetry-sdk<2.0.0,>=1.0.0
#override azure-eventhub-checkpointstoreblob azure-core<2.0.0,>=1.10.0
#override azure-eventhub-checkpointstoreblob-aio azure-core<2.0.0,>=1.10.0
#override azure-eventhub-checkpointstoreblob-aio aiohttp<4.0,>=3.0
#override azure-eventhub uamqp>=1.3.0,<2.0.0
#override azure-eventhub uamqp>=1.4.0,<2.0.0
#override azure-appconfiguration msrest>=0.6.10
#override azure-servicebus uamqp>=1.3.0,<2.0.0
#override azure-servicebus uamqp>=1.4.0,<2.0.0
#override azure-servicebus msrest>=0.6.17,<2.0.0
#override azure-servicebus azure-core<2.0.0,>=1.13.0
#override azure-servicefabric msrest>=0.6.21
Expand Down