osm-to-euroscope.meta

Issues/PRs archive for MTRNord/OSM_to_Euroscope
git clone git://archive.git.mtrnord.blog/MTRNord/osm-to-euroscope.meta.git
Log | Files | Refs

10.md (7692B)


      1 # PR #10 Bump tokio from 0.2.16 to 0.2.18
      2 
      3 - **Status:** closed
      4 - **Author:** @dependabot-preview[bot]
      5 - **Created:** 2020-04-13T05:03:47Z
      6 - **Branch:** dependabot/cargo/tokio-0.2.18 → master
      7 - **Closed:** 2020-04-27T05:04:06Z
      8 - **Labels:** dependencies
      9 - **Assignees:** @MTRNord
     10 - **Diff:** [10.diff](./10.diff)
     11 
     12 ---
     13 
     14 Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.16 to 0.2.18.
     15 <details>
     16 <summary>Release notes</summary>
     17 <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p>
     18 <blockquote>
     19 <h2>Tokio v0.2.18</h2>
     20 <p>Fixes a regression with <code>LocalSet</code> that allowed <code>!Send</code> futures to cross threads.</p>
     21 <p>This change makes <code>LocalSet</code> <code>!Send</code>. The <code>Send</code> implementation was accidentally added in v0.2.14. Removing the <code>Send</code> implementation is not considered a breaking change as it fixes a soundness bug and the implementation was accidental.</p>
     22 <h3>Fixes</h3>
     23 <ul>
     24 <li>task: <code>LocalSet</code> was incorrectly marked as <code>Send</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2398">#2398</a>)</li>
     25 <li>io: correctly report <code>WriteZero</code> failure in <code>write_int</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2334">#2334</a>)</li>
     26 </ul>
     27 <h2>Tokio 0.2.17</h2>
     28 <p>This release fixes a bug in the threaded scheduler that could result in panics under load (see <a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2382">#2382</a>). Additionally, the default number of worker threads now uses the logical CPU count, so it will now respect scheduler affinity and <code>cgroups</code> CPU quotas.</p>
     29 <h3>Fixes</h3>
     30 <ul>
     31 <li>rt: bug in work-stealing queue (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2387">#2387</a>)</li>
     32 </ul>
     33 <h3>Changes</h3>
     34 <ul>
     35 <li>rt: threadpool uses logical CPU count instead of physical by default (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2391">#2391</a>)</li>
     36 </ul>
     37 </blockquote>
     38 </details>
     39 <details>
     40 <summary>Commits</summary>
     41 <ul>
     42 <li><a href="https://github.com/tokio-rs/tokio/commit/5376f9181f30961f8354c9f70d8e94e2d8a1d7bb"><code>5376f91</code></a> chore: prepare to release 0.2.18 (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2399">#2399</a>)</li>
     43 <li><a href="https://github.com/tokio-rs/tokio/commit/4fc2adae4fcc76fa8ff1169fed3db6d7c9100c4a"><code>4fc2ada</code></a> task: make LocalSet non-Send (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2398">#2398</a>)</li>
     44 <li><a href="https://github.com/tokio-rs/tokio/commit/f39c15334e74b07a44efaa0f7201262e17e4f062"><code>f39c153</code></a> docs: replace some html links with rustdoc paths (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2381">#2381</a>)</li>
     45 <li><a href="https://github.com/tokio-rs/tokio/commit/060d22bd10ac66d91b70522138816c9bd05d5ead"><code>060d22b</code></a> io: report error on zero-write in write_int (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2334">#2334</a>)</li>
     46 <li><a href="https://github.com/tokio-rs/tokio/commit/8118f8f117a5b544f3bc6b3ce4e639a2a605afcb"><code>8118f8f</code></a> docs: fix incorrect documentation links &amp; formatting (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2332">#2332</a>)</li>
     47 <li><a href="https://github.com/tokio-rs/tokio/commit/1e679748ecedfb0e894c5028eb8c67f44e47507a"><code>1e67974</code></a> docs: remove duplicate &quot;a listener&quot; (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2395">#2395</a>)</li>
     48 <li><a href="https://github.com/tokio-rs/tokio/commit/3137c6f07dabc4edc37acf717fd8c565bd78927b"><code>3137c6f</code></a> chore: prepare to release 0.2.17 (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2392">#2392</a>)</li>
     49 <li><a href="https://github.com/tokio-rs/tokio/commit/d294c992e7236d5279d9e1a49b4536b21ccbc835"><code>d294c99</code></a> Use logical CPUs instead of physical by default (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2391">#2391</a>)</li>
     50 <li><a href="https://github.com/tokio-rs/tokio/commit/58ba45a38cc101e695895cc39d8ee4ce74176397"><code>58ba45a</code></a> rt: fix bug in work-stealing queue (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2387">#2387</a>)</li>
     51 <li><a href="https://github.com/tokio-rs/tokio/commit/de8326a5a490aafdf12848820d1496b758f1ec57"><code>de8326a</code></a> doc: Sort methods on mpsc::Sender in doc (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2379">#2379</a>)</li>
     52 <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-0.2.16...tokio-0.2.18">compare view</a></li>
     53 </ul>
     54 </details>
     55 <br />
     56 
     57 
     58 [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=0.2.16&new-version=0.2.18)](https://dependabot.com/compatibility-score/?dependency-name=tokio&package-manager=cargo&previous-version=0.2.16&new-version=0.2.18)
     59 
     60 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`.
     61 
     62 [//]: # (dependabot-automerge-start)
     63 [//]: # (dependabot-automerge-end)
     64 
     65 ---
     66 
     67 <details>
     68 <summary>Dependabot commands and options</summary>
     69 <br />
     70 
     71 You can trigger Dependabot actions by commenting on this PR:
     72 - `@dependabot rebase` will rebase this PR
     73 - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
     74 - `@dependabot merge` will merge this PR after your CI passes on it
     75 - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
     76 - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
     77 - `@dependabot reopen` will reopen this PR if it is closed
     78 - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
     79 - `@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)
     80 - `@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)
     81 - `@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)
     82 - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
     83 - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
     84 - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
     85 - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
     86 - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
     87 
     88 Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
     89 - Update frequency (including time of day and day of week)
     90 - Pull request limits (per update run and/or open at any time)
     91 - Out-of-range updates (receive only lockfile updates, if desired)
     92 - Security updates (receive only security updates, if desired)
     93 
     94 
     95 
     96 </details>
     97 
     98 
     99 ## Comments
    100 
    101 ### @dependabot-preview[bot] — 2020-04-27T05:04:04Z
    102 
    103 Superseded by #11.
    104