[PR #389] [CLOSED] Bump futures from 0.1.21 to 0.2.0 #1401

Closed
opened 2026-03-16 02:04:35 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/389
Author: @dependabot-preview[bot]
Created: 4/9/2018
Status: Closed

Base: masterHead: dependabot/cargo/futures-0.2.0


📝 Commits (1)

  • 2f2b321 Bump futures from 0.1.21 to 0.2.0

📊 Changes

10 files changed (+113 additions, -18 deletions)

View changed files

📝 Cargo.lock (+104 -9)
📝 client/Cargo.toml (+1 -1)
📝 compatibility-tests/Cargo.toml (+1 -1)
📝 integration-tests/Cargo.toml (+1 -1)
📝 native-tls/Cargo.toml (+1 -1)
📝 openssl/Cargo.toml (+1 -1)
📝 proto/Cargo.toml (+1 -1)
📝 resolver/Cargo.toml (+1 -1)
📝 rustls/Cargo.toml (+1 -1)
📝 server/Cargo.toml (+1 -1)

📄 Description

Bumps futures from 0.1.21 to 0.2.0.

Changelog

Sourced from futures's changelog.

0.1.17 - 2017-10-31

  • Add a close method on sink::Wait
  • Undeprecate stream::iter as stream::iter_result
  • Improve performance of wait-related methods
  • Tweak buffered sinks with a 0 capacity to forward directly to the underlying
    sink.
  • Add FromIterator implementation for FuturesOrdered and FuturesUnordered.

0.1.16 - 2017-09-15

  • A prelude module has been added to glob import from and pick up a whole
    bunch of useful types
  • sync::mpsc::Sender::poll_ready has been added as an API
  • sync::mpsc::Sender::try_send has been added as an API

0.1.15 - 2017-08-24

  • Improve performance of BiLock methods
  • Implement Clone for FutureResult
  • Forward Stream trait through SinkMapErr
  • Add stream::futures_ordered next to futures_unordered
  • Reimplement Stream::buffered on top of stream::futures_ordered (much more
    efficient at scale).
  • Add a with_notify function for abstractions which previously required
    UnparkEvent.
  • Add get_ref/get_mut/into_inner functions for stream take/skip methods
  • Add a Clone implementation for SharedItem and SharedError
  • Add a mpsc::spawn function to spawn a Stream into an Executor
  • Add a reunite function for BiLock and the split stream/sink types to
    rejoin two halves and reclaim the original item.
  • Add stream::poll_fn to behave similarly to future::poll_fn
  • Add Sink::with_flat_map like Iterator::flat_map
  • Bump the minimum Rust version to 1.13.0
  • Expose AtomicTask in the public API for managing synchronization around task
    notifications.
  • Unify the Canceled type of the sync and unsync modules.
  • Deprecate the boxed methods. These methods have caused more confusion than
    they've solved historically, so it's recommended to use a local extension
    trait or a local helper instead of the trait-based methods.
  • Deprecate the Stream::merge method as it's less ergonomic than select.
  • Add oneshot::Sender::is_canceled to test if a oneshot is canceled off a
    task.
  • Deprecates UnboundedSender::send in favor of a method named unbounded_send
    to avoid a conflict with Sink::send.
  • Deprecate the stream::iter function in favor of an stream::iter_ok adaptor
    to avoid the need to deal with Result manually.
  • Add an inspect function to the Future and Stream traits along the lines
    of Iterator::inspect

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot ignore this [minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use [this|these] label[s] will set the current labels as the default for future PRs for this repo and language

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)

Finally, you can contact us by mentioning @dependabot.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hickory-dns/hickory-dns/pull/389 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 4/9/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/futures-0.2.0` --- ### 📝 Commits (1) - [`2f2b321`](https://github.com/hickory-dns/hickory-dns/commit/2f2b321ddbdfa015f2bc4462e4dcc193a84d51a0) Bump futures from 0.1.21 to 0.2.0 ### 📊 Changes **10 files changed** (+113 additions, -18 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+104 -9) 📝 `client/Cargo.toml` (+1 -1) 📝 `compatibility-tests/Cargo.toml` (+1 -1) 📝 `integration-tests/Cargo.toml` (+1 -1) 📝 `native-tls/Cargo.toml` (+1 -1) 📝 `openssl/Cargo.toml` (+1 -1) 📝 `proto/Cargo.toml` (+1 -1) 📝 `resolver/Cargo.toml` (+1 -1) 📝 `rustls/Cargo.toml` (+1 -1) 📝 `server/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [futures](https://github.com/rust-lang-nursery/futures-rs) from 0.1.21 to 0.2.0. <details> <summary>Changelog</summary> *Sourced from futures's [changelog](https://github.com/rust-lang-nursery/futures-rs/blob/master/CHANGELOG.md).* > # 0.1.17 - 2017-10-31 > > * Add a `close` method on `sink::Wait` > * Undeprecate `stream::iter` as `stream::iter_result` > * Improve performance of wait-related methods > * Tweak buffered sinks with a 0 capacity to forward directly to the underlying > sink. > * Add `FromIterator` implementation for `FuturesOrdered` and `FuturesUnordered`. > > # 0.1.16 - 2017-09-15 > > * A `prelude` module has been added to glob import from and pick up a whole > bunch of useful types > * `sync::mpsc::Sender::poll_ready` has been added as an API > * `sync::mpsc::Sender::try_send` has been added as an API > > # 0.1.15 - 2017-08-24 > > * Improve performance of `BiLock` methods > * Implement `Clone` for `FutureResult` > * Forward `Stream` trait through `SinkMapErr` > * Add `stream::futures_ordered` next to `futures_unordered` > * Reimplement `Stream::buffered` on top of `stream::futures_ordered` (much more > efficient at scale). > * Add a `with_notify` function for abstractions which previously required > `UnparkEvent`. > * Add `get_ref`/`get_mut`/`into_inner` functions for stream take/skip methods > * Add a `Clone` implementation for `SharedItem` and `SharedError` > * Add a `mpsc::spawn` function to spawn a `Stream` into an `Executor` > * Add a `reunite` function for `BiLock` and the split stream/sink types to > rejoin two halves and reclaim the original item. > * Add `stream::poll_fn` to behave similarly to `future::poll_fn` > * Add `Sink::with_flat_map` like `Iterator::flat_map` > * Bump the minimum Rust version to 1.13.0 > * Expose `AtomicTask` in the public API for managing synchronization around task > notifications. > * Unify the `Canceled` type of the `sync` and `unsync` modules. > * Deprecate the `boxed` methods. These methods have caused more confusion than > they've solved historically, so it's recommended to use a local extension > trait or a local helper instead of the trait-based methods. > * Deprecate the `Stream::merge` method as it's less ergonomic than `select`. > * Add `oneshot::Sender::is_canceled` to test if a oneshot is canceled off a > task. > * Deprecates `UnboundedSender::send` in favor of a method named `unbounded_send` > to avoid a conflict with `Sink::send`. > * Deprecate the `stream::iter` function in favor of an `stream::iter_ok` adaptor > to avoid the need to deal with `Result` manually. > * Add an `inspect` function to the `Future` and `Stream` traits along the lines > of `Iterator::inspect` > > ... (truncated) </details> <details> <summary>Commits</summary> - See full diff in [compare view](https://github.com/rust-lang-nursery/futures-rs/commits/0.2.0) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/ci_status?dependency-name=futures&package-manager=cargo&previous-version=0.1.21&new-version=0.2.0)](https://dependabot.com/compatibility-score.html?dependency-name=futures&package-manager=cargo&previous-version=0.1.21&new-version=0.2.0) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. --- **Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit. You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com). <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot ignore this [minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use [this|these] label[s]` will set the current labels as the default for future PRs for this repo and language Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) Finally, you can contact us by mentioning @dependabot. </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 02:04:35 +03:00
Sign in to join this conversation.
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
starred/hickory-dns#1401
No description provided.