Update Rust crate futures-util to 0.3.29 - abandoned #8

Closed
pierre wants to merge 1 commits from renovate/futures-util-0.x into master
Owner

This PR contains the following updates:

Package Type Update Change
futures-util (source) dependencies patch 0.3.21 -> 0.3.29

Release Notes

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

v0.3.29

Compare Source

  • Add TryStreamExt::try_ready_chunks (#​2757)
  • Add TryStreamExt::{try_all,try_any} (#​2783)
  • Add UnboundedSender::{len,is_empty} (#​2750)
  • Fix Sync impl of FuturesUnordered (#​2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#​2785)
  • Fix build error with -Z minimal-versions (#​2761)

v0.3.28

Compare Source

v0.3.27

Compare Source

v0.3.26

Compare Source

  • Add Either::as_pin_mut and Either::as_pin_ref (#​2691)
  • Add Shared::ptr_eq and Shared::ptr_hash (#​2691)
  • Implement FusedStream for Buffered (#​2676)
  • Implement FusedStream for all streams in ReadyChunks (#​2693)
  • Fix bug in FuturesOrdered::push_front (#​2664)
  • Remove Fut::Output: Clone bounds from some Shared methods (#​2662)
  • Remove T: Debug bounds from Debug implementations of mpsc and oneshot types (#​2666, #​2667)

v0.3.25

Compare Source

  • Fix soundness issue in join! and try_join! macros (#​2649)
  • Implement Clone for sink::Drain (#​2650)

v0.3.24

Compare Source

  • Fix incorrect termination of select_with_strategy streams (#​2635)

v0.3.23

Compare Source

  • Work around MSRV increase due to a cargo bug.

v0.3.22

Compare Source

  • Fix Sync impl of BiLockGuard (#​2570)
  • Fix partial iteration in FuturesUnordered (#​2574)
  • Fix false detection of inner panics in Shared (#​2576)
  • Add Mutex::lock_owned and Mutex::try_lock_owned (#​2571)
  • Add io::copy_buf_abortable (#​2507)
  • Remove Unpin bound from TryStreamExt::into_async_read (#​2599)
  • Make run_until_stalled handle self-waking futures (#​2593)
  • Use FuturesOrdered in try_join_all (#​2556)
  • Fix orderings in LocalPool waker (#​2608)
  • Fix stream::Chunk adapters size hints (#​2611)
  • Add push_front and push_back to FuturesOrdered (#​2591)
  • Deprecate FuturesOrdered::push in favor of FuturesOrdered::push_back (#​2591)
  • Performance improvements (#​2583, #​2626)
  • Documentation improvements (#​2579, #​2604, #​2613)

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.21` -> `0.3.29` | --- ### Release Notes <details> <summary>rust-lang/futures-rs (futures-util)</summary> ### [`v0.3.29`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0329---2023-10-26) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) - Add `TryStreamExt::try_ready_chunks` ([#&#8203;2757](https://github.com/rust-lang/futures-rs/issues/2757)) - Add `TryStreamExt::{try_all,try_any}` ([#&#8203;2783](https://github.com/rust-lang/futures-rs/issues/2783)) - Add `UnboundedSender::{len,is_empty}` ([#&#8203;2750](https://github.com/rust-lang/futures-rs/issues/2750)) - Fix `Sync` impl of `FuturesUnordered` ([#&#8203;2788](https://github.com/rust-lang/futures-rs/issues/2788)) - Fix infinite loop caused by invalid UTF-8 bytes ([#&#8203;2785](https://github.com/rust-lang/futures-rs/issues/2785)) - Fix build error with -Z minimal-versions ([#&#8203;2761](https://github.com/rust-lang/futures-rs/issues/2761)) ### [`v0.3.28`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0328---2023-03-30) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28) - Update to syn 2. This raises MSRV of utility crates to 1.56. ([#&#8203;2730](https://github.com/rust-lang/futures-rs/issues/2730), [#&#8203;2733](https://github.com/rust-lang/futures-rs/issues/2733)) - Fix bug in `FlattenUnordered` ([#&#8203;2726](https://github.com/rust-lang/futures-rs/issues/2726), [#&#8203;2728](https://github.com/rust-lang/futures-rs/issues/2728)) ### [`v0.3.27`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0327---2023-03-11) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.26...0.3.27) - Add `TryFlattenUnordered` ([#&#8203;2577](https://github.com/rust-lang/futures-rs/issues/2577), [#&#8203;2590](https://github.com/rust-lang/futures-rs/issues/2590), [#&#8203;2606](https://github.com/rust-lang/futures-rs/issues/2606), [#&#8203;2607](https://github.com/rust-lang/futures-rs/issues/2607)) - Add `AbortHandle::is_aborted` ([#&#8203;2710](https://github.com/rust-lang/futures-rs/issues/2710)) - Add `AbortRegistration::handle` ([#&#8203;2712](https://github.com/rust-lang/futures-rs/issues/2712)) - Make `BiLock` strict-provenance compatible ([#&#8203;2716](https://github.com/rust-lang/futures-rs/issues/2716)) ### [`v0.3.26`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0326---2023-01-30) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.25...0.3.26) - Add `Either::as_pin_mut` and `Either::as_pin_ref` ([#&#8203;2691](https://github.com/rust-lang/futures-rs/issues/2691)) - Add `Shared::ptr_eq` and `Shared::ptr_hash` ([#&#8203;2691](https://github.com/rust-lang/futures-rs/issues/2691)) - Implement `FusedStream` for `Buffered` ([#&#8203;2676](https://github.com/rust-lang/futures-rs/issues/2676)) - Implement `FusedStream` for all streams in `ReadyChunks` ([#&#8203;2693](https://github.com/rust-lang/futures-rs/issues/2693)) - Fix bug in `FuturesOrdered::push_front` ([#&#8203;2664](https://github.com/rust-lang/futures-rs/issues/2664)) - Remove `Fut::Output: Clone` bounds from some `Shared` methods ([#&#8203;2662](https://github.com/rust-lang/futures-rs/issues/2662)) - Remove `T: Debug` bounds from `Debug` implementations of `mpsc` and `oneshot` types ([#&#8203;2666](https://github.com/rust-lang/futures-rs/issues/2666), [#&#8203;2667](https://github.com/rust-lang/futures-rs/issues/2667)) ### [`v0.3.25`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0325---2022-10-20) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.24...0.3.25) - Fix soundness issue in `join!` and `try_join!` macros ([#&#8203;2649](https://github.com/rust-lang/futures-rs/issues/2649)) - Implement `Clone` for `sink::Drain` ([#&#8203;2650](https://github.com/rust-lang/futures-rs/issues/2650)) ### [`v0.3.24`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0324---2022-08-29) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.23...0.3.24) - Fix incorrect termination of `select_with_strategy` streams ([#&#8203;2635](https://github.com/rust-lang/futures-rs/issues/2635)) ### [`v0.3.23`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0323---2022-08-14) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.22...0.3.23) - Work around MSRV increase due to a cargo bug. ### [`v0.3.22`](https://github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0322---2022-08-14) [Compare Source](https://github.com/rust-lang/futures-rs/compare/0.3.21...0.3.22) - Fix `Sync` impl of `BiLockGuard` ([#&#8203;2570](https://github.com/rust-lang/futures-rs/issues/2570)) - Fix partial iteration in `FuturesUnordered` ([#&#8203;2574](https://github.com/rust-lang/futures-rs/issues/2574)) - Fix false detection of inner panics in `Shared` ([#&#8203;2576](https://github.com/rust-lang/futures-rs/issues/2576)) - Add `Mutex::lock_owned` and `Mutex::try_lock_owned` ([#&#8203;2571](https://github.com/rust-lang/futures-rs/issues/2571)) - Add `io::copy_buf_abortable` ([#&#8203;2507](https://github.com/rust-lang/futures-rs/issues/2507)) - Remove `Unpin` bound from `TryStreamExt::into_async_read` ([#&#8203;2599](https://github.com/rust-lang/futures-rs/issues/2599)) - Make `run_until_stalled` handle self-waking futures ([#&#8203;2593](https://github.com/rust-lang/futures-rs/issues/2593)) - Use `FuturesOrdered` in `try_join_all` ([#&#8203;2556](https://github.com/rust-lang/futures-rs/issues/2556)) - Fix orderings in `LocalPool` waker ([#&#8203;2608](https://github.com/rust-lang/futures-rs/issues/2608)) - Fix `stream::Chunk` adapters size hints ([#&#8203;2611](https://github.com/rust-lang/futures-rs/issues/2611)) - Add `push_front` and `push_back` to `FuturesOrdered` ([#&#8203;2591](https://github.com/rust-lang/futures-rs/issues/2591)) - Deprecate `FuturesOrdered::push` in favor of `FuturesOrdered::push_back` ([#&#8203;2591](https://github.com/rust-lang/futures-rs/issues/2591)) - Performance improvements ([#&#8203;2583](https://github.com/rust-lang/futures-rs/issues/2583), [#&#8203;2626](https://github.com/rust-lang/futures-rs/issues/2626)) - Documentation improvements ([#&#8203;2579](https://github.com/rust-lang/futures-rs/issues/2579), [#&#8203;2604](https://github.com/rust-lang/futures-rs/issues/2604), [#&#8203;2613](https://github.com/rust-lang/futures-rs/issues/2613)) </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:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMzLjYiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIifQ==-->
pierre changed title from Update Rust crate futures-util to 0.3.23 to Update Rust crate futures-util to 0.3.24 2022-09-04 00:35:07 +00:00
pierre force-pushed renovate/futures-util-0.x from 73ae5888d5 to 8fafb931f2 2022-09-04 00:35:08 +00:00 Compare
pierre changed title from Update Rust crate futures-util to 0.3.24 to Update Rust crate futures-util to 0.3.25 2022-11-04 00:37:33 +00:00
pierre force-pushed renovate/futures-util-0.x from 8fafb931f2 to ab99268914 2022-11-04 00:37:35 +00:00 Compare
pierre force-pushed renovate/futures-util-0.x from ab99268914 to 0ea8651f76 2023-01-31 00:15:36 +00:00 Compare
pierre changed title from Update Rust crate futures-util to 0.3.25 to Update Rust crate futures-util to 0.3.26 2023-02-10 00:18:46 +00:00
pierre changed title from Update Rust crate futures-util to 0.3.26 to Update Rust crate futures-util to 0.3.28 2023-04-01 00:07:41 +00:00
pierre force-pushed renovate/futures-util-0.x from 0ea8651f76 to d891b8fc18 2023-04-01 00:07:42 +00:00 Compare
pierre changed title from Update Rust crate futures-util to 0.3.28 to Update Rust crate futures-util to 0.3.29 2023-10-27 00:29:47 +00:00
pierre force-pushed renovate/futures-util-0.x from d891b8fc18 to 21fead4ee0 2023-10-27 00:29:53 +00:00 Compare
Author
Owner

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

### Edited/Blocked Notification Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ **Warning**: custom changes will be lost.
pierre changed title from Update Rust crate futures-util to 0.3.29 to Update Rust crate futures-util to 0.3.29 - abandoned 2024-05-08 00:27:25 +00:00
Author
Owner

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

### Autoclosing Skipped This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.
pierre closed this pull request 2024-05-23 09:48:26 +00:00

Pull request closed

Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
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: pierre/PagesServer#8
No description provided.