diff options
Diffstat (limited to 'python-azure-servicebus.spec')
| -rw-r--r-- | python-azure-servicebus.spec | 149 |
1 files changed, 133 insertions, 16 deletions
diff --git a/python-azure-servicebus.spec b/python-azure-servicebus.spec index 3f3b5e6..e57b708 100644 --- a/python-azure-servicebus.spec +++ b/python-azure-servicebus.spec @@ -1,19 +1,13 @@ %global _empty_manifest_terminate_build 0 Name: python-azure-servicebus -Version: 7.8.3 +Version: 7.9.0 Release: 1 Summary: Microsoft Azure Service Bus Client Library for Python License: MIT License URL: https://github.com/Azure/azure-sdk-for-python -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/b4/2e/9ffd685657e36753c2183cc412f49d45a8558563160c25e019e37f520c95/azure-servicebus-7.8.3.zip +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/08/e2/52483e29920366e0451670c3f259919b926cdea765c4e76ed9eada4d9d21/azure-servicebus-7.9.0.zip BuildArch: noarch -Requires: python3-uamqp -Requires: python3-azure-common -Requires: python3-msrest -Requires: python3-azure-core -Requires: python3-isodate -Requires: python3-typing-extensions %description # Azure Service Bus client library for Python @@ -29,7 +23,13 @@ Use the Service Bus client library for Python to communicate between application * Send and receive messages within your Service Bus channels. * Utilize message locks, sessions, and dead letter functionality to implement complex messaging patterns. -[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/) | [Package (PyPi)][pypi] | [API reference documentation][api_docs] | [Product documentation][product_docs] | [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/samples) | [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/CHANGELOG.md) +[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/) +| [Package (PyPi)][pypi] +| [Package (Conda)](https://anaconda.org/microsoft/azure-servicebus) +| [API reference documentation][api_docs] +| [Product documentation][product_docs] +| [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/samples) +| [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/CHANGELOG.md) **NOTE**: If you are using version 0.50 or lower and want to migrate to the latest version of this package please look at our [migration guide to move from Service Bus V0.50 to Service Bus V7][migration_guide]. @@ -565,6 +565,29 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio # Release History +## 7.9.0 (2023-04-11) + +### Breaking Changes + +- Client side validation of input is now disabled by default for the sync and async `ServiceBusAdministrationClient`. This means there will be no `msrest.exceptions.ValidationError` raised by the `ServiceBusAdministrationClient` in the case of malformed input. An `azure.core.exceptions.HttpResponseError` may now be raised if the server refuses the request. + +### Bugs Fixed + +- Fixed a bug where enum members in `azure.servicebus.management` were not following uppercase convention. + +### Other Changes + +- All pure Python AMQP stack related changes have been removed and will be added back in the next version. +- Updated minimum `azure-core` version to 1.24.0. +- Removed `msrest` dependency. +- Removed `azure-common` dependency. + +## 7.9.0b1 (2023-03-09) + +### Features Added + +- Iterator receiving from Service Bus entities has been added back in. + ## 7.8.3 (2023-03-09) ### Bugs Fixed @@ -582,6 +605,19 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio - Updated uAMQP dependency to 1.6.3. - Added support for Python 3.11. +## 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. @@ -590,7 +626,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+. @@ -1214,7 +1249,13 @@ Use the Service Bus client library for Python to communicate between application * Send and receive messages within your Service Bus channels. * Utilize message locks, sessions, and dead letter functionality to implement complex messaging patterns. -[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/) | [Package (PyPi)][pypi] | [API reference documentation][api_docs] | [Product documentation][product_docs] | [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/samples) | [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/CHANGELOG.md) +[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/) +| [Package (PyPi)][pypi] +| [Package (Conda)](https://anaconda.org/microsoft/azure-servicebus) +| [API reference documentation][api_docs] +| [Product documentation][product_docs] +| [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/samples) +| [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/CHANGELOG.md) **NOTE**: If you are using version 0.50 or lower and want to migrate to the latest version of this package please look at our [migration guide to move from Service Bus V0.50 to Service Bus V7][migration_guide]. @@ -1750,6 +1791,29 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio # Release History +## 7.9.0 (2023-04-11) + +### Breaking Changes + +- Client side validation of input is now disabled by default for the sync and async `ServiceBusAdministrationClient`. This means there will be no `msrest.exceptions.ValidationError` raised by the `ServiceBusAdministrationClient` in the case of malformed input. An `azure.core.exceptions.HttpResponseError` may now be raised if the server refuses the request. + +### Bugs Fixed + +- Fixed a bug where enum members in `azure.servicebus.management` were not following uppercase convention. + +### Other Changes + +- All pure Python AMQP stack related changes have been removed and will be added back in the next version. +- Updated minimum `azure-core` version to 1.24.0. +- Removed `msrest` dependency. +- Removed `azure-common` dependency. + +## 7.9.0b1 (2023-03-09) + +### Features Added + +- Iterator receiving from Service Bus entities has been added back in. + ## 7.8.3 (2023-03-09) ### Bugs Fixed @@ -1767,6 +1831,19 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio - Updated uAMQP dependency to 1.6.3. - Added support for Python 3.11. +## 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. @@ -1775,7 +1852,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+. @@ -2396,7 +2472,13 @@ Use the Service Bus client library for Python to communicate between application * Send and receive messages within your Service Bus channels. * Utilize message locks, sessions, and dead letter functionality to implement complex messaging patterns. -[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/) | [Package (PyPi)][pypi] | [API reference documentation][api_docs] | [Product documentation][product_docs] | [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/samples) | [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/CHANGELOG.md) +[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/) +| [Package (PyPi)][pypi] +| [Package (Conda)](https://anaconda.org/microsoft/azure-servicebus) +| [API reference documentation][api_docs] +| [Product documentation][product_docs] +| [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/samples) +| [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/CHANGELOG.md) **NOTE**: If you are using version 0.50 or lower and want to migrate to the latest version of this package please look at our [migration guide to move from Service Bus V0.50 to Service Bus V7][migration_guide]. @@ -2932,6 +3014,29 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio # Release History +## 7.9.0 (2023-04-11) + +### Breaking Changes + +- Client side validation of input is now disabled by default for the sync and async `ServiceBusAdministrationClient`. This means there will be no `msrest.exceptions.ValidationError` raised by the `ServiceBusAdministrationClient` in the case of malformed input. An `azure.core.exceptions.HttpResponseError` may now be raised if the server refuses the request. + +### Bugs Fixed + +- Fixed a bug where enum members in `azure.servicebus.management` were not following uppercase convention. + +### Other Changes + +- All pure Python AMQP stack related changes have been removed and will be added back in the next version. +- Updated minimum `azure-core` version to 1.24.0. +- Removed `msrest` dependency. +- Removed `azure-common` dependency. + +## 7.9.0b1 (2023-03-09) + +### Features Added + +- Iterator receiving from Service Bus entities has been added back in. + ## 7.8.3 (2023-03-09) ### Bugs Fixed @@ -2949,6 +3054,19 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio - Updated uAMQP dependency to 1.6.3. - Added support for Python 3.11. +## 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. @@ -2957,7 +3075,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+. @@ -3562,7 +3679,7 @@ history on Service Bus. %prep -%autosetup -n azure-servicebus-7.8.3 +%autosetup -n azure-servicebus-7.9.0 %build %py3_build @@ -3602,5 +3719,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 7.8.3-1 +* Fri Apr 21 2023 Python_Bot <Python_Bot@openeuler.org> - 7.9.0-1 - Package Spec generated |
