Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upbuild(deps): bump futures-util from 0.3.4 to 0.3.5 #26914
Merged
Conversation
Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.4 to 0.3.5. - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](rust-lang/futures-rs@0.3.4...0.3.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
|
@bors-servo r+ |
|
|
bors-servo
added a commit
that referenced
this pull request
Jun 15, 2020
build(deps): bump futures-util from 0.3.4 to 0.3.5 Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.4 to 0.3.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures-util's releases</a>.</em></p> <blockquote> <h2>0.3.5</h2> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures-util's changelog</a>.</em></p> <blockquote> <h1>0.3.5 - 2020-05-08</h1> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/4ceafb384c18e664a507892b16c98322a6e240a1"><code>4ceafb3</code></a> Stage 0.3.5</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/5b91728e10a47742d3913501fc13ff0da240bdd5"><code>5b91728</code></a> Drop unneeded Send/Sync bound from AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b930bb4702b1f57cabe3ae6d9c499833bd7d520"><code>4b930bb</code></a> Implement Send + Sync for AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bf5ac99e939e6ff70283937fa91e8d77e5f70e8"><code>3bf5ac9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2128">#2128</a> from Diggsey/snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/1b44548be753ff0b7d2e4eabe7de4d2e199cfaf2"><code>1b44548</code></a> Merge branch 'master' into snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/32005e3f74f2b48a9ca0e97a63ff25976c863703"><code>32005e3</code></a> fix: Shared must relinquish control to the executor if repolled</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc06edaf5428009fb4189af5a64cc2d23bd3955c"><code>dc06eda</code></a> Update pin-utils to 0.1</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc00793b38acfb5cf001ad975b60bb94ef0d45ae"><code>dc00793</code></a> Make ready and lazy's panic messages easy to understand</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/127b244ecd779b4be0e59218986c2b3708f862f9"><code>127b244</code></a> Allow pending! and poll! in no_std</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dfc66739469a4fe849987a676c9b3be6011f1fb8"><code>dfc6673</code></a> Update futures-util/src/future/future/flatten.rs</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.4...0.3.5">compare view</a></li> </ul> </details> <br /> [](https://dependabot.com/compatibility-score/?dependency-name=futures-util&package-manager=cargo&previous-version=0.3.4&new-version=0.3.5) 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`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <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 recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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 these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
|
|
|
@bors-servo retry |
bors-servo
added a commit
that referenced
this pull request
Jun 15, 2020
build(deps): bump futures-util from 0.3.4 to 0.3.5 Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.4 to 0.3.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures-util's releases</a>.</em></p> <blockquote> <h2>0.3.5</h2> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures-util's changelog</a>.</em></p> <blockquote> <h1>0.3.5 - 2020-05-08</h1> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/4ceafb384c18e664a507892b16c98322a6e240a1"><code>4ceafb3</code></a> Stage 0.3.5</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/5b91728e10a47742d3913501fc13ff0da240bdd5"><code>5b91728</code></a> Drop unneeded Send/Sync bound from AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b930bb4702b1f57cabe3ae6d9c499833bd7d520"><code>4b930bb</code></a> Implement Send + Sync for AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bf5ac99e939e6ff70283937fa91e8d77e5f70e8"><code>3bf5ac9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2128">#2128</a> from Diggsey/snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/1b44548be753ff0b7d2e4eabe7de4d2e199cfaf2"><code>1b44548</code></a> Merge branch 'master' into snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/32005e3f74f2b48a9ca0e97a63ff25976c863703"><code>32005e3</code></a> fix: Shared must relinquish control to the executor if repolled</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc06edaf5428009fb4189af5a64cc2d23bd3955c"><code>dc06eda</code></a> Update pin-utils to 0.1</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc00793b38acfb5cf001ad975b60bb94ef0d45ae"><code>dc00793</code></a> Make ready and lazy's panic messages easy to understand</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/127b244ecd779b4be0e59218986c2b3708f862f9"><code>127b244</code></a> Allow pending! and poll! in no_std</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dfc66739469a4fe849987a676c9b3be6011f1fb8"><code>dfc6673</code></a> Update futures-util/src/future/future/flatten.rs</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.4...0.3.5">compare view</a></li> </ul> </details> <br /> [](https://dependabot.com/compatibility-score/?dependency-name=futures-util&package-manager=cargo&previous-version=0.3.4&new-version=0.3.5) 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`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <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 recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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 these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
|
|
|
@bors-servo retry |
bors-servo
added a commit
that referenced
this pull request
Jun 15, 2020
build(deps): bump futures-util from 0.3.4 to 0.3.5 Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.4 to 0.3.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures-util's releases</a>.</em></p> <blockquote> <h2>0.3.5</h2> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures-util's changelog</a>.</em></p> <blockquote> <h1>0.3.5 - 2020-05-08</h1> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/4ceafb384c18e664a507892b16c98322a6e240a1"><code>4ceafb3</code></a> Stage 0.3.5</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/5b91728e10a47742d3913501fc13ff0da240bdd5"><code>5b91728</code></a> Drop unneeded Send/Sync bound from AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b930bb4702b1f57cabe3ae6d9c499833bd7d520"><code>4b930bb</code></a> Implement Send + Sync for AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bf5ac99e939e6ff70283937fa91e8d77e5f70e8"><code>3bf5ac9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2128">#2128</a> from Diggsey/snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/1b44548be753ff0b7d2e4eabe7de4d2e199cfaf2"><code>1b44548</code></a> Merge branch 'master' into snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/32005e3f74f2b48a9ca0e97a63ff25976c863703"><code>32005e3</code></a> fix: Shared must relinquish control to the executor if repolled</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc06edaf5428009fb4189af5a64cc2d23bd3955c"><code>dc06eda</code></a> Update pin-utils to 0.1</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc00793b38acfb5cf001ad975b60bb94ef0d45ae"><code>dc00793</code></a> Make ready and lazy's panic messages easy to understand</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/127b244ecd779b4be0e59218986c2b3708f862f9"><code>127b244</code></a> Allow pending! and poll! in no_std</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dfc66739469a4fe849987a676c9b3be6011f1fb8"><code>dfc6673</code></a> Update futures-util/src/future/future/flatten.rs</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.4...0.3.5">compare view</a></li> </ul> </details> <br /> [](https://dependabot.com/compatibility-score/?dependency-name=futures-util&package-manager=cargo&previous-version=0.3.4&new-version=0.3.5) 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`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <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 recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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 these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
|
|
|
@bors-servo retry |
bors-servo
added a commit
that referenced
this pull request
Jun 16, 2020
build(deps): bump futures-util from 0.3.4 to 0.3.5 Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.4 to 0.3.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures-util's releases</a>.</em></p> <blockquote> <h2>0.3.5</h2> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures-util's changelog</a>.</em></p> <blockquote> <h1>0.3.5 - 2020-05-08</h1> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/4ceafb384c18e664a507892b16c98322a6e240a1"><code>4ceafb3</code></a> Stage 0.3.5</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/5b91728e10a47742d3913501fc13ff0da240bdd5"><code>5b91728</code></a> Drop unneeded Send/Sync bound from AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b930bb4702b1f57cabe3ae6d9c499833bd7d520"><code>4b930bb</code></a> Implement Send + Sync for AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bf5ac99e939e6ff70283937fa91e8d77e5f70e8"><code>3bf5ac9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2128">#2128</a> from Diggsey/snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/1b44548be753ff0b7d2e4eabe7de4d2e199cfaf2"><code>1b44548</code></a> Merge branch 'master' into snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/32005e3f74f2b48a9ca0e97a63ff25976c863703"><code>32005e3</code></a> fix: Shared must relinquish control to the executor if repolled</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc06edaf5428009fb4189af5a64cc2d23bd3955c"><code>dc06eda</code></a> Update pin-utils to 0.1</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc00793b38acfb5cf001ad975b60bb94ef0d45ae"><code>dc00793</code></a> Make ready and lazy's panic messages easy to understand</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/127b244ecd779b4be0e59218986c2b3708f862f9"><code>127b244</code></a> Allow pending! and poll! in no_std</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dfc66739469a4fe849987a676c9b3be6011f1fb8"><code>dfc6673</code></a> Update futures-util/src/future/future/flatten.rs</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.4...0.3.5">compare view</a></li> </ul> </details> <br /> [](https://dependabot.com/compatibility-score/?dependency-name=futures-util&package-manager=cargo&previous-version=0.3.4&new-version=0.3.5) 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`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <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 recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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 these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
|
|
|
@bors-servo retry |
bors-servo
added a commit
that referenced
this pull request
Jun 16, 2020
build(deps): bump futures-util from 0.3.4 to 0.3.5 Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.4 to 0.3.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures-util's releases</a>.</em></p> <blockquote> <h2>0.3.5</h2> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures-util's changelog</a>.</em></p> <blockquote> <h1>0.3.5 - 2020-05-08</h1> <ul> <li>Added <code>StreamExt::flat_map</code>.</li> <li>Added <code>StreamExt::ready_chunks</code>.</li> <li>Added <code>*_unpin</code> methods to <code>SinkExt</code>.</li> <li>Added a <code>cancellation()</code> future to <code>oneshot::Sender</code>.</li> <li>Added <code>reunite</code> method to <code>ReadHalf</code> and <code>WriteHalf</code>.</li> <li>Added <code>Extend</code> implementations for <code>Futures(Un)Ordered</code> and <code>SelectAll</code>.</li> <li>Added support for reexporting the <code>join!</code> and <code>select!</code> macros.</li> <li>Added <code>no_std</code> support for the <code>pending!</code> and <code>poll!</code> macros.</li> <li>Added <code>Send</code> and <code>Sync</code> support for <code>AssertUnmoved</code>.</li> <li>Fixed a bug where <code>Shared</code> wasn't relinquishing control to the executor.</li> <li>Removed the <code>Send</code> bound on the output of <code>RemoteHandle</code>.</li> <li>Relaxed bounds on <code>FuturesUnordered</code>.</li> <li>Reorganized internal tests to work under different <code>--feature</code>s.</li> <li>Reorganized the bounds on <code>StreamExt::forward</code>.</li> <li>Removed and replaced a large amount of internal <code>unsafe</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/4ceafb384c18e664a507892b16c98322a6e240a1"><code>4ceafb3</code></a> Stage 0.3.5</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/5b91728e10a47742d3913501fc13ff0da240bdd5"><code>5b91728</code></a> Drop unneeded Send/Sync bound from AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b930bb4702b1f57cabe3ae6d9c499833bd7d520"><code>4b930bb</code></a> Implement Send + Sync for AssertUnmoved</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bf5ac99e939e6ff70283937fa91e8d77e5f70e8"><code>3bf5ac9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2128">#2128</a> from Diggsey/snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/1b44548be753ff0b7d2e4eabe7de4d2e199cfaf2"><code>1b44548</code></a> Merge branch 'master' into snip</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/32005e3f74f2b48a9ca0e97a63ff25976c863703"><code>32005e3</code></a> fix: Shared must relinquish control to the executor if repolled</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc06edaf5428009fb4189af5a64cc2d23bd3955c"><code>dc06eda</code></a> Update pin-utils to 0.1</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dc00793b38acfb5cf001ad975b60bb94ef0d45ae"><code>dc00793</code></a> Make ready and lazy's panic messages easy to understand</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/127b244ecd779b4be0e59218986c2b3708f862f9"><code>127b244</code></a> Allow pending! and poll! in no_std</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/dfc66739469a4fe849987a676c9b3be6011f1fb8"><code>dfc6673</code></a> Update futures-util/src/future/future/flatten.rs</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.4...0.3.5">compare view</a></li> </ul> </details> <br /> [](https://dependabot.com/compatibility-score/?dependency-name=futures-util&package-manager=cargo&previous-version=0.3.4&new-version=0.3.5) 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`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <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 recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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 these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
|
|
|
@bors-servo retry |
|
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
dependabot-preview bot commentedJun 15, 2020
Bumps futures-util from 0.3.4 to 0.3.5.
Release notes
Sourced from futures-util's releases.
Changelog
Sourced from futures-util's changelog.
Commits
4ceafb3Stage 0.3.55b91728Drop unneeded Send/Sync bound from AssertUnmoved4b930bbImplement Send + Sync for AssertUnmoved3bf5ac9Merge pull request #2128 from Diggsey/snip1b44548Merge branch 'master' into snip32005e3fix: Shared must relinquish control to the executor if repolleddc06edaUpdate pin-utils to 0.1dc00793Make ready and lazy's panic messages easy to understand127b244Allow pending! and poll! in no_stddfc6673Update futures-util/src/future/future/flatten.rsDependabot 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.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readmeAdditionally, you can set the following in your Dependabot dashboard: