diff --git a/sdk/eventhub/azure-eventhub/CHANGELOG.md b/sdk/eventhub/azure-eventhub/CHANGELOG.md index cbe6cf54ad13..3bd1d819e9de 100644 --- a/sdk/eventhub/azure-eventhub/CHANGELOG.md +++ b/sdk/eventhub/azure-eventhub/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 5.8.0b2 (2022-10-11) + +### Features Added + +- Updated the optional dependency for async transport using AMQP over WebSocket from `websocket-client` to `aiohttp` (Issue #24315, thanks @hansmbakker for the suggestion). + ## 5.8.0b1 (2022-09-22) This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported. diff --git a/sdk/eventhub/azure-eventhub/samples/README.md b/sdk/eventhub/azure-eventhub/samples/README.md index bb2adc1044a1..413f30d1714c 100644 --- a/sdk/eventhub/azure-eventhub/samples/README.md +++ b/sdk/eventhub/azure-eventhub/samples/README.md @@ -99,7 +99,7 @@ There, you can also find detailed instructions for using the Azure CLI, Azure Po 1. Install the Azure Event Hubs client library for Python with [pip](https://pypi.org/project/pip/): ```bash -pip install azure-eventhub==5.8.0a4 +pip install azure-eventhub==5.8.0b2 ``` To run samples that utilize the Azure Active Directory for authentication, please install the `azure-identity` library: diff --git a/sdk/servicebus/azure-servicebus/CHANGELOG.md b/sdk/servicebus/azure-servicebus/CHANGELOG.md index 9d44e4d4ec2f..4eb350072779 100644 --- a/sdk/servicebus/azure-servicebus/CHANGELOG.md +++ b/sdk/servicebus/azure-servicebus/CHANGELOG.md @@ -1,5 +1,18 @@ # Release History +## 7.9.0a1 (2022-10-11) + +Version 7.9.0a1 is our first efforts to build an Azure Service Bus client library based on a pure Python implemented AMQP stack. + +### Breaking changes + +- The following features have been temporarily pulled out which will be added back in future previews as we work towards a stable release: + - Iterator receiving from Service Bus entities. + +### Other Changes + +- uAMQP dependency is removed. + ## 7.8.1 (2022-10-11) This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported. @@ -8,7 +21,6 @@ This version and all future versions will require Python 3.7+. Python 3.6 is no - Fixed bug on async `ServiceBusClient` where `custom_endpoint_address` and `connection_verify` kwargs were not being passed through correctly. (Issue #26015) - ## 7.8.0 (2022-07-06) This version will be the last version to officially support Python 3.6, future versions will require Python 3.7+. diff --git a/sdk/servicebus/azure-servicebus/dev_requirements.txt b/sdk/servicebus/azure-servicebus/dev_requirements.txt index fd59977c19b6..6a86e1893549 100644 --- a/sdk/servicebus/azure-servicebus/dev_requirements.txt +++ b/sdk/servicebus/azure-servicebus/dev_requirements.txt @@ -4,4 +4,5 @@ -e ../../../tools/azure-sdk-tools azure-mgmt-servicebus~=1.0.0 aiohttp>=3.0 -websocket-client \ No newline at end of file +websocket-client +uamqp>=1.5.1,<2.0.0 \ No newline at end of file diff --git a/sdk/servicebus/azure-servicebus/setup.py b/sdk/servicebus/azure-servicebus/setup.py index 1e08bcd060f8..bf1dbbdb697e 100644 --- a/sdk/servicebus/azure-servicebus/setup.py +++ b/sdk/servicebus/azure-servicebus/setup.py @@ -63,7 +63,6 @@ 'azure', ]), install_requires=[ - "uamqp>=1.5.1,<2.0.0", 'azure-common~=1.1', 'msrest>=0.6.17,<2.0.0', 'azure-core<2.0.0,>=1.14.0',