Skip to content

fix(deps): update all non-major dependencies#110

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch
Feb 27, 2026
Merged

fix(deps): update all non-major dependencies#110
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 7, 2025

This PR contains the following updates:

Package Type Update Change
azure_core dependencies minor 0.29.00.32.0
azure_identity dependencies minor 0.29.00.32.0
env_logger dev-dependencies patch 0.11.80.11.9
log dependencies patch 0.4.280.4.29
openssl dependencies patch 0.10.740.10.75
tempfile (source) dev-dependencies minor 3.23.03.26.0
thiserror dependencies patch 2.0.172.0.18
tokio (source) dependencies minor 1.48.01.49.0
url dependencies patch 2.5.72.5.8

Release Notes

azure/azure-sdk-for-rust (azure_core)

v0.32.0

Compare Source

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

v0.31.0

Compare Source

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.

v0.30.1

Compare Source

0.30.1 (2025-11-09)

Other Changes
  • Increment version for re-release following a fix to publishing.

v0.30.0

Compare Source

0.30.0 (2025-11-11)

Features Added
  • A get_token() error caused by an HTTP response carries that response. See the troubleshooting guide for example code showing how to access the response.
Breaking Changes
  • ClientCertificateCredential::new():
    • client_certificate parameter is now certificate
    • client_certificate_password parameter is now password: Option<azure_core::credentials::Secret> in ClientCertificateCredentialOptions
    • now returns an error when the given certificate can't be parsed
  • Removed ClientCertificateCredentialOptions.send_certificate_chain. Set environment variable AZURE_CLIENT_SEND_CERTIFICATE_CHAIN to "1" or "true" to enable this feature.
Bugs Fixed
  • ClientCertificateCredential::get_token() returned an error when given multiple scopes.
  • ManagedIdentityCredential didn't follow IMDS retry guidance.
rust-cli/env_logger (env_logger)

v0.11.9

Compare Source

rust-lang/log (log)

v0.4.29

Compare Source

rust-openssl/rust-openssl (openssl)

v0.10.75

Compare Source

What's Changed
New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.74...openssl-v0.10.75

Stebalien/tempfile (tempfile)

v3.26.0

v3.25.0

  • Allow getrandom 0.4.x while retaining support for getrandom 0.3.x.

v3.24.0

Compare Source

  • Actually support WASIp2 without the nightly feature. This library is now feature complete on WASIp2 without any additional feature flags.
  • Exclude CI scripts from the published crate.
dtolnay/thiserror (thiserror)

v2.0.18

Compare Source

tokio-rs/tokio (tokio)

v1.49.0: Tokio v1.49.0

Compare Source

1.49.0 (January 3rd, 2026)

Added
  • net: add support for TCLASS option on IPv6 (#​7781)
  • runtime: stabilize runtime::id::Id (#​7125)
  • task: implement Extend for JoinSet (#​7195)
  • task: stabilize the LocalSet::id() (#​7776)
Changed
  • net: deprecate {TcpStream,TcpSocket}::set_linger (#​7752)
Fixed
  • macros: fix the hygiene issue of join! and try_join! (#​7766)
  • runtime: revert "replace manual vtable definitions with Wake" (#​7699)
  • sync: return TryRecvError::Disconnected from Receiver::try_recv after Receiver::close (#​7686)
  • task: remove unnecessary trait bounds on the Debug implementation (#​7720)
Unstable
  • fs: handle EINTR in fs::write for io-uring (#​7786)
  • fs: support io-uring with tokio::fs::read (#​7696)
  • runtime: disable io-uring on EPERM (#​7724)
  • time: add alternative timer for better multicore scalability (#​7467)
Documented
  • docs: fix a typos in bounded.rs and park.rs (#​7817)
  • io: add SyncIoBridge cross-references to copy and copy_buf (#​7798)
  • io: doc that AsyncWrite does not inherit from std::io::Write (#​7705)
  • metrics: clarify that num_alive_tasks is not strongly consistent (#​7614)
  • net: clarify the cancellation safety of the TcpStream::peek (#​7305)
  • net: clarify the drop behavior of unix::OwnedWriteHalf (#​7742)
  • net: clarify the platform-dependent backlog in TcpSocket docs (#​7738)
  • runtime: mention LocalRuntime in new_current_thread docs (#​7820)
  • sync: add missing period to mpsc::Sender::try_send docs (#​7721)
  • sync: clarify the cancellation safety of oneshot::Receiver (#​7780)
  • sync: improve the docs for the errors of mpsc (#​7722)
  • task: add example for spawn_local usage on local runtime (#​7689)
servo/rust-url (url)

v2.5.8

Compare Source


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@renovate renovate bot enabled auto-merge (squash) November 7, 2025 19:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from db4c779 to 79db649 Compare November 8, 2025 02:40
@renovate renovate bot requested a review from maxdymond November 8, 2025 02:40
@renovate renovate bot changed the title chore(deps): update rust crate openssl to v0.10.75 fix(deps): update all non-major dependencies Nov 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from fd559fb to 4a38ba8 Compare November 14, 2025 17:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4a38ba8 to 84e3c20 Compare December 3, 2025 04:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 84e3c20 to 73ad346 Compare December 24, 2025 02:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 25812cf to 1a57134 Compare January 6, 2026 01:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 0fc9929 to 5bf93ad Compare January 21, 2026 18:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 798132e to 6996ca1 Compare February 9, 2026 19:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from e7e2eed to f0e3136 Compare February 11, 2026 22:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a5fc6cf to e27f3c8 Compare February 25, 2026 09:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e27f3c8 to d91ae14 Compare February 26, 2026 16:19
@renovate renovate bot merged commit d491319 into main Feb 27, 2026
8 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch February 27, 2026 08:52
@github-actions
Copy link

🎉 This PR is included in version 1.0.16 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant