Skip to content

Commit db22d88

Browse files
authored
[EventHub&ServiceBus] Bump uAMQP dependency (#17942)
* test uamqp 1.3.1 wheel * Apply suggestions from code review * update changelog and revert test yml * bump eventhub version
1 parent 17c2f18 commit db22d88

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

sdk/eventhub/azure-eventhub/CHANGELOG.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,19 @@
33
## 5.5.0 (Unreleased)
44

55
**New Features**
6-
- Added support for using `azure.core.credentials.AzureNamedKeyCredential` as credential for authenticating producer and consumer clients.
7-
8-
**Notes**
96

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

129
**Bug Fixes**
1310

1411
- Fixed bug that custom user agent string should be put in front of the built-in user agent string instead of being appended.
12+
- Updated uAMQP dependency to 1.4.0.
13+
- Fixed memory leaks in the process of link attach where source and target cython objects are not properly deallocated (#15747).
14+
- Improved management operation callback not to parse description value of non AMQP_TYPE_STRING type as string (#18361).
15+
16+
**Notes**
17+
18+
- Updated azure-core dependency to 1.14.0.
1519

1620
## 5.4.0 (2021-04-07)
1721

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

2731
**Bug Fixes**
2832

29-
* Updated uAMQP dependency to 1.3.0.
33+
- Updated uAMQP dependency to 1.3.0.
3034
- Fixed bug that sending message of large size triggering segmentation fault when the underlying socket connection is lost (#13739, #14543).
3135
- 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).
3236

sdk/eventhub/azure-eventhub/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
packages=find_packages(exclude=exclude_packages),
7171
install_requires=[
7272
"azure-core<2.0.0,>=1.14.0",
73-
"uamqp>=1.3.0,<2.0.0",
73+
"uamqp>=1.4.0,<2.0.0",
7474
],
7575
extras_require={
7676
":python_version<'3.0'": ['azure-nspkg'],

sdk/servicebus/azure-servicebus/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ The preview features related to AMQPAnnotatedMessage introduced in 7.2.0b1 are n
1818

1919
* Updated azure-core dependency to 1.14.0.
2020

21+
**Bug Fixes**
22+
23+
- Updated uAMQP dependency to 1.4.0.
24+
- Fixed memory leaks in the process of link attach where source and target cython objects are not properly deallocated (#15747).
25+
- Improved management operation callback not to parse description value of non AMQP_TYPE_STRING type as string (#18361).
26+
2127
## 7.2.0b1 (2021-04-07)
2228

2329
**New Features**

sdk/servicebus/azure-servicebus/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
'azure',
8080
]),
8181
install_requires=[
82-
"uamqp>=1.3.0,<2.0.0",
82+
"uamqp>=1.4.0,<2.0.0",
8383
'azure-common~=1.1',
8484
'msrest>=0.6.17,<2.0.0',
8585
'azure-core<2.0.0,>=1.14.0',

shared_requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,9 @@ opentelemetry-sdk<2.0.0,>=1.0.0
169169
#override azure-eventhub-checkpointstoreblob azure-core<2.0.0,>=1.10.0
170170
#override azure-eventhub-checkpointstoreblob-aio azure-core<2.0.0,>=1.10.0
171171
#override azure-eventhub-checkpointstoreblob-aio aiohttp<4.0,>=3.0
172-
#override azure-eventhub uamqp>=1.3.0,<2.0.0
172+
#override azure-eventhub uamqp>=1.4.0,<2.0.0
173173
#override azure-appconfiguration msrest>=0.6.10
174-
#override azure-servicebus uamqp>=1.3.0,<2.0.0
174+
#override azure-servicebus uamqp>=1.4.0,<2.0.0
175175
#override azure-servicebus msrest>=0.6.17,<2.0.0
176176
#override azure-servicebus azure-core<2.0.0,>=1.14.0
177177
#override azure-servicefabric msrest>=0.6.21

0 commit comments

Comments
 (0)