Release History¶
7.11.0 (2023-06-06)¶
Features Added¶
- A new float keyword argument
socket_timeouthas been added toget_queue_sender,get_queue_receiver,get_topic_sender, andget_subscription_receiveron the sync and asyncServiceBusClient.
Bugs Fixed¶
- Fixed a bug where sending large messages failed on socket write timeout (#30425).
- Fixed a bug where settling large messages failed due to
delivery_idbeingNone.
Other Changes¶
- Tracing updates:
- Span links on receive/send spans now fall back to using
Diagnostic-Idif thetraceparentmessage application property is not found. - Span links will now still be created for receive/send spans even if no context propagation headers are found in message application properties.
- The
componentattribute was removed from all spans.
7.10.0 (2023-05-09)¶
Version 7.10.0 is our first stable release of the Azure Service Bus client library based on a pure Python implemented AMQP stack.
Features Added¶
- A new boolean keyword argument
uamqp_transporthas been added to sync and asyncServiceBusClientconstructors which indicates whether to use theuamqplibrary or the default pure Python AMQP library as the underlying transport.
Breaking Changes¶
- Added the following as dependencies to be used for operations over websocket:
websocket-clientfor syncaiohttpfor async- Removed uAMQP from required dependencies and added it as an optional dependency for use with the
uamqp_transportkeyword.
Bugs Fixed¶
- Fixed a bug where sync and async
ServiceBusAdministrationClientexpectedcredentialwithget_tokenmethod returningAccessToken.tokenof typebytesand notstr, now matching the documentation. - Fixed a bug where
raw_amqp_message.headerandmessage.headerproperties onServiceReceivedBusMessagewere returned withdurable,first_acquirer, andpriorityproperties set by default, rather than the values returned by the service. - Fixed a bug where
ServiceBusReceivedMessagewas not picklable (Issue #27947).
Other Changes¶
- The
messageattribute onServiceBus/ServiceBusMessageBatch/ServiceBusReceivedMessage, which previously exposed theuamqp.Message/uamqp.BatchMessage, has been deprecated. LegacyMessage/LegacyBatchMessageobjects returned by themessageattribute onServiceBus/ServiceBusMessageBatchhave been introduced to help facilitate the transition.- Removed uAMQP from required dependencies.
- Adding
uamqp >= 1.6.3as an optional dependency for use with theuamqp_transportkeyword. - Updated tracing (#29995):
- Additional attributes added to existing spans:
messaging.system- messaging system (i.e.,servicebus)messaging.operation- type of operation (i.e.,publish,receive, orsettle)messaging.batch.message_count- number of messages sent or received (if more than one)
- A span will now be created upon calls to the service that settle messages.
- The span name will contain the settlement operation (e.g.,
ServiceBus.complete) - The span will contain
az.namespace,messaging.destination.name,net.peer.name,messaging.system, andmessaging.operationattributes.
- The span name will contain the settlement operation (e.g.,
- All
sendspans now contain links tomessagespans. Now,messagespans will no longer contain a link to thesendspan.
7.10.0b1 (2023-04-13)¶
Features Added¶
- A new boolean keyword argument
uamqp_transporthas been added to sync and asyncServiceBusClientconstructors which indicates whether to use theuamqplibrary or the default pure Python AMQP library as the underlying transport.
Bugs Fixed¶
- Fixed a bug where sync and async
ServiceBusAdministrationClientexpectedcredentialwithget_tokenmethod returningAccessToken.tokenof typebytesand notstr, now matching the documentation. - Fixed a bug where
raw_amqp_message.headerandmessage.headerproperties onServiceReceivedBusMessagewere returned withdurable,first_acquirer, andpriorityproperties set by default, rather than the values returned by the service.
Other Changes¶
- The
messageattribute onServiceBus/ServiceBusMessageBatch/ServiceBusReceivedMessage, which previously exposed theuamqp.Message/uamqp.BatchMessage, has been deprecated. LegacyMessage/LegacyBatchMessageobjects returned by themessageattribute onServiceBus/ServiceBusMessageBatchhave been introduced to help facilitate the transition.- Removed uAMQP from required dependencies.
- Adding
uamqp >= 1.6.3as an optional dependency for use with theuamqp_transportkeyword.
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 nomsrest.exceptions.ValidationErrorraised by theServiceBusAdministrationClientin the case of malformed input. Anazure.core.exceptions.HttpResponseErrormay now be raised if the server refuses the request.
Bugs Fixed¶
- Fixed a bug where enum members in
azure.servicebus.managementwere 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-coreversion to 1.24.0. - Removed
msrestdependency. - Removed
azure-commondependency.
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¶
- Fixed a bug where asynchronous method to add distributed tracing attributes was not being awaited (Issue #28738).
7.8.2 (2023-01-10)¶
Bugs Fixed¶
- Fixed a bug that would cause an exception when
Nonewas sent toset_stateinstead of clearing session state (Issue #27582).
Other Changes¶
- 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.
Bugs Fixed¶
- Fixed bug on async
ServiceBusClientwherecustom_endpoint_addressandconnection_verifykwargs 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+.
Features Added¶
- In
ServiceBusClient,get_queue_receiver,get_subscription_receiver,get_queue_sender, andget_topic_sendernow accept an optionalclient_identifierargument which allows for specifying a custom identifier for the respective sender or receiver. It can be useful during debugging as Service Bus associates the id with errors and helps with easier correlation. ServiceBusReceiverandServiceBusSenderhave an added propertyclient_identifierwhich returns theclient_identifierfor the current instance.
7.7.0 (2022-06-07)¶
Bugs Fixed¶
- Fixed bug to make AMQP exceptions retryable by default, if condition is not non-retryable, to ensure that InternalServerErrors are retried.
Features Added¶
- The
ServiceBusClientconstructor now accepts optionalcustom_endpoint_addressargument which allows for specifying a custom endpoint to use when communicating with the Service Bus service, and is useful when your network does not allow communicating to the standard Service Bus endpoint. - The
ServiceBusClientconstructor now accepts optionalconnection_verifyargument which allows for specifying the path to the custom CA_BUNDLE file of the SSL certificate which is used to authenticate the identity of the connection endpoint.
7.6.1 (2022-04-11)¶
Other Changes¶
- Improved receiving by releasing messages from internal buffer when the
prefetch_countofServiceBusReceiveris set 0 and there is no active receive call, this helps avoid receiving expired messages and incrementing delivery count of a message.
7.6.0 (2022-02-10)¶
Features Added¶
- Introduce
ServiceBusMessageStateenum that can assume the values ofactive,scheduledordeferred. - Add
stateproperty inServiceBusReceivedMessage.
7.5.0 (2022-01-12)¶
This version and all future versions will require Python 3.6+. Python 2.7 is no longer supported.
Features Added¶
- Added support for fixed (linear) retry backoff:
- Sync/async
ServiceBusClientconstructors andfrom_connection_stringtakeretry_modeas a keyword argument. - Added new enum class
ServiceBusSessionFilter, which is the type of existingNEXT_AVAILABLE_SESSIONvalue.
Bugs Fixed¶
- Fixed bug that when setting
ServiceBusMessage.time_to_livewith value beingdatetime.timedelta,total_secondsshould be respected (PR #21869, thanks @jyggen).
Other Changes¶
- Improved token refresh timing to prevent potentially blocking main flow when the token is about to get expired soon.
- Updated uAMQP dependency to 1.5.1.
7.4.0 (2021-11-09)¶
Features Added¶
- GA the support to create and update queues and topics of large message size to
ServiceBusAdministrationClient. This feature is only available for Service Bus of Premium Tier. - Methods
create_queue,create_topic,update_queue,update_topiconServiceBusAdministrationClientnow take a new keyword argumentmax_message_size_in_kilobytes. QueuePropertiesandTopicPropertiesnow have a new instance variablemax_message_size_in_kilobytes.- The constructor of
ServiceBusAdministrationClientas well asServiceBusAdministrationClient.from_connection_stringnow take keyword argumentapi_versionto configure the Service Bus API version. Supported service versions are "2021-05" and "2017-04". - Added new enum class
azure.servicebus.management.ApiVersionto represent the supported Service Bus API versions.
Bugs Fixed¶
- Fixed bug that
ServiceBusReceivercan not connect to sessionful entity with session id being empty string. - Fixed bug that
ServiceBusMessage.partition_keycan not parse empty string properly.
7.4.0b1 (2021-10-06)¶
Features Added¶
- Added support to create and update queues and topics of large message size to
ServiceBusAdministrationClient. This feature is only available for Service Bus of Premium Tier. - Methods
create_queue,create_topic,update_queue,update_topiconServiceBusAdministrationClientnow take a new keyword argumentmax_message_size_in_kilobytes. QueuePropertiesandTopicPropertiesnow have a new instance variablemax_message_size_in_kilobytes.
7.3.4 (2021-10-06)¶
Other Changes¶
- Updated uAMQP dependency to 1.4.3.
- Added support for Python 3.10.
- Fixed memory leak in win32 socketio and tlsio (issue #19777).
- Fixed memory leak in the process of converting AMQPValue into string (issue #19777).
7.3.3 (2021-09-08)¶
Bugs Fixed¶
- Improved memory usage of
ServiceBusClientto automatically discard spawnedServiceBusSenderorServiceBusReceiverfrom its handler set when no strong reference to the sender or receiver exists anymore. - Reduced CPU load of
azure.servicebus.AutoLockRenewerduring lock renewal.
7.3.2 (2021-08-10)¶
Bugs Fixed¶
- Fixed a bug that
azure.servicebus.aio.AutoLockRenewercrashes on disposal if no messages have been registered (#19642). - Fixed a bug that
azure.servicebus.AutoLockReneweronly supports auto lock renewal formax_workersamount of messages/sessions at a time (#19362).
7.3.1 (2021-07-07)¶
Fixed¶
- Fixed a bug that when setting
ServiceBusMessage.partition_key, input value should be not validated againstsession_idof None (PR #19233, thanks @bishnu-shb). - Fixed a bug that setting
ServiceBusMessage.time_to_livecauses OverflowError error on Ubuntu 20.04. - Fixed a bug that
AmqpAnnotatedProperties.creation_timeandAmqpAnnotatedProperties.absolute_expiry_timeshould be calculated in the unit of milliseconds instead of seconds. - Updated uAMQP dependency to 1.4.1.
- Fixed a bug that attributes creation_time, absolute_expiry_time and group_sequence on MessageProperties should be compatible with integer types on Python 2.7.
7.3.0 (2021-06-08)¶
New Features
- Support for sending AMQP annotated message which allows full access to the AMQP message fields is now GA.
- Introduced new namespace
azure.servicebus.amqp. - Introduced new classes
azure.servicebus.amqp.AmqpMessageHeaderandazure.servicebus.amqp.AmqpMessagePropertiesfor accessing amqp header and properties.
Breaking Changes from 7.2.0b1
- Renamed and moved azure.servicebus.AMQPAnnotatedMessage to azure.servicebus.amqp.AmqpAnnotatedMessage.
- Renamed and moved azure.servicebus.AMQPMessageBodyType to azure.servicebus.amqp.AmqpMessageBodyType.
- AmqpAnnotatedMessage.header returns azure.servicebus.amqp.AmqpMessageHeader instead of uamqp.message.MessageHeader.
- AmqpAnnotatedMessage.properties returns azure.servicebus.amqp.AmqpMessageProperties instead of uamqp.message.MessageProperties.
- raw_amqp_message on ServiceBusMessage and ServiceBusReceivedMessage is now a read-only property instead of an instance variable.
Bug Fixes
- Fixed a bug that
ServiceBusReceiveriterator stops iteration after recovery from connection error (#18795).
7.2.0 (2021-05-13)¶
The preview features related to AMQPAnnotatedMessage introduced in 7.2.0b1 are not included in this version.
New Features
- Added support for using
azure.core.credentials.AzureNamedKeyCredentialas credential for authenticating the clients. - Support for using
azure.core.credentials.AzureSasCredentialas credential for authenticating the clients is now GA. ServiceBusAdministrationClient.update_*methods now accept keyword arguments to override the properties specified in the model instance.
Bug Fixes
- Fixed a bug where
update_queueandupdate_subscriptionmethods were mutating the propertiesforward_toandforward_dead_lettered_messages_toof the model instance when those properties are entities instead of full paths. - Improved the
repronServiceBusMessageandServiceBusReceivedMessageto show more meaningful text. - Updated uAMQP dependency to 1.4.0.
- Fixed memory leaks in the process of link attach where source and target cython objects are not properly deallocated (#15747).
- Improved management operation callback not to parse description value of non AMQP_TYPE_STRING type as string (#18361).
Notes
- Updated azure-core dependency to 1.14.0.
7.2.0b1 (2021-04-07)¶
New Features
- Added support for using
azure.core.credentials.AzureSasCredentialas credential for authenticating the clients. - Added support for sending AMQP annotated message which allows full access to the AMQP message fields.
-
azure.servicebus.AMQPAnnotatedMessageis now made public and could be instantiated for sending. - Added new enum class
azure.servicebus.AMQPMessageBodyTypeto represent the body type of the message message which includes: DATA: The body of message consists of one or more data sections and each section contains opaque binary data.SEQUENCE: The body of message consists of one or more sequence sections and each section contains an arbitrary number of structured data elements.VALUE: The body of message consists of one amqp-value section and the section contains a single AMQP value.- Added new property
body_typeonazure.servicebus.ServiceBusMessageandazure.servicebus.ReceivedMessagewhich returnsazure.servicebus.AMQPMessageBodyType.
7.1.1 (2021-04-07)¶
This version and all future versions will require Python 2.7 or Python 3.6+, Python 3.5 is no longer supported.
New Features
- Updated
forward_toandforward_dead_lettered_messages_toparameters increate_queue,update_queue,create_subscription, andupdate_subscriptionmethods on sync and asyncServiceBusAdministrationClientto accept entities as well, rather than only full paths. In the case that an entity is passed in, it is assumed that the entity exists within the same namespace used for constructing theServiceBusAdministrationClient.
Bug Fixes
- Updated uAMQP dependency to 1.3.0.
- Fixed bug that sending message of large size triggering segmentation fault when the underlying socket connection is lost (#13739, #14543).
- 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).
7.1.0 (2021-03-09)¶
This version will be the last version to officially support Python 3.5, future versions will require Python 2.7 or Python 3.6+.
New Features
- Updated the following methods so that lists and single instances of Mapping representations are accepted for corresponding strongly-typed object arguments (PR #14807, thanks @bradleydamato):
update_queue,update_topic,update_subscription, andupdate_ruleonServiceBusAdministrationClientaccept Mapping representations ofQueueProperties,TopicProperties,SubscriptionProperties, andRuleProperties, respectively.send_messagesandschedule_messageson both sync and async versions ofServiceBusSenderaccept a list of or single instance of Mapping representations ofServiceBusMessage.add_messageonServiceBusMessageBatchnow accepts a Mapping representation ofServiceBusMessage.
BugFixes
- Operations failing due to
uamqp.errors.LinkForceDetachcaused by no activity on the connection for 10 minutes will now be retried internally except for the session receiver case. uamqp.errors.AMQPConnectionErrorerrors with condition codeamqp:unknown-errorare now categorized intoServiceBusConnectionErrorinstead of the generalServiceBusError.- The
update_*methods onServiceBusManagementClientwill now raise aTypeErrorrather than anAttributeErrorin the case of unsupported input type.
7.0.1 (2021-01-12)¶
BugFixes
forward_toandforward_dead_lettered_messages_towill no longer cause authorization errors when used inServiceBusAdministrationClientfor queues and subscriptions (#15543).- Updated uAMQP dependency to 1.2.13.
- Fixed bug that macOS was unable to detect network error (#15473).
- Fixed bug that
uamqp.ReceiveClientanduamqp.ReceiveClientAsyncreceive messages during connection establishment (#15555). - Fixed bug where connection establishment on macOS with Clang 12 triggering unrecognized selector exception (#15567).
- Fixed bug in accessing message properties triggering segmentation fault when the underlying C bytes are NULL (#15568).
7.0.0 (2020-11-23)¶
Note: This is the GA release of the
azure-servicebuspackage, rolling out the official API surface area constructed over the prior preview releases. Users migrating fromv0.50are advised to view the migration guide.
New Features
sub_queueandreceive_modemay now be passed in as a valid string (as defined by their respective enum type) as well as their enum form when constructingServiceBusReceiver.- Added support for Distributed Tracing of send, receive, and schedule scenarios.
Breaking Changes
ServiceBusSenderandServiceBusReceiverare no longer reusable and will raiseValueErrorwhen trying to operate on a closed handler.- Rename
ReceiveModetoServiceBusReceiveModeandSubQueuetoServiceBusSubQueue, and convert their enum values from ints to human-readable strings. - Rename enum values
DeadLettertoDEAD_LETTER,TransferDeadLettertoTRANSFER_DEAD_LETTER,PeekLocktoPEEK_LOCKandReceiveAndDeletetoRECEIVE_AND_DELETEto conform to sdk guidelines going forward. send_messages,schedule_messages,cancel_scheduled_messagesandreceive_deferred_messagesnow performs a no-op rather than raising aValueErrorif provided an empty list of messages or an empty batch.ServiceBusMessage.amqp_annotated_messagehas been renamed toServiceBusMessage.raw_amqp_messageto normalize with other SDKs.- Redesigned error hierarchy based on the service-defined error condition:
MessageAlreadySettlednow inherits fromValueErrorinstead ofServiceBusMessageErroras it's a client-side validation.- Removed
NoActiveSessionwhich is now replaced byOperationTimeoutErroras the client times out when trying to connect to any available session. - Removed
ServiceBusMessageErroras error condition based exceptions provide comprehensive error information. - Removed
MessageSettleFailedas error condition based exceptions provide comprehensive error information. - Removed
MessageSendFailedas error condition based exceptions provide comprehensive error information. - Renamed
MessageContentTooLargetoMessageSizeExceededErrorto be consistent with the term defined by the service. - Renamed
MessageLockExpiredtoMessageLockLostErrorto be consistent with the term defined by the service. - Renamed
SessionLockExpiredtoSessionLockLostErrorto be consistent with the term defined by the service. - Introduced
MessageNotFoundErrorwhich would be raised when the requested message was not found. - Introduced
MessagingEntityNotFoundErrorwhich would be raised when a Service Bus resource cannot be found by the Service Bus service. - Introduced
MessagingEntityDisabledErrorwhich would be raised when the Messaging Entity is disabled. - Introduced
MessagingEntityAlreadyExistsErrorwhich would be raised when an entity with the same name exists under the same namespace. - Introduced
ServiceBusQuotaExceededErrorwhich would be raised when a Service Bus resource has been exceeded while interacting with the Azure Service Bus service. - Introduced
ServiceBusServerBusyErrorwhich would be raised when the Azure Service Bus service reports that it is busy in response to a client request to perform an operation. - Introduced
ServiceBusCommunicationErrorwhich would be raised when there was a general communications error encountered when interacting with the Azure Service Bus service. - Introduced
SessionCannotBeLockedErrorwhich would be raised when the requested session cannot be locked. - Introduced new client side validation on certain use cases:
ServiceBusMessagewill now raise aTypeErrorwhen provided an invalid body type. Valid bodies are strings, bytes, and None. Lists are no longer accepted, as they simply concatenated the contents prior.- An improper
receive_modevalue will now raiseValueErrorinstead ofTypeErrorin line with supporting extensible enums. - Setting
ServiceBusMessage.partition_keyto a value different thansession_idon the message instance now raisesValueError. ServiceBusClient.get_queue/topic_senderandServiceBusClient.get_queue/subscription_receiverwill now raiseValueErrorif thequeue_nameortopic_namedoes not match theEntityPathin the connection string used to construct theServiceBusClient.- Settling a message that has been peeked will raise
ValueError. - Settling a message or renewing a lock on a message received in
RECEIVE_AND_DELETEreceive mode will raiseValueError. - Setting
session_id,reply_to_session_id,message_idandpartition_keyonServiceBusMessagelonger than 128 characters will raiseValueError. ServiceBusReceiver.get_streaming_message_iterhas been made internal for the time being to assess use patterns before committing to back-compatibility; messages may still be iterated over in equivalent fashion by iterating on the receiver itself.
BugFixes
ServiceBusAdministrationClient.create_ruleby default now creates aTrueRuleFilterrule.- FQDNs and Connection strings are now supported even with strippable whitespace or protocol headers (e.g. 'sb://').
- Using parameter
auto_lock_reneweron a sessionful receiver alongsideReceiveMode.ReceiveAndDeletewill no longer fail during receipt due to failure to register the message with the renewer.
7.0.0b8 (2020-11-05)¶
New Features
- Added support for
timeoutparameter on the following operations: ServiceBusSender:send_messages,schedule_messagesandcancel_scheduled_messagesServiceBusReceiver:receive_deferred_messages,peek_messagesandrenew_message_lockServiceBusSession:get_state,set_stateandrenew_lockazure.servicebus.exceptions.ServiceBusErrornow inherits fromazure.core.exceptions.AzureError.- Added a
parse_connection_stringmethod which parses a connection string into a properties bag containing its component parts - Add support for
auto_lock_renewerparameter onget_queue_receiverandget_subscription_receivercalls to allow auto-registration of messages and sessions for auto-renewal.
Breaking Changes
- Renamed
AutoLockRenewtoAutoLockRenewer. - Removed class
ServiceBusSessionReceiverwhich is now unified within classServiceBusReceiver. - Removed methods
ServiceBusClient.get_queue_session_receiverandServiceBusClient.get_subscription_session_receiver. ServiceBusClient.get_queue_receiverandServiceBusClient.get_subscription_receivernow take keyword parametersession_idwhich must be set when getting a receiver for the sessionful entity.- The parameter
inner_exceptionthatServiceBusError.__init__takes is now renamed toerror. - Renamed
azure.servicebus.exceptions.MessageErrortoazure.servicebus.exceptions.ServiceBusMessageError - Removed error
azure.servicebus.exceptions.ServiceBusResourceNotFoundasazure.core.exceptions.ResourceNotFoundErroris now raised when a Service Bus resource does not exist when using theServiceBusAdministrationClient. - Renamed
MessagetoServiceBusMessage. - Renamed
ReceivedMessagetoServiceBusReceivedMessage. - Renamed
BatchMessagetoServiceBusMessageBatch. - Renamed method
addtoadd_messageon the class. - Removed class
PeekedMessage. - Removed class
ReceivedMessageunder moduleazure.servicebus.aio. - Renamed
ServiceBusSender.create_batchtoServiceBusSender.create_message_batch. - Exceptions
MessageSendFailed,MessageSettleFailedandMessageLockExpirednow inherit fromazure.servicebus.exceptions.ServiceBusMessageError. get_stateinServiceBusSessionnow returnsbytesinstead of astring.ServiceBusReceiver.receive_messages/get_streaming_message_iterandServiceBusClient.get_<queue/subscription>_receivernow raises ValueError if the givenmax_wait_timeis less than or equal to 0.- Message settlement methods are moved from
ServiceBusMessagetoServiceBusReceiver: - Use
ServiceBusReceiver.complete_messageinstead ofServiceBusReceivedMessage.completeto complete a message. - Use
ServiceBusReceiver.abandon_messageinstead ofServiceBusReceivedMessage.abandonto abandon a message. - Use
ServiceBusReceiver.defer_messageinstead ofServiceBusReceivedMessage.deferto defer a message. - Use
ServiceBusReceiver.dead_letter_messageinstead ofServiceBusReceivedMessage.dead_letterto dead letter a message. - Message settlement methods (
complete_message,abandon_message,defer_messageanddead_letter_message) and methods that use amqp management link for request likeschedule_messages,received_deferred_messages, etc. now raise more concrete exception other thanMessageSettleFailedandServiceBusError. - Message
renew_lockmethod is moved fromServiceBusMessagetoServiceBusReceiver: - Changed
ServiceBusReceivedMessage.renew_locktoServiceBusReceiver.renew_message_lock AutoLockRenewer.registernow takesServiceBusReceiveras a positional parameter.- Removed
encodingsupport fromServiceBusMessage. ServiceBusMessage.amqp_messagehas been renamed toServiceBusMessage.amqp_annotated_messagefor cross-sdk consistency.- All
nameparameters inServiceBusAdministrationClientare now precisely specified alaqueue_nameorrule_name ServiceBusMessage.via_partition_keyis no longer exposed, this is pending a full implementation of transactions as it has no external use. If needed, the underlying value can still be accessed inServiceBusMessage.amqp_annotated_message.annotations.ServiceBusMessage.propertieshas been renamed toServiceBusMessage.application_propertiesfor consistency with service verbiage.- Sub-client (
ServiceBusSenderandServiceBusReceiver)from_connection_stringinitializers have been made internal until needed. Clients should be initialized from rootServiceBusClient. ServiceBusMessage.labelhas been renamed toServiceBusMessage.subject.ServiceBusMessage.amqp_annotated_messagehas had its type renamed fromAMQPMessagetoAMQPAnnotatedMessageAutoLockRenewertimeoutparameter is renamed tomax_lock_renew_duration- Attempting to autorenew a non-renewable message, such as one received in
ReceiveAndDeletemode, or configure auto-autorenewal on aReceiveAndDeletereceiver, will raise aValueError. - The default value of parameter
max_message_countonServiceBusReceiver.receive_messagesis now1instead ofNoneand will raise ValueError if the given value is less than or equal to 0.
BugFixes
- Updated uAMQP dependency to 1.2.12.
- Added support for Python 3.9.
- Fixed bug where amqp message
footeranddelivery_annotationwere not encoded into the outgoing payload.
7.0.0b7 (2020-10-05)¶
Breaking Changes
- Passing any type other than
ReceiveModeas parameterreceive_modenow throws aTypeErrorinstead ofAttributeError. - Administration Client calls now take only entity names, not
<Entity>Descriptionsas 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.
7.0.0b6 (2020-09-10)¶
New Features
renew_lock()now returns the UTC datetime that the lock is set to expire at.receive_deferred_messages()can now take a single sequence number as well as a list of sequence numbers.- Messages can now be sent twice in succession.
- Connection strings used with
from_connection_stringmethods now support using theSharedAccessSignaturekey in leiu ofsharedaccesskeyandsharedaccesskeyname, taking the string of the properly constructed token as value. - Internal AMQP message properties (header, footer, annotations, properties, etc) are now exposed via
Message.amqp_message
Breaking Changes
- Renamed
prefetchtoprefetch_count. - Renamed
ReceiveSettleModeenum toReceiveMode, and respectively themodeparameter toreceive_mode. retry_total,retry_backoff_factorandretry_backoff_maxare now defined at theServiceBusClientlevel and inherited by senders and receivers created from it.- No longer export
NEXT_AVAILABLEinazure.servicebusmodule. A nullsession_idwill suffice. - Renamed parameter
message_counttomax_message_countas fewer messages may be present for methodpeek_messages()andreceive_messages(). - Renamed
PeekMessagetoPeekedMessage. - Renamed
get_session_state()andset_session_state()toget_state()andset_state()accordingly. - Renamed parameter
descriptiontoerror_descriptionfor methoddead_letter(). - Renamed properties
created_timeandmodified_timetocreated_at_utcandmodified_at_utcwithinAuthorizationRuleandNamespaceProperties. - Removed parameter
requires_preprocessingfromSqlRuleFilterandSqlRuleAction. - Removed property
namespace_typefromNamespaceProperties. - Rename
ServiceBusManagementClienttoServiceBusAdministrationClient - Attempting to call
send_messageson something not aMessage,BatchMessage, or list ofMessages, will now throw aTypeErrorinstead ofValueError - Sending a message twice will no longer result in a MessageAlreadySettled exception.
ServiceBusClient.close()now closes spawned senders and receivers.- Attempting to initialize a sender or receiver with a different connection string entity and specified entity (e.g.
queue_name) will result in an AuthenticationError - Remove
is_anonymous_accessiblefrom management entities. - Remove
support_orderingfromcreate_queueandQueueProperties - Remove
enable_subscription_partitioningfromcreate_topicandTopicProperties get_dead_letter_[queue,subscription]_receiver()has been removed. To connect to a dead letter queue, utilize thesub_queueparameter ofget_[queue,subscription]_receiver()provided with a value from theSubQueueenum- No longer export
ServiceBusSharedKeyCredential - Rename
entity_availability_statustoavailability_status
7.0.0b5 (2020-08-10)¶
New Features
- Added new properties to Message, PeekMessage and ReceivedMessage:
content_type,correlation_id,label,message_id,reply_to,reply_to_session_idandto. Please refer to the docstring for further information. - Added new properties to PeekMessage and ReceivedMessage:
enqueued_sequence_number,dead_letter_error_description,dead_letter_reason,dead_letter_source,delivery_countandexpires_at_utc. Please refer to the docstring for further information. - Added support for sending received messages via
ServiceBusSender.send_messages. - Added
on_lock_renew_failureas a parameter toAutoLockRenew.register, taking a callback for when the lock is lost non-intentially (e.g. not via settling, shutdown, or autolockrenew duration completion). - Added new supported value types int, float, datetime and timedelta for
CorrelationFilter.properties. - Added new properties
parametersandrequires_preprocessingtoSqlRuleFilterandSqlRuleAction. - Added an explicit method to fetch the continuous receiving iterator,
get_streaming_message_iter()such thatmax_wait_timecan be specified as an override.
Breaking Changes
- Removed/Renamed several properties and instance variables on Message (the changes applied to the inherited Message type PeekMessage and ReceivedMessage).
- Renamed property
user_propertiestoproperties- The original instance variable
propertieswhich represents the AMQP properties now becomes an internal instance variable_amqp_properties.
- The original instance variable
- Removed property
enqueue_sequence_number. - Removed property
annotations. - Removed instance variable
header. - Removed several properties and instance variables on PeekMessage and ReceivedMessage.
- Removed property
partition_idon both type. - Removed property
settledon both type. - Removed instance variable
received_timestamp_utcon both type. - Removed property
settledonPeekMessage. - Removed property
expiredonReceivedMessage. AutoLockRenew.sleep_timeandAutoLockRenew.renew_periodhave been made internal as_sleep_timeand_renew_periodrespectively, as it is not expected a user will have to interact with them.AutoLockRenew.shutdownis nowAutoLockRenew.closeto normalize with other equivalent behaviors.- Renamed
QueueDescription,TopicDescription,SubscriptionDescriptionandRuleDescriptiontoQueueProperties,TopicProperties,SubscriptionProperties, andRuleProperties. - Renamed
QueueRuntimeInfo,TopicRuntimeInfo, andSubscriptionRuntimeInfotoQueueRuntimeProperties,TopicRuntimeProperties, andSubscriptionRuntimeProperties. - Removed param
queuefromcreate_queue,topicfromcreate_topic,subscriptionfromcreate_subscriptionandrulefromcreate_ruleofServiceBusManagementClient. Added paramnameto them and keyword arguments for queue properties, topic properties, subscription properties and rule properties. - Removed model class attributes related keyword arguments from
update_queueandupdate_topicofServiceBusManagementClient. This is to encourage utilizing the model class instance instead as returned from a create_*, list_* or get_* operation to ensure it is properly populated. Properties may still be modified. - Model classes
QueueProperties,TopicProperties,SubscriptionPropertiesandRulePropertiesrequire all arguments to be present for creation. This is to protect against lack of partial updates by requiring all properties to be specified. - Renamed
idle_timeoutinget_<queue/subscription>_receiver()tomax_wait_timeto normalize with naming elsewhere. - Updated uAMQP dependency to 1.2.10 such that the receiver does not shut down when generator times out, and can be received from again.
7.0.0b4 (2020-07-06)¶
New Features
- Added support for management of topics, subscriptions, and rules.
receive_messages()(formerlyreceive()) now supports receiving a batch of messages (max_batch_size> 1) without the need to setprefetchparameter duringServiceBusReceiverinitialization.
BugFixes
- Fixed bug where sync
AutoLockRenewdoes not shutdown itself timely. - Fixed bug where async
AutoLockRenewdoes not support context manager.
Breaking Changes
- Renamed
receive(),peek()schedule()andsend()toreceive_messages(),peek_messages(),schedule_messages()andsend_messages()to align with other service bus SDKs. receive_messages()(formerlyreceive()) no longer raises aValueErrorifmax_batch_sizeis less than theprefetchparameter set duringServiceBusReceiverinitialization.
7.0.0b3 (2020-06-08)¶
New Features
- Added support for management of queue entities.
- Use
azure.servicebus.management.ServiceBusManagementClient(azure.servicebus.management.aio.ServiceBusManagementClientfor aio) to create, update, delete, list queues and get settings as well as runtime information of queues under a ServiceBus namespace.
- Use
- Added methods
get_queue_deadletter_receiverandget_subscription_deadletter_receiverinServiceBusClientto get aServiceBusReceiverfor the dead-letter sub-queue of the target entity.
BugFixes
- Updated uAMQP dependency to 1.2.8.
- Fixed bug where reason and description were not being set when dead-lettering messages.
7.0.0b2 (2020-05-04)¶
New Features
- Added method
get_topic_senderinServiceBusClientto get aServiceBusSenderfor a topic. - Added method
get_subscription_receiverinServiceBusClientto get aServiceBusReceiverfor a subscription under specific topic. - Added support for scheduling messages and scheduled message cancellation.
- Use
ServiceBusSender.schedule(messages, schedule_time_utc)for scheduling messages. - Use
ServiceBusSender.cancel_scheduled_messages(sequence_numbers)for scheduled messages cancellation.
- Use
ServiceBusSender.send()can now send a list of messages in one call, if they fit into a single batch. If they do not fit aValueErroris thrown.BatchMessage.add()andServiceBusSender.send()would raiseMessageContentTooLargeif the content is over-sized.ServiceBusReceiver.receive()raisesValueErrorif its parammax_batch_sizeis greater than paramprefetchofServiceBusClient.- Added exception classes
MessageError,MessageContentTooLarge,ServiceBusAuthenticationError. MessageError: when you send a problematic message, such as an already sent message or an over-sized message.MessageContentTooLarge: when you send an over-sized message. A subclass ofValueErrorandMessageError.ServiceBusAuthenticationError: on failure to be authenticated by the service.- Removed exception class
InvalidHandlerState.
BugFixes
- Fixed bug where http_proxy and transport_type in ServiceBusClient are not propagated into Sender/Receiver creation properly.
- Updated uAMQP dependency to 1.2.7.
- Fixed bug in setting certificate of tlsio on MacOS. #7201
- Fixed bug that caused segmentation fault in network tracing on MacOS when setting
logging_enabletoTrueinServiceBusClient.
Breaking Changes
- Session receivers are now created via their own top level functions, e.g.
get_queue_sesison_receiverandget_subscription_session_receiver. Non session receivers no longer take session_id as a paramter. ServiceBusSender.send()no longer takes a timeout parameter, as it should be redundant with retry options provided when creating the client.- Exception imports have been removed from module
azure.servicebus. Import fromazure.servicebus.exceptionsinstead. ServiceBusSender.schedule()has swapped the ordering of parametersschedule_time_utcandmessagesfor better consistency withsend()syntax.
7.0.0b1 (2020-04-06)¶
Version 7.0.0b1 is a preview of our efforts to create a client library that is user friendly and idiomatic to the Python ecosystem. The reasons for most of the changes in this update can be found in the Azure SDK Design Guidelines for Python. For more information, please visit https://aka.ms/azure-sdk-preview1-python. * Note: Not all historical functionality exists in this version at this point. Topics, Subscriptions, scheduling, dead_letter management and more will be added incrementally over upcoming preview releases.
New Features
- Added new configuration parameters when creating
ServiceBusClient.credential: The credential object used for authentication which implementsTokenCredentialinterface of getting tokens.http_proxy: A dictionary populated with proxy settings.- For detailed information about configuration parameters, please see docstring in
ServiceBusClientand/or the reference documentation for more information.
- Added support for authentication using Azure Identity credentials.
- Added support for retry policy.
- Added support for http proxy.
- Manually calling
reconnectshould no longer be necessary, it is now performed implicitly. - Manually calling
openshould no longer be necessary, it is now performed implicitly.- Note:
close()-ing is still required if a context manager is not used, to avoid leaking connections.
- Note:
- Added support for sending a batch of messages destined for heterogenous sessions.
Breaking changes
- Simplified API and set of clients
get_queueno longer exists, utilizeget_queue_sender/receiverinstead.peekand otherqueue_clientfunctions have moved to their respective sender/receiver.- Renamed
fetch_nexttoreceive. - Renamed
sessiontosession_idto normalize naming when requesting a receiver against a given session. reconnectno longer exists, and is performed implicitly if needed.openno longer exists, and is performed implicitly if needed.
- Normalized top level client parameters with idiomatic and consistent naming.
- Renamed
debuginServiceBusClientinitializer tologging_enable. - Renamed
service_namespaceinServiceBusClientinitializer tofully_qualified_namespace.
- Renamed
- New error hierarchy, with more specific semantics
azure.servicebus.exceptions.ServiceBusErrorazure.servicebus.exceptions.ServiceBusConnectionErrorazure.servicebus.exceptions.ServiceBusResourceNotFoundazure.servicebus.exceptions.ServiceBusAuthorizationErrorazure.servicebus.exceptions.NoActiveSessionazure.servicebus.exceptions.OperationTimeoutErrorazure.servicebus.exceptions.InvalidHandlerStateazure.servicebus.exceptions.AutoLockRenewTimeoutazure.servicebus.exceptions.AutoLockRenewFailedazure.servicebus.exceptions.EventDataSendErrorazure.servicebus.exceptions.MessageSendFailedazure.servicebus.exceptions.MessageLockExpiredazure.servicebus.exceptions.MessageSettleFailedazure.servicebus.exceptions.MessageAlreadySettledazure.servicebus.exceptions.SessionLockExpired
- BatchMessage creation is now initiated via
create_batchon a Sender, usingadd()on the batch to add messages, in order to enforce service-side max batch sized limitations. - Session is now set on the message itself, via
session_idparameter or property, as opposed to onSendorget_senderviasession. This is to allow sending a batch of messages destined to varied sessions. - Session management is now encapsulated within a property of a receiver, e.g.
receiver.session, to better compartmentalize functionality specific to sessions.- To use
AutoLockRenewagainst sessions, one would simply pass the inner session object, instead of the receiver itself.
- To use
0.50.2 (2019-12-09)¶
New Features
- Added support for delivery tag lock tokens
BugFixes
- Fixed bug where Message would pass through invalid kwargs on init when attempting to thread through subject.
- Increments UAMQP dependency min version to 1.2.5, to include a set of fixes, including handling of large messages and mitigation of segfaults.
0.50.1 (2019-06-24)¶
BugFixes
- Fixed bug where enqueued_time and scheduled_enqueue_time of message being parsed as local timestamp rather than UTC.
0.50.0 (2019-01-17)¶
Breaking changes
- Introduces new AMQP-based API.
- Original HTTP-based API still available under new namespace: azure.servicebus.control_client
- For full API changes, please see updated reference documentation.
Within the new namespace, the original HTTP-based API from version 0.21.1 remains unchanged (i.e. no additional features or bugfixes) so for those intending to only use HTTP operations - there is no additional benefit in updating at this time.
New Features
- New API supports message send and receive via AMQP with improved performance and stability.
- New asynchronous APIs (using
asyncio) for send, receive and message handling. - Support for message and session auto lock renewal via background thread or async operation.
- Now supports scheduled message cancellation.
0.21.1 (2017-04-27)¶
This wheel package is now built with the azure wheel extension
0.21.0 (2017-01-13)¶
New Features
strmessages are now accepted in Python 3 and will be encoded in 'utf-8' (will not raise TypeError anymore)broker_propertiescan now be defined as a dict, and not only a JSONstr. datetime, int, float and boolean are converted.-
902 add
send_topic_message_batchoperation (takes an iterable of messages)¶ -
902 add
send_queue_message_batchoperation (takes an iterable of messages)¶
Bugfixes
-
820 the code is now more robust to unexpected changes on the SB RestAPI¶
0.20.3 (2016-08-11)¶
News
Bugfixes
-
628 Fix custom properties with double quotes¶
0.20.2 (2016-06-28)¶
Bugfixes
- New header in Rest API which breaks the SDK #658 #657
0.20.1 (2015-09-14)¶
News
- Create a requests.Session() if the user doesn't pass one in.
0.20.0 (2015-08-31)¶
Initial release of this package, from the split of the azure package.
See the azure package release note for 1.0.0 for details and previous
history on Service Bus.