Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions sdk/servicebus/azure-servicebus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
**BugFixes**

* `forward_to` and `forward_dead_lettered_messages_to` will no longer cause authorization errors when used in `ServiceBusAdministrationClient` for queues and subscriptions.
* Updated uAMQP dependency to 1.2.13.
- Fixed bug in accessing message properties triggering segmentation fault when the underlying C bytes are NULL.
- Fixed bug where connection establishment on macOS with Clang 12 triggering unrecognized selector exception.
- Fixed bug that macOS was unable to detect network error.
- Fixed bug that ReceiveClient and ReceiveClientAsync receive messages during connection establishment.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there azure-sdk-python repo issue numbers we can reference here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated, thanks for reminding.

btw, do you think it's a good idea to mention those SB issues in the EH changelog as both SDKs depends on the same uamqp?


## 7.0.0 (2020-11-23)

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.2.12,<2.0.0",
"uamqp>=1.2.13,<2.0.0",
'azure-common~=1.1',
'msrest>=0.6.17,<2.0.0',
'azure-core<2.0.0,>=1.6.0',
Expand Down
1 change: 1 addition & 0 deletions sdk/servicebus/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ jobs:
- template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml
parameters:
ServiceDirectory: servicebus
InjectedPackages: $(WheelLocationsList)
TestTimeoutInMinutes: 300
BuildTargetingString: azure-servicebus*
EnvVars:
Expand Down
2 changes: 1 addition & 1 deletion shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ opentelemetry-api==0.13b0
#override azure-eventhub-checkpointstoreblob-aio aiohttp<4.0,>=3.0
#override azure-eventhub uamqp>=1.2.12,<2.0.0
#override azure-appconfiguration msrest>=0.6.10
#override azure-servicebus uamqp>=1.2.12,<2.0.0
#override azure-servicebus uamqp>=1.2.13,<2.0.0
#override azure-servicebus msrest>=0.6.17,<2.0.0
#override azure-servicebus azure-core<2.0.0,>=1.6.0
#override azure-search-documents msrest>=0.6.10
Expand Down