Update Rust crate futures to 0.3.29 #122

Merged
pierre merged 1 commits from renovate/futures-0.x into master 2023-10-27 01:08:36 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
futures (source) dependencies patch 0.3.23 -> 0.3.29
futures (source) dev-dependencies patch 0.3.23 -> 0.3.29

Release Notes

rust-lang/futures-rs (futures)

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)

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates 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](https://rust-lang.github.io/futures-rs) ([source](https://github.com/rust-lang/futures-rs)) | dependencies | patch | `0.3.23` -> `0.3.29` | | [futures](https://rust-lang.github.io/futures-rs) ([source](https://github.com/rust-lang/futures-rs)) | dev-dependencies | patch | `0.3.23` -> `0.3.29` | --- ### Release Notes <details> <summary>rust-lang/futures-rs (futures)</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)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMy42IiwidXBkYXRlZEluVmVyIjoiMzcuMzMuNiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
pierre added 1 commit 2023-10-27 00:31:17 +00:00
Update Rust crate futures to 0.3.29
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
cfedebd2f6
pierre scheduled this pull request to auto merge when all checks succeed 2023-10-27 00:31:17 +00:00
pierre merged commit cfedebd2f6 into master 2023-10-27 01:08:36 +00:00
This repo is archived. You cannot comment on pull requests.
No Reviewers
No Label
1 Participants
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: pierre/SeaBattle#122
No description provided.