Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency azure-servicebus to v7.12.3 #76

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 7, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
azure-servicebus ==7.8.2 -> ==7.12.3 age adoption passing confidence

Release Notes

Azure/azure-sdk-for-python (azure-servicebus)

v7.12.3

Compare Source

7.12.3 (2024-09-19)

Bugs Fixed
  • Fixed a bug where token refreshes were not happening on long running operations (35717)
  • Fixed a bug where using TokenCredential to create a subscription with forwarding caused a ResourceNotFoundError (36545)
  • Fixed a bug where messages received on one receiver could not be settled on another receiver over mgmt link (35304)
  • Addressed a bug where excess Link Credits were being allocated when large messages were being received (34270)

v7.12.2

Compare Source

7.12.2 (2024-05-08)

Bugs Fixed
  • Fixed a bug where WebsocketConnectionClosedException was not being caught when receiving with AmqpOverWebsocket (34859)
  • Fixed incorrect dependency on typing-extensions (34869, thanks @​YaroBear).

v7.12.1

Compare Source

7.12.1 (2024-03-20)

Bugs Fixed
  • Fixed a bug where the client was not retrying when a connection drop happened (34786)
  • Fixed a bug where the client would not handle a role instance swap on the service correctly (34820)
Other Changes
  • Updated the logging to more accurately represent when frames are being sent to prevent a client-side idle timeout (#​34793).

v7.12.0

Compare Source

7.12.0 (2024-03-06)

Features Added
  • Updated max_wait_time on the ServiceBusReceiver constructor allowing users to change the default server timeout of 65 seconds when accepting a session on a Session-Enabled/Queues/Topics if NEXT_AVAILABLE_SESSION is used.
Other Changes
  • Updated minimum azure-core version to 1.28.0.
  • Updated Pure Python AMQP network trace logging to replace None values in AMQP connection info with empty strings as per the OpenTelemetry specification (#​32190).
  • Updated Pure Python AMQP network trace logging error log on connection close to warning (PR #​34504, thanks @​RichardOberdieck).

v7.11.4

Compare Source

7.11.4 (2023-11-13)

Bugs Fixed
  • Fixed a bug where a two character count session id was being incorrectly parsed by azure amqp.

v7.11.3

Compare Source

7.11.3 (2023-10-11)

Bugs Fixed
  • Fixed a bug where prefetch_count was not being passed through correctly and caused messages to not be received as expected when in RECEIVE_AND_DELETE mode (#​31712, #​31711).

v7.11.2

Compare Source

7.11.2 (2023-09-13)

Bugs Fixed
  • Fixed the error NoneType object has no attribute 'settle_messages' which was raised when a connection was dropped due to a blocked process (#​30514)
Other Changes
  • The __contains__ method was added to azure.servicebus for the following (PR #​30846, thanks @​pamelafox).
    • ServiceBusConnectionStringProperties
    • amqp.AmqpMessageHeader
    • amqp.AmqpMessageProperties
    • management.AccessRights
    • management.NamespaceProperties
    • management.QueueProperties
    • management.TopicProperties
    • management.SubscriptionProperties
    • management.RuleProperties

v7.11.1

Compare Source

7.11.1 (2023-07-12)

Bugs Fixed
  • Fixed the error end frame received on invalid channel which was raised when a disconnect was sent by the service (#​30860)
  • Fixed the error link already closed which was raised when the client was closing and disconnecting from the service (#​30836)
Other Changes
  • The error raised when attempting to complete a message with an expired lock received from a non-sessionful entity has been updated to the more fine-grained MessageLockLostError from the superclass ServiceBusError.

v7.11.0

Compare Source

7.11.0 (2023-06-06)

Features Added
  • A new float keyword argument socket_timeout has been added to get_queue_sender, get_queue_receiver, get_topic_sender, and get_subscription_receiver on the sync and async ServiceBusClient.
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_id being None.
Other Changes
  • Tracing updates:
    • Span links on receive/send spans now fall back to using Diagnostic-Id if the traceparent message 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 component attribute was removed from all spans.

v7.10.0

Compare Source

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_transport has been added to sync and async ServiceBusClient constructors which indicates whether to use the uamqp library or the default pure Python AMQP library as the underlying transport.
Bugs Fixed
  • Fixed a bug where sync and async ServiceBusAdministrationClient expected credential with get_token method returning AccessToken.token of type bytes and not str, now matching the documentation.
  • Fixed a bug where raw_amqp_message.header and message.header properties on ServiceReceivedBusMessage were returned with durable, first_acquirer, and priority properties set by default, rather than the values returned by the service.
  • Fixed a bug where ServiceBusReceivedMessage was not picklable (Issue #​27947).
Other Changes
  • The message attribute on ServiceBus/ServiceBusMessageBatch/ServiceBusReceivedMessage, which previously exposed the uamqp.Message/uamqp.BatchMessage, has been deprecated.
    • LegacyMessage/LegacyBatchMessage objects returned by the message attribute on ServiceBus/ServiceBusMessageBatch have been introduced to help facilitate the transition.
  • Removed uAMQP from required dependencies.
  • Adding uamqp >= 1.6.3 as an optional dependency for use with the uamqp_transport keyword.
  • 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, or settle)
      • 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, and messaging.operation attributes.
    • All send spans now contain links to message spans. Now, message spans will no longer contain a link to the send span.

v7.9.0

Compare Source

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.

v7.8.3

Compare Source

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).

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@JinIgarashi
Copy link
Contributor

currently cannot upgrade servicebus dependency

@JinIgarashi JinIgarashi closed this Oct 7, 2024
Copy link
Contributor Author

renovate bot commented Oct 7, 2024

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (==7.12.3). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/azure-servicebus-7.x branch October 7, 2024 08:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant