From 0ebf280ed6a71002aefc70009cdf2d5a13398dca Mon Sep 17 00:00:00 2001 From: Kieran Brantner-Magee Date: Mon, 5 Oct 2020 11:37:34 -0700 Subject: [PATCH 1/2] Add Python Service Bus 7.0.0b7 (October) release notes. --- releases/2020-10/python.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/releases/2020-10/python.md b/releases/2020-10/python.md index 2e9fcbc77a7..8c06e8426e8 100644 --- a/releases/2020-10/python.md +++ b/releases/2020-10/python.md @@ -18,14 +18,14 @@ The Azure SDK team is pleased to make available the October 2020 client library #### Beta -- _Add packages_ +- Service Bus ## Installation Instructions To install the latest beta version of the packages, copy and paste the following commands into a terminal: ```bash -$> pip install azure-packagename +pip install azure-servicebus --pre ``` ## Feedback @@ -36,9 +36,17 @@ If you have a bug or feature request for one of the libraries, please post an is Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights: -### _Package name_ +### Service Bus [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/servicebus/azure-servicebus/CHANGELOG.md) + +#### New Features + +- This release continues to move towards GA. Recommend reading migration guide and full changelog for details. + +#### Breaking changes -- Major changes only! +* Passing any type other than `ReceiveMode` as parameter `receive_mode` now throws a `TypeError` instead of `AttributeError`. +* Administration Client calls now take only entity names, not `Descriptions` as well to reduce ambiguity in which entity was being acted on. TypeError will now be thrown on improper parameter types (non-string). +* `AMQPMessage` (`Message.amqp_message`) properties are now read-only, changes of these properties would not be reflected in the underlying message. This may be subject to change before GA. ## Latest Releases From c43484c5cc3116948b7e0eee1bc619318066bfce Mon Sep 17 00:00:00 2001 From: Kieran Brantner-Magee Date: Mon, 5 Oct 2020 12:13:17 -0700 Subject: [PATCH 2/2] Remove spurious new features section --- releases/2020-10/python.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/releases/2020-10/python.md b/releases/2020-10/python.md index 8c06e8426e8..21e8bc0a9ae 100644 --- a/releases/2020-10/python.md +++ b/releases/2020-10/python.md @@ -38,10 +38,6 @@ Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here ### Service Bus [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/servicebus/azure-servicebus/CHANGELOG.md) -#### New Features - -- This release continues to move towards GA. Recommend reading migration guide and full changelog for details. - #### Breaking changes * Passing any type other than `ReceiveMode` as parameter `receive_mode` now throws a `TypeError` instead of `AttributeError`.