chore(deps): update rust crate futures-util to v0.3.32 #60

Open
renovate-bot wants to merge 1 commit from renovate/rust-futures-monorepo into master
Member

This PR contains the following updates:

Package Type Update Change
futures-util (source) dependencies patch 0.3.30 -> 0.3.32

Release Notes

rust-lang/futures-rs (futures-util)

v0.3.32

Compare Source

  • Bump MSRV of utility crates to 1.71. (#​2989)
  • Soft-deprecate ready! macro in favor of std::task::ready! added in Rust 1.64 (#​2925)
  • Soft-deprecate pin_mut! macro in favor of std::pin::pin! added in Rust 1.68 (#​2929)
  • Add FuturesOrdered::clear (#​2927)
  • Add mpsc::*Receiver::recv (#​2947)
  • Add mpsc::*Receiver::try_recv and deprecate mpsc::*Receiver::::try_next (#​2944)
  • Implement FusedStream for sink::With (#​2948)
  • Add no_std support for shared (#​2868)
  • Make Mutex::new() const (#​2956)
  • Add #[clippy::has_significant_drop] to guards (#​2967)
  • Remove dependency to pin-utils (#​2929)
  • Remove dependency on num_cpus (#​2946)
  • Performance improvements (#​2983)
  • Documentation improvements (#​2925, #​2926, #​2940, #​2971)

v0.3.31

Compare Source

  • Fix use after free of task in FuturesUnordered when dropped future panics (#​2886)
  • Fix soundness bug in task::waker_ref (#​2830)
    This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#​2884)
  • Fix parsing issue in select!/select_biased! (#​2832)
    This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#​2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#​2875)
  • Add future::AlwaysReady (#​2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#​2848)

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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [futures-util](https://rust-lang.github.io/futures-rs) ([source](https://github.com/rust-lang/futures-rs)) | dependencies | patch | `0.3.30` -> `0.3.32` | --- ### Release Notes <details> <summary>rust-lang/futures-rs (futures-util)</summary> ### [`v0.3.32`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0332---2026-02-15) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.31...0.3.32) - Bump MSRV of utility crates to 1.71. ([#&#8203;2989](https://github.com/rust-lang/futures-rs/issues/2989)) - Soft-deprecate `ready!` macro in favor of `std::task::ready!` added in Rust 1.64 ([#&#8203;2925](https://github.com/rust-lang/futures-rs/issues/2925)) - Soft-deprecate `pin_mut!` macro in favor of `std::pin::pin!` added in Rust 1.68 ([#&#8203;2929](https://github.com/rust-lang/futures-rs/issues/2929)) - Add `FuturesOrdered::clear` ([#&#8203;2927](https://github.com/rust-lang/futures-rs/issues/2927)) - Add `mpsc::*Receiver::recv` ([#&#8203;2947](https://github.com/rust-lang/futures-rs/issues/2947)) - Add `mpsc::*Receiver::try_recv` and deprecate `mpsc::*Receiver::::try_next` ([#&#8203;2944](https://github.com/rust-lang/futures-rs/issues/2944)) - Implement `FusedStream` for `sink::With` ([#&#8203;2948](https://github.com/rust-lang/futures-rs/issues/2948)) - Add `no_std` support for `shared` ([#&#8203;2868](https://github.com/rust-lang/futures-rs/issues/2868)) - Make `Mutex::new()` const ([#&#8203;2956](https://github.com/rust-lang/futures-rs/issues/2956)) - Add `#[clippy::has_significant_drop]` to guards ([#&#8203;2967](https://github.com/rust-lang/futures-rs/issues/2967)) - Remove dependency to `pin-utils` ([#&#8203;2929](https://github.com/rust-lang/futures-rs/issues/2929)) - Remove dependency on `num_cpus` ([#&#8203;2946](https://github.com/rust-lang/futures-rs/issues/2946)) - Performance improvements ([#&#8203;2983](https://github.com/rust-lang/futures-rs/issues/2983)) - Documentation improvements ([#&#8203;2925](https://github.com/rust-lang/futures-rs/issues/2925), [#&#8203;2926](https://github.com/rust-lang/futures-rs/issues/2926), [#&#8203;2940](https://github.com/rust-lang/futures-rs/issues/2940), [#&#8203;2971](https://github.com/rust-lang/futures-rs/issues/2971)) ### [`v0.3.31`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0331---2024-10-05) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.30...0.3.31) - Fix use after free of task in `FuturesUnordered` when dropped future panics ([#&#8203;2886](https://github.com/rust-lang/futures-rs/issues/2886)) - Fix soundness bug in `task::waker_ref` ([#&#8203;2830](https://github.com/rust-lang/futures-rs/issues/2830)) This is a breaking change but allowed because it is soundness bug fix. - Fix bugs in `AsyncBufRead::read_line` and `AsyncBufReadExt::lines` ([#&#8203;2884](https://github.com/rust-lang/futures-rs/issues/2884)) - Fix parsing issue in `select!`/`select_biased!` ([#&#8203;2832](https://github.com/rust-lang/futures-rs/issues/2832)) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted. - Work around issue due to upstream `Waker::will_wake` change ([#&#8203;2865](https://github.com/rust-lang/futures-rs/issues/2865)) - Add `stream::Iter::{get_ref,get_mut,into_inner}` ([#&#8203;2875](https://github.com/rust-lang/futures-rs/issues/2875)) - Add `future::AlwaysReady` ([#&#8203;2825](https://github.com/rust-lang/futures-rs/issues/2825)) - Relax trait bound on non-constructor methods of `io::{BufReader,BufWriter}` ([#&#8203;2848](https://github.com/rust-lang/futures-rs/issues/2848)) </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMy4yIiwidXBkYXRlZEluVmVyIjoiNDIuNTIuOCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS1ib3QiXX0=-->
renovate-bot changed title from fix(deps): update rust crate futures-util to v0.3.31 to chore(deps): update rust crate futures-util to v0.3.31 2025-09-15 05:13:41 +05:30
renovate-bot force-pushed renovate/rust-futures-monorepo from 7a502e93aa to 42b92350c5 2026-02-16 05:10:08 +05:30 Compare
renovate-bot changed title from chore(deps): update rust crate futures-util to v0.3.31 to chore(deps): update rust crate futures-util to v0.3.32 2026-02-16 05:10:09 +05:30
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/rust-futures-monorepo:renovate/rust-futures-monorepo
git switch renovate/rust-futures-monorepo

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff renovate/rust-futures-monorepo
git switch renovate/rust-futures-monorepo
git rebase master
git switch master
git merge --ff-only renovate/rust-futures-monorepo
git switch renovate/rust-futures-monorepo
git rebase master
git switch master
git merge --no-ff renovate/rust-futures-monorepo
git switch master
git merge --squash renovate/rust-futures-monorepo
git switch master
git merge --ff-only renovate/rust-futures-monorepo
git switch master
git merge renovate/rust-futures-monorepo
git push origin master
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
ForgeFlux/ftest!60
No description provided.