Commit graph

43406 commits

Author SHA1 Message Date
Sean Joseph
9e22804983 Added is_platform_object_static check to is_dom_object 2020-11-26 18:40:41 -05:00
Sean Joseph
823cca30d6 Added is_platform_obj_static 2020-11-26 18:30:52 -05:00
Sean Joseph
3c8680f273 Add back code to identify JSObjects that should be counted in memory profiling 2020-11-26 10:43:30 -05:00
bors-servo
cf68cd16bd
Auto merge of #27806 - jonathanKingston:secure-contexts-with-creation-url, r=jdm
Add creation url and Secure Contexts

A more complete version of https://github.com/servo/servo/pull/27793

I've added in creation/creator URLs to match the HTML spec for the "global settings object" which doesn't exist in Servo but lots of its concepts exist within the Global Scope.

This fixes the previously mentioned blob url test fails but has the previously mentioned issues in https://github.com/servo/servo/pull/27793

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)

<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because ___

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
2020-11-25 18:32:58 -05:00
Jonathan Kingston
80902ee716 Update test expected outcomes 2020-11-25 18:58:19 +00:00
Jonathan Kingston
35eaf65974 Moving bluetooth tests to https. 2020-11-25 18:30:50 +00:00
Jonathan Kingston
0e1479cc84 Add creation url and Secure Contexts 2020-11-25 18:30:50 +00:00
bors-servo
20ef49e035
Auto merge of #27832 - servo-wpt-sync:wpt_update_25-11-2020, r=servo-wpt-sync
Sync WPT with upstream (25-11-2020)

Automated downstream sync of changes from upstream as of 25-11-2020.
[no-wpt-sync]
r? @servo-wpt-sync
2020-11-25 12:24:28 -05:00
bors-servo
adbaab09fd
Auto merge of #27831 - servo:dependabot/cargo/bytemuck-1.4.1, r=jdm
Bump bytemuck from 1.2.0 to 1.4.1

Bumps [bytemuck](https://github.com/Lokathor/bytemuck) from 1.2.0 to 1.4.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/Lokathor/bytemuck/blob/main/changelog.md">bytemuck's changelog</a>.</em></p>
<blockquote>
<h2>1.4.1</h2>
<ul>
<li><a href="https://github.com/thomcc">thomcc</a> fixed up the CI and patched over a soundness hole in <code>offset_of!</code>.
<a href="https://github-redirect.dependabot.com/Lokathor/bytemuck/pull/38">PR 38</a></li>
</ul>
<h2>1.4</h2>
<ul>
<li><a href="https://github.com/icewind1991">icewind1991</a> has contributed the proc-macros
for deriving impls of <code>Pod</code>, <code>TransparentWrapper</code>, <code>Zeroable</code>!! Everyone has
been waiting for this one folks! It's a big deal. Just enable the <code>derive</code>
cargo feature and then you'll be able to derive the traits on your types. It
generates all the appropriate tests for you.</li>
<li>The <code>zeroable_maybe_uninit</code> feature now adds a <code>Zeroable</code> impl to the
<code>MaybeUninit</code> type. This is only behind a feature flag because <code>MaybeUninit</code>
didn't exist back in <code>1.34.0</code> (the minimum rust version of <code>bytemuck</code>).</li>
</ul>
<h2>1.3.1</h2>
<ul>
<li>The entire crate is now available under the <code>Apache-2.0 OR MIT</code> license as
well as the previous <code>Zlib</code> license
<a href="https://github-redirect.dependabot.com/Lokathor/bytemuck/pull/24">#24</a>.</li>
<li><a href="https://github.com/HeroicKatora">HeroicKatora</a> added the
<code>try_zeroed_slice_box</code> function
<a href="https://github-redirect.dependabot.com/Lokathor/bytemuck/pull/17">#10</a>. <code>zeroed_slice_box</code> is
also available.</li>
<li>The <code>offset_of!</code> macro now supports a 2-arg version. For types that impl
Default, it'll just make an instance using <code>default</code> and then call over to the
3-arg version.</li>
<li>The <code>PodCastError</code> type now supports <code>Hash</code> and <code>Display</code>. Also if you enable
the <code>extern_crate_std</code> feature then it will support <code>std::error::Error</code>.</li>
<li>We now provide a <code>TransparentWrapper&lt;T&gt;</code> impl for <code>core::num::Wrapper&lt;T&gt;</code>.</li>
<li>The error type of <code>try_from_bytes</code> and <code>try_from_bytes_mut</code> when the input
isn't aligned has been corrected from being <code>AlignmentMismatch</code> (intended for
allocation casting only) to <code>TargetAlignmentGreaterAndInputNotAligned</code>.</li>
</ul>
<h2>1.3.0</h2>
<ul>
<li>Had a bug because the CI was messed up! It wasn't soundness related, because
it prevented the crate from building entirely if the <code>extern_crate_alloc</code>
feature was used. Still, this is yanked, sorry.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="68ed5fe6f2"><code>68ed5fe</code></a> (cargo-release) version 1.4.1</li>
<li><a href="64cc5973c4"><code>64cc597</code></a> Add more tests, overhaul CI, and fix plug soundness hole in `bytemuck::offset...</li>
<li><a href="343c618fea"><code>343c618</code></a> Mark playground as all-features (<a href="https://github-redirect.dependabot.com/Lokathor/bytemuck/issues/37">#37</a>)</li>
<li><a href="e013e747e7"><code>e013e74</code></a> Add/rename LICENSE files (<a href="https://github-redirect.dependabot.com/Lokathor/bytemuck/issues/36">#36</a>)</li>
<li><a href="b816a1b585"><code>b816a1b</code></a> (cargo-release) start next development iteration 1.4.1-alpha.0</li>
<li><a href="426df7c9c0"><code>426df7c</code></a> (cargo-release) version 1.4.0</li>
<li><a href="6632bcef2c"><code>6632bce</code></a> Update Cargo.toml</li>
<li><a href="09ab956bea"><code>09ab956</code></a> update the optional derives to the released version</li>
<li><a href="c171ac4f5b"><code>c171ac4</code></a> (cargo-release) start next development iteration 1.0.1-alpha.0</li>
<li><a href="9aedc156a8"><code>9aedc15</code></a> (cargo-release) version 1.0.0</li>
<li>Additional commits viewable in <a href="https://github.com/Lokathor/bytemuck/compare/v1.2.0...v1.4.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=bytemuck&package-manager=cargo&previous-version=1.2.0&new-version=1.4.1)](https://dependabot.com/compatibility-score/?dependency-name=bytemuck&package-manager=cargo&previous-version=1.2.0&new-version=1.4.1)

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>
2020-11-25 11:25:50 -05:00
bors-servo
7cb1ecf796
Auto merge of #27827 - servo:dependabot/cargo/futures-0.1.30, r=jdm
Bump futures from 0.1.28 to 0.1.30

Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.1.28 to 0.1.30.
<details>
<summary>Commits</summary>
<ul>
<li><a href="6db6642255"><code>6db6642</code></a> Release 0.1.30</li>
<li><a href="8f9c4a6824"><code>8f9c4a6</code></a> Allow deprecated warnings (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2221">#2221</a>)</li>
<li><a href="cbaaac24d5"><code>cbaaac2</code></a> Backport to 0.1: Shared must relinquish control to the executor if repolled</li>
<li><a href="b85f56d85c"><code>b85f56d</code></a> Backport to 0.1: Avoid starvation from FuturesUnordered::poll_next</li>
<li><a href="a00d35efcb"><code>a00d35e</code></a> Don't bypass stream fuse in 0.1 Forward</li>
<li><a href="56f8eb99eb"><code>56f8eb9</code></a> 0.1.29 release</li>
<li><a href="ad7830d8b7"><code>ad7830d</code></a> add must_use attributes on Future and Stream</li>
<li>See full diff in <a href="https://github.com/rust-lang/futures-rs/compare/0.1.28...0.1.30">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.1.28&new-version=0.1.30)](https://dependabot.com/compatibility-score/?dependency-name=futures&package-manager=cargo&previous-version=0.1.28&new-version=0.1.30)

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>
2020-11-25 09:27:20 -05:00
WPT Sync Bot
d6361c0290 Update web-platform-tests to revision 93b6866ff28c52876dce145702c42511150c04bc 2020-11-25 10:57:43 +00:00
bors-servo
22f893e39a
Auto merge of #27825 - servo:dependabot/cargo/rustc-demangle-0.1.18, r=jdm
Bump rustc-demangle from 0.1.16 to 0.1.18

Bumps [rustc-demangle](https://github.com/alexcrichton/rustc-demangle) from 0.1.16 to 0.1.18.
<details>
<summary>Commits</summary>
<ul>
<li><a href="8c700799ee"><code>8c70079</code></a> Bump to 0.1.18</li>
<li><a href="7d2f5a42e8"><code>7d2f5a4</code></a> Print <code>char</code> using <code>{:?}</code> (<a href="https://github-redirect.dependabot.com/alexcrichton/rustc-demangle/issues/41">#41</a>)</li>
<li><a href="5119b5f76b"><code>5119b5f</code></a> Bump to 0.1.17</li>
<li><a href="7551efa82f"><code>7551efa</code></a> Elide the type when the const value is a placeholder <code>p</code> (<a href="https://github-redirect.dependabot.com/alexcrichton/rustc-demangle/issues/40">#40</a>)</li>
<li><a href="6e407b5377"><code>6e407b5</code></a> Add support for <code>min_const_generics</code> constants (<a href="https://github-redirect.dependabot.com/alexcrichton/rustc-demangle/issues/39">#39</a>)</li>
<li><a href="c4e3ab004e"><code>c4e3ab0</code></a> Add some docs about the C API</li>
<li><a href="1ccd9b4276"><code>1ccd9b4</code></a> C API wrapper (<a href="https://github-redirect.dependabot.com/alexcrichton/rustc-demangle/issues/14">#14</a>)</li>
<li><a href="b2f44f88dc"><code>b2f44f8</code></a> use if let and while let</li>
<li><a href="e9a47da0b0"><code>e9a47da</code></a> apply some style fix from clippy</li>
<li><a href="9a2ef96710"><code>9a2ef96</code></a> replace try! with ?</li>
<li>Additional commits viewable in <a href="https://github.com/alexcrichton/rustc-demangle/compare/0.1.16...0.1.18">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=rustc-demangle&package-manager=cargo&previous-version=0.1.16&new-version=0.1.18)](https://dependabot.com/compatibility-score/?dependency-name=rustc-demangle&package-manager=cargo&previous-version=0.1.16&new-version=0.1.18)

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>
2020-11-25 04:42:38 -05:00
bors-servo
bae1412dbf
Auto merge of #27826 - servo:dependabot/cargo/gfx-memory-0.2.2, r=jdm
Bump gfx-memory from 0.2.0 to 0.2.2

Bumps [gfx-memory](https://github.com/gfx-rs/gfx-extras) from 0.2.0 to 0.2.2.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/gfx-rs/gfx-extras/commits">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=gfx-memory&package-manager=cargo&previous-version=0.2.0&new-version=0.2.2)](https://dependabot.com/compatibility-score/?dependency-name=gfx-memory&package-manager=cargo&previous-version=0.2.0&new-version=0.2.2)

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>
2020-11-25 03:20:33 -05:00
dependabot-preview[bot]
cbe2e6dcfe
Bump bytemuck from 1.2.0 to 1.4.1
Bumps [bytemuck](https://github.com/Lokathor/bytemuck) from 1.2.0 to 1.4.1.
- [Release notes](https://github.com/Lokathor/bytemuck/releases)
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](https://github.com/Lokathor/bytemuck/compare/v1.2.0...v1.4.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-25 06:36:17 +00:00
dependabot-preview[bot]
9305c9ccde
Bump futures from 0.1.28 to 0.1.30
Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.1.28 to 0.1.30.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/futures-rs/compare/0.1.28...0.1.30)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-25 06:33:04 +00:00
dependabot-preview[bot]
e7eda61f46
Bump gfx-memory from 0.2.0 to 0.2.2
Bumps [gfx-memory](https://github.com/gfx-rs/gfx-extras) from 0.2.0 to 0.2.2.
- [Release notes](https://github.com/gfx-rs/gfx-extras/releases)
- [Changelog](https://github.com/gfx-rs/gfx-extras/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gfx-rs/gfx-extras/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-25 06:32:31 +00:00
dependabot-preview[bot]
7404458ac5
Bump rustc-demangle from 0.1.16 to 0.1.18
Bumps [rustc-demangle](https://github.com/alexcrichton/rustc-demangle) from 0.1.16 to 0.1.18.
- [Release notes](https://github.com/alexcrichton/rustc-demangle/releases)
- [Commits](https://github.com/alexcrichton/rustc-demangle/compare/0.1.16...0.1.18)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-25 06:31:29 +00:00
bors-servo
90e8e19f5e
Auto merge of #27817 - servo:dependabot/cargo/gfx-backend-dx11-0.6.15, r=jdm
Bump gfx-backend-dx11 from 0.6.0 to 0.6.15

Bumps [gfx-backend-dx11](https://github.com/gfx-rs/gfx) from 0.6.0 to 0.6.15.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/gfx-rs/gfx/blob/master/CHANGELOG.md">gfx-backend-dx11's changelog</a>.</em></p>
<blockquote>
<h1>Change Log</h1>
<h3>backend-dx12-unreleased</h3>
<ul>
<li>fix SPIR-V entry point selection</li>
</ul>
<h3>backend-vulkan-0.6.5 (15-10-2020)</h3>
<ul>
<li>support different types of descriptors in a single <code>DescriptorSetWrite</code></li>
</ul>
<h3>backend-dx12-0.6.3 backend-dx11-0.6.1 backend-metal-0.6.2 auxil-0.5.1 (31-08-2020)</h3>
<ul>
<li>update spirv_cross to 0.21:
<ul>
<li>force zero initialization in all generated shaders</li>
<li>force the use of native arrays for MSL</li>
</ul>
</li>
</ul>
<h3>backend-dx12-0.6.7 (12-10-2020)</h3>
<ul>
<li>get proper support for compressed textures</li>
</ul>
<h3>backend-dx12-0.6.6 (05-10-2020)</h3>
<ul>
<li>allow color blend factors to be used on alpha channel</li>
</ul>
<h3>backend-dx12-0.6.5 (04-10-2020)</h3>
<ul>
<li>implement command buffer markers</li>
<li>debug names for render passes and descriptor sets</li>
</ul>
<h3>backend-vulkan-0.6.3 (30-09-2020)</h3>
<ul>
<li>enable VK_KHR_maintenance3 when VK_EXT_descriptor_indexing is enabled</li>
</ul>
<h3>backend-dx12-0.6.4 backend-vulkan-0.6.2 backend-metal-0.6.3 (23-09-2020)</h3>
<ul>
<li>fix descriptor indexing features</li>
</ul>
<h3>backend-dx11-0.6.4 (07-09-2020)</h3>
<ul>
<li>fix memory flush ranges</li>
<li>support presentation modes</li>
</ul>
<h3>backend-dx11-0.6.3 (04-09-2020)</h3>
<ul>
<li>fix cpu-visible mapping</li>
<li>fix UAV reset count</li>
</ul>
<h3>backend-dx11-0.6.2 (02-09-2020)</h3>
<ul>
<li>fix bindings filter by shader stages</li>
<li>implement copies from buffers into R8, RG8, and RGBA8 textures</li>
<li>fix read-only storage buffer support</li>
<li>fix race condition in internal shader operations</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/gfx-rs/gfx/commits">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=gfx-backend-dx11&package-manager=cargo&previous-version=0.6.0&new-version=0.6.15)](https://dependabot.com/compatibility-score/?dependency-name=gfx-backend-dx11&package-manager=cargo&previous-version=0.6.0&new-version=0.6.15)

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>
2020-11-24 23:26:38 -05:00
bors-servo
cc57d355a5
Auto merge of #27815 - servo:dependabot/cargo/libz-sys-1.1.2, r=jdm
Bump libz-sys from 1.0.25 to 1.1.2

Bumps [libz-sys](https://github.com/rust-lang/libz-sys) from 1.0.25 to 1.1.2.
<details>
<summary>Commits</summary>
<ul>
<li><a href="36b3071331"><code>36b3071</code></a> libz-sys 1.1.2</li>
<li><a href="144f2ee2cc"><code>144f2ee</code></a> Update zlib-ng</li>
<li><a href="81026e996e"><code>81026e9</code></a> Define _C99_SOURCE on all apple targets, not just ios</li>
<li><a href="461e100e99"><code>461e100</code></a> libz-sys 1.1.1</li>
<li><a href="7b426ec087"><code>7b426ec</code></a> Update to the latest zlib-ng, for optimizations and Windows warning fixes</li>
<li><a href="ae51e3987f"><code>ae51e39</code></a> Fix a typo</li>
<li><a href="af4c939a01"><code>af4c939</code></a> Use <code>ctest2</code> instead of the original to fix warnings</li>
<li><a href="038e3f2de9"><code>038e3f2</code></a> Switch to GitHub Actions, and expand CI coverage</li>
<li><a href="7aa6214e34"><code>7aa6214</code></a> On Windows, use the right library name</li>
<li><a href="617538bfcb"><code>617538b</code></a> build.rs: Explicitly link zlib-ng statically</li>
<li>Additional commits viewable in <a href="https://github.com/rust-lang/libz-sys/compare/1.0.25...1.1.2">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=libz-sys&package-manager=cargo&previous-version=1.0.25&new-version=1.1.2)](https://dependabot.com/compatibility-score/?dependency-name=libz-sys&package-manager=cargo&previous-version=1.0.25&new-version=1.1.2)

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>
2020-11-24 20:41:30 -05:00
bors-servo
95fd0dddb9
Auto merge of #27813 - servo:dependabot/cargo/env_logger-0.8.2, r=jdm
Bump env_logger from 0.7.1 to 0.8.2

Bumps [env_logger](https://github.com/env-logger-rs/env_logger) from 0.7.1 to 0.8.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/env-logger-rs/env_logger/releases">env_logger's releases</a>.</em></p>
<blockquote>
<h2>0.8.2</h2>
<p>Fixed a panic on io errors when writing to stdout / stderr (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/184">#184</a>).</p>
<h2>0.8.1</h2>
<p>Update links in the documentation that were pointing to the old repository location.</p>
<h2>0.8.0</h2>
<p>Breaking changes:</p>
<ul>
<li>Update public dependency humantime to 2.0</li>
</ul>
<p>Improvements:</p>
<ul>
<li>Update default colors for debug (white =&gt; blue) and trace (black =&gt; cyan)</li>
</ul>
<p>Deprecations:</p>
<ul>
<li><code>env_logger::from_env</code> has been deprecated in favor of <code>env_logger::Builder::from_env</code></li>
</ul>
<p>This release raises the minimum supported Rust version to 1.41.0.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="0f53c8dd5b"><code>0f53c8d</code></a> Release version 0.8.2</li>
<li><a href="26e821b94f"><code>26e821b</code></a> Update repository links and release 0.8.1</li>
<li><a href="9ffe00de4f"><code>9ffe00d</code></a> Release version 0.8.0</li>
<li><a href="2b33c97117"><code>2b33c97</code></a> Fix rustc &amp; clippy lints</li>
<li><a href="b8c3754a1d"><code>b8c3754</code></a> chore(examples): add syslog friendly format (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/174">#174</a>)</li>
<li><a href="a5a7ddc34e"><code>a5a7ddc</code></a> ci(docs): remove ci crate (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/173">#173</a>)</li>
<li><a href="3a331e4636"><code>3a331e4</code></a> chore(readme): fix badge links</li>
<li><a href="eeedfa99be"><code>eeedfa9</code></a> ci(docs): add manual run trigger (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/171">#171</a>)</li>
<li><a href="2793bb5696"><code>2793bb5</code></a> ci(workflow): add documentation workflow (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/170">#170</a>)</li>
<li><a href="0ef5cffa29"><code>0ef5cff</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/168">#168</a> from KodrAus/chore/build-fn-cleanup</li>
<li>Additional commits viewable in <a href="https://github.com/env-logger-rs/env_logger/compare/v0.7.1...v0.8.2">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=env_logger&package-manager=cargo&previous-version=0.7.1&new-version=0.8.2)](https://dependabot.com/compatibility-score/?dependency-name=env_logger&package-manager=cargo&previous-version=0.7.1&new-version=0.8.2)

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>
2020-11-24 20:30:24 -05:00
dependabot-preview[bot]
056a0380bd Bump env_logger from 0.7.1 to 0.8.2
Bumps [env_logger](https://github.com/env-logger-rs/env_logger) from 0.7.1 to 0.8.2.
- [Release notes](https://github.com/env-logger-rs/env_logger/releases)
- [Changelog](https://github.com/env-logger-rs/env_logger/blob/master/CHANGELOG.md)
- [Commits](https://github.com/env-logger-rs/env_logger/compare/v0.7.1...v0.8.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-24 16:24:21 -05:00
bors-servo
15fbf10b45
Auto merge of #27814 - servo:dependabot/cargo/string_cache-0.8.1, r=jdm
Bump string_cache from 0.8.0 to 0.8.1

Bumps [string_cache](https://github.com/servo/string-cache) from 0.8.0 to 0.8.1.
<details>
<summary>Commits</summary>
<ul>
<li><a href="82ac0d955d"><code>82ac0d9</code></a> Bump to 0.8.1</li>
<li><a href="af2c7707e7"><code>af2c770</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/string-cache/issues/235">#235</a> - thomcc:optional-serde, r=jdm</li>
<li><a href="7f50fe0360"><code>7f50fe0</code></a> Make serde dependency optional, but enabled by default</li>
<li><a href="86a33eb3dc"><code>86a33eb</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/string-cache/issues/233">#233</a> - servo:unique-atom-const-names, r=SimonSapin</li>
<li><a href="b78c9da2e8"><code>b78c9da</code></a> Use unique const names in string_cache_codegen</li>
<li>See full diff in <a href="https://github.com/servo/string-cache/compare/v0.8.0...v0.8.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=string_cache&package-manager=cargo&previous-version=0.8.0&new-version=0.8.1)](https://dependabot.com/compatibility-score/?dependency-name=string_cache&package-manager=cargo&previous-version=0.8.0&new-version=0.8.1)

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>
2020-11-24 16:20:59 -05:00
bors-servo
40624e5a7d
Auto merge of #27811 - servo:dependabot/cargo/futures-channel-0.3.8, r=jdm
Bump futures-channel from 0.3.5 to 0.3.8

Bumps [futures-channel](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures-channel's releases</a>.</em></p>
<blockquote>
<h2>0.3.8</h2>
<ul>
<li>Switch proc-macros to use native <code>#[proc_macro]</code> at Rust 1.45+ (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2243">#2243</a>)</li>
<li>Add <code>WeakShared</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2169">#2169</a>)</li>
<li>Add <code>TryStreamExt::try_buffered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2245">#2245</a>)</li>
<li>Add <code>StreamExt::cycle</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Implemented <code>Clone</code> for <code>stream::{Empty, Pending, Repeat, Iter}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2248">#2248</a>, <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Fix panic in some <code>TryStreamExt</code> combinators (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2250">#2250</a>)</li>
</ul>
<h2>0.3.7</h2>
<ul>
<li>Fixed unsoundness in <code>MappedMutexGuard</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2240">#2240</a>)</li>
<li>Re-exported <code>TakeUntil</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2235">#2235</a>)</li>
<li>futures-test: Prevent double panic in <code>panic_waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2236">#2236</a>)</li>
</ul>
<h2>0.3.6</h2>
<ul>
<li>Fixed UB due to missing 'static on <code>task::waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2206">#2206</a>)</li>
<li>Added <code>AsyncBufReadExt::fill_buf</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2225">#2225</a>)</li>
<li>Added <code>TryStreamExt::try_take_while</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2212">#2212</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>mpsc::{Sender, UnboundedSender}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2179">#2179</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>oneshot::Sender</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2158">#2158</a>)</li>
<li>Implement <code>FusedStream</code> for <code>FuturesOrdered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2205">#2205</a>)</li>
<li>Fixed documentation links</li>
<li>Improved documentation</li>
<li>futures-test: Added <code>track_closed</code> method to <code>AsyncWriteTestExt</code> and <code>SinkTestExt</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2159">#2159</a>)</li>
<li>futures-test: Implemented more traits for <code>InterleavePending</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</li>
<li>futures-test: Implemented more traits for <code>AssertUnmoved</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</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-channel's changelog</a>.</em></p>
<blockquote>
<h1>0.3.8 - 2020-11-04</h1>
<ul>
<li>Switch proc-macros to use native <code>#[proc_macro]</code> at Rust 1.45+ (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2243">#2243</a>)</li>
<li>Add <code>WeakShared</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2169">#2169</a>)</li>
<li>Add <code>TryStreamExt::try_buffered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2245">#2245</a>)</li>
<li>Add <code>StreamExt::cycle</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Implemented <code>Clone</code> for <code>stream::{Empty, Pending, Repeat, Iter}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2248">#2248</a>, <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Fix panic in some <code>TryStreamExt</code> combinators (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2250">#2250</a>)</li>
</ul>
<h1>0.3.7 - 2020-10-23</h1>
<ul>
<li>Fixed unsoundness in <code>MappedMutexGuard</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2240">#2240</a>)</li>
<li>Re-exported <code>TakeUntil</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2235">#2235</a>)</li>
<li>futures-test: Prevent double panic in <code>panic_waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2236">#2236</a>)</li>
</ul>
<h1>0.3.6 - 2020-10-06</h1>
<ul>
<li>Fixed UB due to missing 'static on <code>task::waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2206">#2206</a>)</li>
<li>Added <code>AsyncBufReadExt::fill_buf</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2225">#2225</a>)</li>
<li>Added <code>TryStreamExt::try_take_while</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2212">#2212</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>mpsc::{Sender, UnboundedSender}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2179">#2179</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>oneshot::Sender</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2158">#2158</a>)</li>
<li>Implement <code>FusedStream</code> for <code>FuturesOrdered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2205">#2205</a>)</li>
<li>Fixed documentation links</li>
<li>Improved documentation</li>
<li>futures-test: Added <code>track_closed</code> method to <code>AsyncWriteTestExt</code> and <code>SinkTestExt</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2159">#2159</a>)</li>
<li>futures-test: Implemented more traits for <code>InterleavePending</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</li>
<li>futures-test: Implemented more traits for <code>AssertUnmoved</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="bde29dad82"><code>bde29da</code></a> Release 0.3.8</li>
<li><a href="ed0c997e86"><code>ed0c997</code></a> Remove needless borrows and method calls (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2259">#2259</a>)</li>
<li><a href="f521ecc3be"><code>f521ecc</code></a> Use HTTPS (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2258">#2258</a>)</li>
<li><a href="a570781fed"><code>a570781</code></a> Add StreamExt::cycle (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li><a href="1fa794a593"><code>1fa794a</code></a> Use Self keyword instead of concrete type name (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2251">#2251</a>)</li>
<li><a href="90b4a8e6cb"><code>90b4a8e</code></a> Add TryStreamExt::try_buffered (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2245">#2245</a>)</li>
<li><a href="76672516d3"><code>7667251</code></a> Fix panic in some TryStreamExt combinators (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2250">#2250</a>)</li>
<li><a href="310fd0d608"><code>310fd0d</code></a> impl Clone for stream::{Empty, Pending, Repeat} (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2248">#2248</a>)</li>
<li><a href="e363f1839f"><code>e363f18</code></a> Fix clippy::unnecessary_cast warning</li>
<li><a href="4122f3d5af"><code>4122f3d</code></a> Use only_hack_old_rustc for proc_macro_hack (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2243">#2243</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.5...0.3.8">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=futures-channel&package-manager=cargo&previous-version=0.3.5&new-version=0.3.8)](https://dependabot.com/compatibility-score/?dependency-name=futures-channel&package-manager=cargo&previous-version=0.3.5&new-version=0.3.8)

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>
2020-11-24 15:06:52 -05:00
bors-servo
b5c0bb2f92
Auto merge of #27810 - servo:dependabot/cargo/futures-task-0.3.8, r=jdm
Bump futures-task from 0.3.5 to 0.3.8

Bumps [futures-task](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures-task's releases</a>.</em></p>
<blockquote>
<h2>0.3.8</h2>
<ul>
<li>Switch proc-macros to use native <code>#[proc_macro]</code> at Rust 1.45+ (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2243">#2243</a>)</li>
<li>Add <code>WeakShared</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2169">#2169</a>)</li>
<li>Add <code>TryStreamExt::try_buffered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2245">#2245</a>)</li>
<li>Add <code>StreamExt::cycle</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Implemented <code>Clone</code> for <code>stream::{Empty, Pending, Repeat, Iter}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2248">#2248</a>, <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Fix panic in some <code>TryStreamExt</code> combinators (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2250">#2250</a>)</li>
</ul>
<h2>0.3.7</h2>
<ul>
<li>Fixed unsoundness in <code>MappedMutexGuard</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2240">#2240</a>)</li>
<li>Re-exported <code>TakeUntil</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2235">#2235</a>)</li>
<li>futures-test: Prevent double panic in <code>panic_waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2236">#2236</a>)</li>
</ul>
<h2>0.3.6</h2>
<ul>
<li>Fixed UB due to missing 'static on <code>task::waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2206">#2206</a>)</li>
<li>Added <code>AsyncBufReadExt::fill_buf</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2225">#2225</a>)</li>
<li>Added <code>TryStreamExt::try_take_while</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2212">#2212</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>mpsc::{Sender, UnboundedSender}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2179">#2179</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>oneshot::Sender</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2158">#2158</a>)</li>
<li>Implement <code>FusedStream</code> for <code>FuturesOrdered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2205">#2205</a>)</li>
<li>Fixed documentation links</li>
<li>Improved documentation</li>
<li>futures-test: Added <code>track_closed</code> method to <code>AsyncWriteTestExt</code> and <code>SinkTestExt</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2159">#2159</a>)</li>
<li>futures-test: Implemented more traits for <code>InterleavePending</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</li>
<li>futures-test: Implemented more traits for <code>AssertUnmoved</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</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-task's changelog</a>.</em></p>
<blockquote>
<h1>0.3.8 - 2020-11-04</h1>
<ul>
<li>Switch proc-macros to use native <code>#[proc_macro]</code> at Rust 1.45+ (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2243">#2243</a>)</li>
<li>Add <code>WeakShared</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2169">#2169</a>)</li>
<li>Add <code>TryStreamExt::try_buffered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2245">#2245</a>)</li>
<li>Add <code>StreamExt::cycle</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Implemented <code>Clone</code> for <code>stream::{Empty, Pending, Repeat, Iter}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2248">#2248</a>, <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Fix panic in some <code>TryStreamExt</code> combinators (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2250">#2250</a>)</li>
</ul>
<h1>0.3.7 - 2020-10-23</h1>
<ul>
<li>Fixed unsoundness in <code>MappedMutexGuard</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2240">#2240</a>)</li>
<li>Re-exported <code>TakeUntil</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2235">#2235</a>)</li>
<li>futures-test: Prevent double panic in <code>panic_waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2236">#2236</a>)</li>
</ul>
<h1>0.3.6 - 2020-10-06</h1>
<ul>
<li>Fixed UB due to missing 'static on <code>task::waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2206">#2206</a>)</li>
<li>Added <code>AsyncBufReadExt::fill_buf</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2225">#2225</a>)</li>
<li>Added <code>TryStreamExt::try_take_while</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2212">#2212</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>mpsc::{Sender, UnboundedSender}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2179">#2179</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>oneshot::Sender</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2158">#2158</a>)</li>
<li>Implement <code>FusedStream</code> for <code>FuturesOrdered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2205">#2205</a>)</li>
<li>Fixed documentation links</li>
<li>Improved documentation</li>
<li>futures-test: Added <code>track_closed</code> method to <code>AsyncWriteTestExt</code> and <code>SinkTestExt</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2159">#2159</a>)</li>
<li>futures-test: Implemented more traits for <code>InterleavePending</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</li>
<li>futures-test: Implemented more traits for <code>AssertUnmoved</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="bde29dad82"><code>bde29da</code></a> Release 0.3.8</li>
<li><a href="ed0c997e86"><code>ed0c997</code></a> Remove needless borrows and method calls (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2259">#2259</a>)</li>
<li><a href="f521ecc3be"><code>f521ecc</code></a> Use HTTPS (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2258">#2258</a>)</li>
<li><a href="a570781fed"><code>a570781</code></a> Add StreamExt::cycle (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li><a href="1fa794a593"><code>1fa794a</code></a> Use Self keyword instead of concrete type name (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2251">#2251</a>)</li>
<li><a href="90b4a8e6cb"><code>90b4a8e</code></a> Add TryStreamExt::try_buffered (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2245">#2245</a>)</li>
<li><a href="76672516d3"><code>7667251</code></a> Fix panic in some TryStreamExt combinators (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2250">#2250</a>)</li>
<li><a href="310fd0d608"><code>310fd0d</code></a> impl Clone for stream::{Empty, Pending, Repeat} (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2248">#2248</a>)</li>
<li><a href="e363f1839f"><code>e363f18</code></a> Fix clippy::unnecessary_cast warning</li>
<li><a href="4122f3d5af"><code>4122f3d</code></a> Use only_hack_old_rustc for proc_macro_hack (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2243">#2243</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.5...0.3.8">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=futures-task&package-manager=cargo&previous-version=0.3.5&new-version=0.3.8)](https://dependabot.com/compatibility-score/?dependency-name=futures-task&package-manager=cargo&previous-version=0.3.5&new-version=0.3.8)

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>
2020-11-24 14:05:59 -05:00
bors-servo
3a80033aef
Auto merge of #27809 - servo:dependabot/cargo/futures-io-0.3.8, r=jdm
Bump futures-io from 0.3.5 to 0.3.8

Bumps [futures-io](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures-io's releases</a>.</em></p>
<blockquote>
<h2>0.3.8</h2>
<ul>
<li>Switch proc-macros to use native <code>#[proc_macro]</code> at Rust 1.45+ (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2243">#2243</a>)</li>
<li>Add <code>WeakShared</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2169">#2169</a>)</li>
<li>Add <code>TryStreamExt::try_buffered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2245">#2245</a>)</li>
<li>Add <code>StreamExt::cycle</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Implemented <code>Clone</code> for <code>stream::{Empty, Pending, Repeat, Iter}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2248">#2248</a>, <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Fix panic in some <code>TryStreamExt</code> combinators (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2250">#2250</a>)</li>
</ul>
<h2>0.3.7</h2>
<ul>
<li>Fixed unsoundness in <code>MappedMutexGuard</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2240">#2240</a>)</li>
<li>Re-exported <code>TakeUntil</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2235">#2235</a>)</li>
<li>futures-test: Prevent double panic in <code>panic_waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2236">#2236</a>)</li>
</ul>
<h2>0.3.6</h2>
<ul>
<li>Fixed UB due to missing 'static on <code>task::waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2206">#2206</a>)</li>
<li>Added <code>AsyncBufReadExt::fill_buf</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2225">#2225</a>)</li>
<li>Added <code>TryStreamExt::try_take_while</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2212">#2212</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>mpsc::{Sender, UnboundedSender}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2179">#2179</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>oneshot::Sender</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2158">#2158</a>)</li>
<li>Implement <code>FusedStream</code> for <code>FuturesOrdered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2205">#2205</a>)</li>
<li>Fixed documentation links</li>
<li>Improved documentation</li>
<li>futures-test: Added <code>track_closed</code> method to <code>AsyncWriteTestExt</code> and <code>SinkTestExt</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2159">#2159</a>)</li>
<li>futures-test: Implemented more traits for <code>InterleavePending</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</li>
<li>futures-test: Implemented more traits for <code>AssertUnmoved</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</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-io's changelog</a>.</em></p>
<blockquote>
<h1>0.3.8 - 2020-11-04</h1>
<ul>
<li>Switch proc-macros to use native <code>#[proc_macro]</code> at Rust 1.45+ (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2243">#2243</a>)</li>
<li>Add <code>WeakShared</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2169">#2169</a>)</li>
<li>Add <code>TryStreamExt::try_buffered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2245">#2245</a>)</li>
<li>Add <code>StreamExt::cycle</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Implemented <code>Clone</code> for <code>stream::{Empty, Pending, Repeat, Iter}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2248">#2248</a>, <a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li>Fix panic in some <code>TryStreamExt</code> combinators (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2250">#2250</a>)</li>
</ul>
<h1>0.3.7 - 2020-10-23</h1>
<ul>
<li>Fixed unsoundness in <code>MappedMutexGuard</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2240">#2240</a>)</li>
<li>Re-exported <code>TakeUntil</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2235">#2235</a>)</li>
<li>futures-test: Prevent double panic in <code>panic_waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2236">#2236</a>)</li>
</ul>
<h1>0.3.6 - 2020-10-06</h1>
<ul>
<li>Fixed UB due to missing 'static on <code>task::waker</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2206">#2206</a>)</li>
<li>Added <code>AsyncBufReadExt::fill_buf</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2225">#2225</a>)</li>
<li>Added <code>TryStreamExt::try_take_while</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2212">#2212</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>mpsc::{Sender, UnboundedSender}</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2179">#2179</a>)</li>
<li>Added <code>is_connected_to</code> method to <code>oneshot::Sender</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2158">#2158</a>)</li>
<li>Implement <code>FusedStream</code> for <code>FuturesOrdered</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2205">#2205</a>)</li>
<li>Fixed documentation links</li>
<li>Improved documentation</li>
<li>futures-test: Added <code>track_closed</code> method to <code>AsyncWriteTestExt</code> and <code>SinkTestExt</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2159">#2159</a>)</li>
<li>futures-test: Implemented more traits for <code>InterleavePending</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</li>
<li>futures-test: Implemented more traits for <code>AssertUnmoved</code> (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2208">#2208</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="bde29dad82"><code>bde29da</code></a> Release 0.3.8</li>
<li><a href="ed0c997e86"><code>ed0c997</code></a> Remove needless borrows and method calls (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2259">#2259</a>)</li>
<li><a href="f521ecc3be"><code>f521ecc</code></a> Use HTTPS (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2258">#2258</a>)</li>
<li><a href="a570781fed"><code>a570781</code></a> Add StreamExt::cycle (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2252">#2252</a>)</li>
<li><a href="1fa794a593"><code>1fa794a</code></a> Use Self keyword instead of concrete type name (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2251">#2251</a>)</li>
<li><a href="90b4a8e6cb"><code>90b4a8e</code></a> Add TryStreamExt::try_buffered (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2245">#2245</a>)</li>
<li><a href="76672516d3"><code>7667251</code></a> Fix panic in some TryStreamExt combinators (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2250">#2250</a>)</li>
<li><a href="310fd0d608"><code>310fd0d</code></a> impl Clone for stream::{Empty, Pending, Repeat} (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2248">#2248</a>)</li>
<li><a href="e363f1839f"><code>e363f18</code></a> Fix clippy::unnecessary_cast warning</li>
<li><a href="4122f3d5af"><code>4122f3d</code></a> Use only_hack_old_rustc for proc_macro_hack (<a href="https://github-redirect.dependabot.com/rust-lang/futures-rs/issues/2243">#2243</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.5...0.3.8">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=futures-io&package-manager=cargo&previous-version=0.3.5&new-version=0.3.8)](https://dependabot.com/compatibility-score/?dependency-name=futures-io&package-manager=cargo&previous-version=0.3.5&new-version=0.3.8)

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>
2020-11-24 13:01:12 -05:00
bors-servo
cd0991ae8b
Auto merge of #27808 - servo:dependabot/cargo/crc32fast-1.2.1, r=jdm
Bump crc32fast from 1.2.0 to 1.2.1

Bumps [crc32fast](https://github.com/srijs/rust-crc32fast) from 1.2.0 to 1.2.1.
<details>
<summary>Commits</summary>
<ul>
<li><a href="c6a423b4da"><code>c6a423b</code></a> release 1.2.1</li>
<li><a href="56070590f8"><code>5607059</code></a> remove powerpc environment from CI</li>
<li><a href="39b16bc8cc"><code>39b16bc</code></a> Update rand dependency to 0.7</li>
<li><a href="40865a4bd3"><code>40865a4</code></a> Update quickcheck dependency to 0.9</li>
<li><a href="c6d8c2c376"><code>c6d8c2c</code></a> update cfg-if dependency</li>
<li><a href="745de53176"><code>745de53</code></a> Raise MSRV to 1.31</li>
<li><a href="0ec13c8b3f"><code>0ec13c8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/srijs/rust-crc32fast/issues/11">#11</a> from LingMan/patch-1</li>
<li><a href="6c9b7b182a"><code>6c9b7b1</code></a> Fix typo in the readme</li>
<li>See full diff in <a href="https://github.com/srijs/rust-crc32fast/compare/v1.2.0...v1.2.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=crc32fast&package-manager=cargo&previous-version=1.2.0&new-version=1.2.1)](https://dependabot.com/compatibility-score/?dependency-name=crc32fast&package-manager=cargo&previous-version=1.2.0&new-version=1.2.1)

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>
2020-11-24 12:01:11 -05:00
bors-servo
b0fee47335
Auto merge of #27807 - twilco:improve-bind-to-tree-naming, r=jdm
Replace generic 'value' variable name with 'id' and 'name' to reduce confusion

<!-- Please describe your changes on the following line: -->

I was digging through this code trying to fix a WPT and thought these could be named a bit more clearly.  `value` is vague, and the fact it was used in both cases falsely implied they were related.

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)

<!-- Either: -->
- [ ] There are tests for these changes OR
- [x] These changes do not require tests because there are no functional changes.

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
2020-11-24 11:38:44 -05:00
dependabot-preview[bot]
4b033403e3 Bump gfx-backend-dx11 from 0.6.0 to 0.6.15
Bumps [gfx-backend-dx11](https://github.com/gfx-rs/gfx) from 0.6.0 to 0.6.15.
- [Release notes](https://github.com/gfx-rs/gfx/releases)
- [Changelog](https://github.com/gfx-rs/gfx/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gfx-rs/gfx/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-24 11:16:16 -05:00
dependabot-preview[bot]
aa0376ffc2 Bump futures-channel from 0.3.5 to 0.3.8
Bumps [futures-channel](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.8.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.5...0.3.8)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-24 11:13:12 -05:00
bors-servo
7b4298c731
Auto merge of #27818 - servo-wpt-sync:wpt_update_24-11-2020, r=servo-wpt-sync
Sync WPT with upstream (24-11-2020)

Automated downstream sync of changes from upstream as of 24-11-2020.
[no-wpt-sync]
r? @servo-wpt-sync
2020-11-24 08:45:32 -05:00
WPT Sync Bot
465b88905c Update web-platform-tests to revision 06e520971307b41e2f2a0317a35d125bd9483263 2020-11-24 10:35:08 +00:00
dependabot-preview[bot]
057df85e46
Bump libz-sys from 1.0.25 to 1.1.2
Bumps [libz-sys](https://github.com/rust-lang/libz-sys) from 1.0.25 to 1.1.2.
- [Release notes](https://github.com/rust-lang/libz-sys/releases)
- [Commits](https://github.com/rust-lang/libz-sys/compare/1.0.25...1.1.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-24 06:33:53 +00:00
dependabot-preview[bot]
d49922ec5e
Bump string_cache from 0.8.0 to 0.8.1
Bumps [string_cache](https://github.com/servo/string-cache) from 0.8.0 to 0.8.1.
- [Release notes](https://github.com/servo/string-cache/releases)
- [Commits](https://github.com/servo/string-cache/compare/v0.8.0...v0.8.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-24 06:33:20 +00:00
dependabot-preview[bot]
71dd9b8166
Bump futures-task from 0.3.5 to 0.3.8
Bumps [futures-task](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.8.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.5...0.3.8)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-24 06:31:01 +00:00
dependabot-preview[bot]
f9660672be
Bump futures-io from 0.3.5 to 0.3.8
Bumps [futures-io](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.8.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.5...0.3.8)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-24 06:30:36 +00:00
dependabot-preview[bot]
3b74301bde
Bump crc32fast from 1.2.0 to 1.2.1
Bumps [crc32fast](https://github.com/srijs/rust-crc32fast) from 1.2.0 to 1.2.1.
- [Release notes](https://github.com/srijs/rust-crc32fast/releases)
- [Commits](https://github.com/srijs/rust-crc32fast/compare/v1.2.0...v1.2.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-24 06:29:29 +00:00
Tyler Wilcock
61c5ab8f69 Replace generic 'value' variable name with 'id' and 'name' to reduce confusion 2020-11-23 23:31:34 -06:00
bors-servo
ec09417358
Auto merge of #27799 - servo:dependabot/cargo/url-2.2.0, r=jdm
Bump url from 2.1.1 to 2.2.0

Bumps [url](https://github.com/servo/rust-url) from 2.1.1 to 2.2.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="1182d5d5b9"><code>1182d5d</code></a> Fix readme path</li>
<li><a href="fcf40eae55"><code>fcf40ea</code></a> Update toml to list bench path</li>
<li><a href="82ee0bd3cd"><code>82ee0bd</code></a> Bump url crate version to 2.2.0</li>
<li><a href="a46bec6e54"><code>a46bec6</code></a> chore: silence false positive clippy warning</li>
<li><a href="37460b4ab7"><code>37460b4</code></a> idna: deduplicate punycode test assertions</li>
<li><a href="b665da1b24"><code>b665da1</code></a> chore: pacify clippy some more</li>
<li><a href="9d8a8c5103"><code>9d8a8c5</code></a> chore: fix CI failures from clippy/MSRV</li>
<li><a href="bbfb2c0c79"><code>bbfb2c0</code></a> url: tweak code order in test module</li>
<li><a href="595624961f"><code>5956249</code></a> url: replace use of macros in data-driven tests</li>
<li><a href="c9ed907ed1"><code>c9ed907</code></a> url: remove usage of custom test framework</li>
<li>Additional commits viewable in <a href="https://github.com/servo/rust-url/compare/v2.1.1...v2.2.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=url&package-manager=cargo&previous-version=2.1.1&new-version=2.2.0)](https://dependabot.com/compatibility-score/?dependency-name=url&package-manager=cargo&previous-version=2.1.1&new-version=2.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`.

[//]: # (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>
2020-11-23 23:38:15 -05:00
Josh Matthews
a1263ab508 Update test expectations. 2020-11-23 21:23:52 -05:00
bors-servo
cac7e8cc02
Auto merge of #27798 - servo:dependabot/cargo/regex-1.4.2, r=jdm
Bump regex from 1.3.9 to 1.4.2

Bumps [regex](https://github.com/rust-lang/regex) from 1.3.9 to 1.4.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex's changelog</a>.</em></p>
<blockquote>
<h1>1.4.2 (2020-11-01)</h1>
<p>This is a small bug fix release that bans <code>\P{any}</code>. We previously banned empty
classes like <code>[^\w\W]</code>, but missed the <code>\P{any}</code> case. In the future, we hope
to permit empty classes.</p>
<ul>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/722">#722</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/722">rust-lang/regex#722</a>):
Ban <code>\P{any}</code> to avoid a panic in the regex compiler. Found by OSS-Fuzz.</li>
</ul>
<h1>1.4.1 (2020-10-13)</h1>
<p>This is a small bug fix release that makes <code>\p{cf}</code> work. Previously, it would
report &quot;property not found&quot; even though <code>cf</code> is a valid abbreviation for the
<code>Format</code> general category.</p>
<ul>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/719">#719</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/719">rust-lang/regex#719</a>):
Fixes bug that prevented <code>\p{cf}</code> from working.</li>
</ul>
<h1>1.4.0 (2020-10-11)</h1>
<p>This releases has a few minor documentation fixes as well as some very minor
API additions. The MSRV remains at Rust 1.28 for now, but this is intended to
increase to at least Rust 1.41.1 soon.</p>
<p>This release also adds support for OSS-Fuzz. Kudos to
<a href="https://github.com/DavidKorczynski">@DavidKorczynski</a>
for doing the heavy lifting for that!</p>
<p>New features:</p>
<ul>
<li>[FEATURE <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/649">#649</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/649">rust-lang/regex#649</a>):
Support <code>[</code>, <code>]</code> and <code>.</code> in capture group names.</li>
<li>[FEATURE <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/687">#687</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/687">rust-lang/regex#687</a>):
Add <code>is_empty</code> predicate to <code>RegexSet</code>.</li>
<li>[FEATURE <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/689">#689</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/689">rust-lang/regex#689</a>):
Implement <code>Clone</code> for <code>SubCaptureMatches</code>.</li>
<li>[FEATURE <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/715">#715</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/715">rust-lang/regex#715</a>):
Add <code>empty</code> constructor to <code>RegexSet</code> for convenience.</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/694">#694</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/694">rust-lang/regex#694</a>):
Fix doc example for <code>Replacer::replace_append</code>.</li>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/698">#698</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/698">rust-lang/regex#698</a>):
Clarify docs for <code>s</code> flag when using a <code>bytes::Regex</code>.</li>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/711">#711</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/711">rust-lang/regex#711</a>):
Clarify <code>is_match</code> docs to indicate that it can match anywhere in string.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="3bcae3b695"><code>3bcae3b</code></a> 1.4.2</li>
<li><a href="d65845181d"><code>d658451</code></a> changelog: 1.4.2</li>
<li><a href="8cb337a0a1"><code>8cb337a</code></a> deps: bump regex-syntax to 0.6.21</li>
<li><a href="d03ae186b5"><code>d03ae18</code></a> regex-syntax-0.6.21</li>
<li><a href="6fdb6e123c"><code>6fdb6e1</code></a> syntax: forbid \P{any}</li>
<li><a href="a7ef5f452e"><code>a7ef5f4</code></a> fuzz: fix release profile</li>
<li><a href="44abc5f7c6"><code>44abc5f</code></a> fuzz: enable optimizations in other profiles</li>
<li><a href="9067dfd7e1"><code>9067dfd</code></a> fuzz: compile fuzzer in release mode</li>
<li><a href="d5bf98f293"><code>d5bf98f</code></a> 1.4.1</li>
<li><a href="1aa1e476de"><code>1aa1e47</code></a> deps: bump regex-syntax minimum version to 0.6.20</li>
<li>Additional commits viewable in <a href="https://github.com/rust-lang/regex/compare/1.3.9...1.4.2">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.3.9&new-version=1.4.2)](https://dependabot.com/compatibility-score/?dependency-name=regex&package-manager=cargo&previous-version=1.3.9&new-version=1.4.2)

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>
2020-11-23 10:59:19 -05:00
bors-servo
802d37d353
Auto merge of #27794 - servo:dependabot/cargo/instant-0.1.9, r=jdm
Bump instant from 0.1.6 to 0.1.9

Bumps [instant](https://github.com/sebcrozet/instant) from 0.1.6 to 0.1.9.
<details>
<summary>Commits</summary>
<ul>
<li><a href="eff71cffcc"><code>eff71cf</code></a> Release v0.1.9</li>
<li><a href="c023a97039"><code>c023a97</code></a> Add inaccurate time option</li>
<li><a href="3819881b22"><code>3819881</code></a> Release v0.1.8</li>
<li><a href="5bfaad2835"><code>5bfaad2</code></a> Update to cfg-if 1.0</li>
<li><a href="96feb8a208"><code>96feb8a</code></a> Release v0.1.7</li>
<li><a href="024d577393"><code>024d577</code></a> Remove unused function</li>
<li><a href="3b45cb8b31"><code>3b45cb8</code></a> Add back use Duration</li>
<li><a href="347631608c"><code>3476316</code></a> Use cfg-if for cfgs in wasm</li>
<li><a href="5c5f6519db"><code>5c5f651</code></a> Fix for wasm32-wasi target</li>
<li>See full diff in <a href="https://github.com/sebcrozet/instant/compare/v0.1.6...v0.1.9">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=instant&package-manager=cargo&previous-version=0.1.6&new-version=0.1.9)](https://dependabot.com/compatibility-score/?dependency-name=instant&package-manager=cargo&previous-version=0.1.6&new-version=0.1.9)

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>
2020-11-23 09:55:08 -05:00
bors-servo
8df3cb8306
Auto merge of #27804 - servo-wpt-sync:wpt_update_23-11-2020, r=servo-wpt-sync
Sync WPT with upstream (23-11-2020)

Automated downstream sync of changes from upstream as of 23-11-2020.
[no-wpt-sync]
r? @servo-wpt-sync
2020-11-23 05:44:16 -05:00
WPT Sync Bot
775b941c48 Update web-platform-tests to revision d21eaee14bab28a8bd57727d41330d0bef170a92 2020-11-23 10:43:59 +00:00
dependabot-preview[bot]
025f3d2d56
Bump url from 2.1.1 to 2.2.0
Bumps [url](https://github.com/servo/rust-url) from 2.1.1 to 2.2.0.
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/compare/v2.1.1...v2.2.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-23 06:33:07 +00:00
dependabot-preview[bot]
f724259536
Bump regex from 1.3.9 to 1.4.2
Bumps [regex](https://github.com/rust-lang/regex) from 1.3.9 to 1.4.2.
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/regex/compare/1.3.9...1.4.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-23 06:32:36 +00:00
dependabot-preview[bot]
b8e526f4ef
Bump instant from 0.1.6 to 0.1.9
Bumps [instant](https://github.com/sebcrozet/instant) from 0.1.6 to 0.1.9.
- [Release notes](https://github.com/sebcrozet/instant/releases)
- [Commits](https://github.com/sebcrozet/instant/compare/v0.1.6...v0.1.9)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-23 06:30:03 +00:00
bors-servo
310a1346da
Auto merge of #27777 - atouchet:icns, r=jdm
Update servo.icns icon

<!-- Please describe your changes on the following line: -->
Update .icns icon file. I do not have a Mac so I would appreciate if someone who has one could test this out and make sure it actually fixes the issue.

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [x] These changes fix #27775

<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because ___

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
2020-11-22 23:36:38 -05:00
bors-servo
ce62f6f203
Auto merge of #27789 - wi24rd:patch-1, r=jdm
Fix typo in gstplugin readme.md

<!-- Please describe your changes on the following line: -->

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)

<!-- Either: -->
- [ ] There are tests for these changes OR
- [X] These changes do not require tests because __just change plain text_

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
2020-11-22 15:14:43 -05:00
bors-servo
d68d543eab
Auto merge of #27734 - servo:dependabot/cargo/encoding_rs-0.8.26, r=jdm
Bump encoding_rs from 0.8.23 to 0.8.26

Bumps [encoding_rs](https://github.com/hsivonen/encoding_rs) from 0.8.23 to 0.8.26.
<details>
<summary>Commits</summary>
<ul>
<li><a href="1b026d491d"><code>1b026d4</code></a> Increment version number to 0.8.26.</li>
<li><a href="def44a4b34"><code>def44a4</code></a> Run cargo fmt.</li>
<li><a href="00dac8993d"><code>00dac89</code></a> Remove unused label.</li>
<li><a href="d37917f971"><code>d37917f</code></a> Fix failures in edition 2018 migration when simd-accel is enabled.</li>
<li><a href="3dbf4d1814"><code>3dbf4d1</code></a> Increment version number to 0.8.25.</li>
<li><a href="179c5d124d"><code>179c5d1</code></a> Update to edition 2018.</li>
<li><a href="54137e21d0"><code>54137e2</code></a> Update MSRV documentation.</li>
<li><a href="fe031de987"><code>fe031de</code></a> Remove warnings about unused loop labels</li>
<li><a href="97261b5516"><code>97261b5</code></a> Use MaybeUninit instead of mem::uninitialized</li>
<li><a href="79347dc0ee"><code>79347dc</code></a> Fix 'range patterns are deprecated' warning</li>
<li>Additional commits viewable in <a href="https://github.com/hsivonen/encoding_rs/compare/v0.8.23...v0.8.26">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=encoding_rs&package-manager=cargo&previous-version=0.8.23&new-version=0.8.26)](https://dependabot.com/compatibility-score/?dependency-name=encoding_rs&package-manager=cargo&previous-version=0.8.23&new-version=0.8.26)

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>
2020-11-22 14:16:08 -05:00
bors-servo
a3e9095faa
Auto merge of #27790 - servo-wpt-sync:wpt_update_22-11-2020, r=servo-wpt-sync
Sync WPT with upstream (22-11-2020)

Automated downstream sync of changes from upstream as of 22-11-2020.
[no-wpt-sync]
r? @servo-wpt-sync
2020-11-22 14:05:44 -05:00