Skip to content

chore(deps): bump the azure group across 1 directory with 3 updates#24701

Open
dependabot[bot] wants to merge 2 commits intomasterfrom
dependabot/cargo/azure-b11866f451
Open

chore(deps): bump the azure group across 1 directory with 3 updates#24701
dependabot[bot] wants to merge 2 commits intomasterfrom
dependabot/cargo/azure-b11866f451

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Feb 20, 2026

Bumps the azure group with 3 updates in the / directory: azure_core, azure_identity and azure_storage_blob.

Updates azure_core from 0.30.1 to 0.32.0

Release notes

Sourced from azure_core's releases.

azure_core@0.32.0

0.32.0 (2026-02-10)

Features Added

  • Added PagerContinuation for Pager continuation.
  • Added PollerContinuation for Poller continuation.

Breaking Changes

  • Changed our minimum supported Rust version (MSRV) from 1.85 to 1.88.
  • Changed paging APIs to use PagerContinuation and non-generic PagerState/PagerResult types.
  • Changed polling APIs to use PollerContinuation and non-generic PollerState/PollerResult types.
  • Renamed PagerOptions::continuation_token to continuation.
  • Renamed Pager::continuation_token to continuation.
  • Renamed Pager::into_continuation_token to into_continuation.
  • Renamed PageIterator::continuation_token to continuation.
  • Renamed PageIterator::into_continuation_token to into_continuation.
  • Pager callbacks must now return Result.

azure_core@0.31.0

0.31.0 (2026-01-16)

Features Added

  • Added Body::take().
  • Added continuation_token to PagerOptions.
  • Added extensible request authorization and authentication challenge handling to BearerTokenAuthorizationPolicy.
    • OnRequest, OnChallenge, and Authorizer traits define callbacks for these features.
    • with_on_request() and with_on_challenge() builder methods set callbacks for a policy instance.
  • Added Request::body_mut().
  • Added UrlExt::set_query_pair() to simplify overwriting query parameter key values.
  • Sort query parameters lexicographically in QueryBuilder.

Breaking Changes

  • Added type parameter C to Pager declaration, defaulting to Url so it can be elided in most existing declarations.
  • Changed Pager::from_callback to take a PagerOptions as the second parameter rather than a Context parameter.
  • Changed Pager::from_callback to Pager::new which now requires the caller to return a Pin<Box<dyn Future>>.
  • Changed Poller::from_callback to Poller::new which now requires the caller to return a Pin<Box<dyn Future>>.
  • Changed PollerResult::next field to PollerResult::continuation_token.
  • Changed PollerState generic parameter from N to C.
  • Moved BearerTokenAuthorizationPolicy into azure_core::http::policies::auth.
  • Removed ItemIterator::with_continuation_token(). Pass a continuation token to PagerOptions::continuation_token instead.
  • Removed PageIterator::with_continuation_token(). Pass a continuation token to PagerOptions::continuation_token instead.
  • Removed Pager::from_stream.
  • Removed Poller::from_stream.
  • Renamed BoxedFuture to PagerResultFuture in pager module.
Commits
  • 46bc555 Prepare for azure_core@0.32.0 release (#3705)
  • 85efdf0 cargo audit: set severity_threshold to "critical" (#3703)
  • e511601 Parse JSON from azd stderr to clean up AzureDeveloperCliCredential error mess...
  • 837c664 [Storage] Removing thick convenience layer for azure_storage_blob crate (#3...
  • 1be108d Try to get Copilot coding agent to summarize PRs (#3702)
  • 3a02239 Update the emitter to 0.34.0 (#3701)
  • 463679b Add azure_core and typespec_client_core when Cargo.lock is changed (#3695)
  • be25782 Disable the APIView generation tool (#3693)
  • 6674028 Simplify continuation for Pagers and Poller (#3670)
  • e4e7453 Update reqwest to fix http2 feature issue (#3691)
  • Additional commits viewable in compare view

Updates azure_identity from 0.30.0 to 0.32.0

Release notes

Sourced from azure_identity's releases.

azure_identity@0.32.0

0.32.0 (2026-02-11)

Breaking Changes

  • Changed our minimum supported Rust version (MSRV) from 1.85 to 1.88.

Bugs Fixed

  • Removed redundant content and extraneous JSON from Azure[Developer]CliCredential error messages

azure_identity@0.31.0

0.31.0 (2026-01-21)

Breaking Changes

  • Removed unused additionally_allowed_tenants and disable_instance_discovery options for AzureCliCredential and ClientAssertionCredential.
  • Changed the type of the certificate parameter of ClientCertificateCredential::new() from impl Into<Secret> to Secret.
Commits
  • a1709d1 Prepare azure_identity 0.32.0 for release (#3706)
  • 64ac0a5 Tell dependabot to ignore npm packages in eng/common (#3688)
  • 46bc555 Prepare for azure_core@0.32.0 release (#3705)
  • 85efdf0 cargo audit: set severity_threshold to "critical" (#3703)
  • e511601 Parse JSON from azd stderr to clean up AzureDeveloperCliCredential error mess...
  • 837c664 [Storage] Removing thick convenience layer for azure_storage_blob crate (#3...
  • 1be108d Try to get Copilot coding agent to summarize PRs (#3702)
  • 3a02239 Update the emitter to 0.34.0 (#3701)
  • 463679b Add azure_core and typespec_client_core when Cargo.lock is changed (#3695)
  • be25782 Disable the APIView generation tool (#3693)
  • Additional commits viewable in compare view

Updates azure_storage_blob from 0.7.0 to 0.9.0

Release notes

Sourced from azure_storage_blob's releases.

azure_storage_blob@0.9.0

0.9.0 (2026-02-11)

Features Added

  • Added support for stage_block_from_url to BlockBlobClient.
  • Added navigation method BlobServiceClient::blob_client().

Breaking Changes

  • Changed our minimum supported Rust version (MSRV) from 1.85 to 1.88.
  • Renamed BlobItemInternal to BlobItem.
  • Renamed BlobPropertiesInternal to BlobProperties.
  • Renamed BlobContainerClient::create_container() to create().
  • Renamed BlobContainerClient::delete_container() to delete().
  • Renamed PageBlobClient::upload_page() to upload_pages().
  • Renamed PageBlobClient::clear_page() to clear_pages().
  • Renamed BlobContainerClientListBlobFlatSegmentOptions to BlobContainerClientListBlobsOptions.
  • Renamed BlobServiceClientListContainersSegmentOptions to BlobServiceClientListContainersOptions.
  • Renamed BlobContainerClientCreateContainerOptions to BlobContainerClientCreateOptions.
  • Renamed BlobContainerClientDeleteContainerOptions to BlobContainerClientDeleteOptions.
  • Removed BlobServiceClient::from_url().
  • Changed BlobClient's set_metadata parameter metadata type from HashMap<String, String> to &HashMap<String, String>.
  • Changed BlobContainerClient's set_metadata parameter metadata type from HashMap<String, String> to &HashMap<String, String>.

azure_storage_blob@0.8.0

0.8.0 (2026-01-21)

Features Added

  • Added support for set_access_policy to BlobContainerClient.
  • Added support for get_access_policy to BlobContainerClient.
  • Added support for set_legal_hold to BlobClient.
  • Added support for set_immutability_policy to BlobClient.
  • Added support for delete_immutability_policy to BlobClient.
  • Added support for undelete to BlobClient.
  • Added snapshot and versioning support for blobs with convenience methods with_snapshot and with_version to BlobClient.

Breaking Changes

  • Changed conversion implementation from BlobTags to HashMap<String, String> from TryFrom to From.
  • Added continuation_token to PagerOptions for methods that return a Pager.
  • Renamed content_length to size for PageBlobClient's create() method.
  • Removed Pager::with_continuation_token() for methods that return a Pager.
  • Changed BlobClient's set_tags parameter tags type from HashMap<String, String> to RequestContent<BlobTags, XmlFormat>.
Commits
  • 3b95081 [Storage] Prep azure_storage_blob for v0.9.0 release and `azure_storage_q...
  • 487fc58 Prepare for keyvault release on azure_core@0.32.0 (#3708)
  • 96b4303 Increment versions for identity releases (#3719)
  • d36ef95 Cosmos: Fix LocationCache::refresh_endpoints() To Clear Write and Read Endp...
  • 9927324 [Storage] Align azure_storage_queue with Blobs + SAS support (#3698)
  • ad1ac5a Fault Injection (#3599)
  • a1709d1 Prepare azure_identity 0.32.0 for release (#3706)
  • 64ac0a5 Tell dependabot to ignore npm packages in eng/common (#3688)
  • 46bc555 Prepare for azure_core@0.32.0 release (#3705)
  • 85efdf0 cargo audit: set severity_threshold to "critical" (#3703)
  • Additional commits viewable in compare view

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the azure group with 3 updates in the / directory: [azure_core](https://github.com/azure/azure-sdk-for-rust), [azure_identity](https://github.com/azure/azure-sdk-for-rust) and [azure_storage_blob](https://github.com/azure/azure-sdk-for-rust).


Updates `azure_core` from 0.30.1 to 0.32.0
- [Release notes](https://github.com/azure/azure-sdk-for-rust/releases)
- [Commits](https://github.com/azure/azure-sdk-for-rust/compare/azure_core@0.30.1...azure_core@0.32.0)

Updates `azure_identity` from 0.30.0 to 0.32.0
- [Release notes](https://github.com/azure/azure-sdk-for-rust/releases)
- [Commits](https://github.com/azure/azure-sdk-for-rust/compare/azure_identity@0.30.0...azure_identity@0.32.0)

Updates `azure_storage_blob` from 0.7.0 to 0.9.0
- [Release notes](https://github.com/azure/azure-sdk-for-rust/releases)
- [Commits](https://github.com/azure/azure-sdk-for-rust/compare/azure_storage_blob@0.7.0...azure_storage_blob@0.9.0)

---
updated-dependencies:
- dependency-name: azure_core
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: azure
- dependency-name: azure_identity
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: azure
- dependency-name: azure_storage_blob
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: azure
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added domain: deps Anything related to Vector's dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog labels Feb 20, 2026
@dependabot dependabot bot requested a review from a team as a code owner February 20, 2026 14:11
@dependabot dependabot bot added domain: deps Anything related to Vector's dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog labels Feb 20, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

domain: deps Anything related to Vector's dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant