chore(amqp): stabilize azure_core_amqp 1.1.0 release#4719
Draft
j7nw4r wants to merge 1 commit into
Draft
Conversation
Release azure_core_amqp 1.1.0 from the 1.1.0-beta.1 pre-release and repoint azure_messaging_eventhubs and azure_messaging_servicebus at the published version. Unblocks those crates from depending on a pre-release core ahead of their own 1.0 releases.
j7nw4r
force-pushed
the
j7nw4r/prepare-azure-core-amqp-1.1.0
branch
from
July 8, 2026 21:49
72dab76 to
04dbb7a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Stabilizes
azure_core_amqpfrom the1.1.0-beta.1pre-release to a published1.1.0release, and repointsazure_messaging_eventhubsandazure_messaging_servicebusat the released version.Motivation
azure_messaging_eventhubsandazure_messaging_servicebusare currently pinned to the unreleasedazure_core_amqp1.1.0-beta.1solely forAmqpSessionOptions::with_unbounded_windows, added in #4575 (issue #4570).A stable 1.0 crate cannot depend on a pre-release dependency, so this pin blocks the Event Hubs (and Service Bus) 1.0 release.
The
1.1.0-beta.1delta over the shipped1.0.0is exactly that one additive helper, so it can be released as1.1.0without further changes.Changes
sdk/core/azure_core_amqp/Cargo.toml: bumpversionfrom1.1.0-beta.1to1.1.0.sdk/core/azure_core_amqp/CHANGELOG.md: change the top heading from## 1.1.0-beta.1 (Unreleased)to## 1.1.0 (2026-07-08), leaving its entries intact.sdk/eventhubs/azure_messaging_eventhubs/Cargo.toml: update theazure_core_amqpdependency version to1.1.0in both[dependencies]and[dev-dependencies], keeping thepathdependency, and update the explanatory comment to reference the released version.sdk/servicebus/azure_messaging_servicebus/Cargo.toml: same treatment asazure_messaging_eventhubs.