Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump downcast-rs from 1.0.3 to 1.1.1 #26612

Merged
merged 1 commit into from May 22, 2020
Merged

Conversation

@dependabot-preview
Copy link
Contributor

dependabot-preview bot commented May 22, 2020

Bumps downcast-rs from 1.0.3 to 1.1.1.

Changelog

Sourced from downcast-rs's changelog.

1.1.1 - 2019-10-28

Changed

  • Used dyn Trait syntax everywhere since it is supported by downcast-rs's min-supported rust version (1.33).

1.1.0 - 2019-10-07

Added

  • Support for downcasting Rc<Trait> and Arc<Trait>.

Changed

  • Minimum supported Rust version upped to 1.33 to support Rc and Arc in the receiver position.

1.0.4 - 2019-04-08

Changed

  • Added local_inner_macros to impl_downcast to allow invoking via namespace.
Commits
  • 9f25dcc Use dyn Trait syntax everywhere since it is supported by this library's MSRV.
  • c7ef06e Correct the min-supported Rust version to be 1.33 in the docs.
  • 1e2da5c Bump version to 1.1.0.
  • b512ab3 Updated README.md and CHANGELOG.md with information about Rc and Arc downcast...
  • f47f70c Update CHANGELOG and bump version to 1.0.4.
  • 8a363ac Add local_inner_macros to impl_downcast to allow invocation via namespace.
  • 183a01b Revert "Merge pull request #6 from dkaste/master" (in favor of local_inner_ma...
  • 68e49a3 Merge pull request #6 from dkaste/master
  • 19d0782 Use $crate prefix for internal macro calls
  • 817d7d0 Update crate description and the README.md to reflect lib.rs doc changes.
  • Additional commits viewable in compare view

Dependabot compatibility score

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


Dependabot commands and options

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:

  • 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)
Bumps [downcast-rs](https://github.com/marcianx/downcast-rs) from 1.0.3 to 1.1.1.
- [Release notes](https://github.com/marcianx/downcast-rs/releases)
- [Changelog](https://github.com/marcianx/downcast-rs/blob/v1.1.1/CHANGELOG.md)
- [Commits](marcianx/downcast-rs@v1.0.3...v1.1.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@jdm
Copy link
Member

jdm commented May 22, 2020

@bors-servo
Copy link
Contributor

bors-servo commented May 22, 2020

📌 Commit a34c7ca has been approved by jdm

@highfive highfive assigned jdm and unassigned Manishearth May 22, 2020
@bors-servo
Copy link
Contributor

bors-servo commented May 22, 2020

Testing commit a34c7ca with merge 0c5ce30...

bors-servo added a commit that referenced this pull request May 22, 2020
Bump downcast-rs from 1.0.3 to 1.1.1

Bumps [downcast-rs](https://github.com/marcianx/downcast-rs) from 1.0.3 to 1.1.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/marcianx/downcast-rs/blob/v1.1.1/CHANGELOG.md">downcast-rs's changelog</a>.</em></p>
<blockquote>
<h2>1.1.1 - 2019-10-28</h2>
<h3>Changed</h3>
<ul>
<li>Used <code>dyn Trait</code> syntax everywhere since it is supported by downcast-rs's
min-supported rust version (1.33).</li>
</ul>
<h2>1.1.0 - 2019-10-07</h2>
<h3>Added</h3>
<ul>
<li>Support for downcasting <code>Rc&lt;Trait&gt;</code> and <code>Arc&lt;Trait&gt;</code>.</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Minimum supported Rust version upped to 1.33 to support <code>Rc</code> and <code>Arc</code> in the
receiver position.</li>
</ul>
<h2>1.0.4 - 2019-04-08</h2>
<h3>Changed</h3>
<ul>
<li>Added <code>local_inner_macros</code> to <code>impl_downcast</code> to allow invoking via namespace.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/marcianx/downcast-rs/commit/9f25dcc28d2abf8eee79bec07683609fc28e97e2"><code>9f25dcc</code></a> Use <code>dyn Trait</code> syntax everywhere since it is supported by this library's MSRV.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/c7ef06ece35dc95718afe572a64b64de124ae28b"><code>c7ef06e</code></a> Correct the min-supported Rust version to be 1.33 in the docs.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/1e2da5c6481366b56a884cc4ed8789264126a759"><code>1e2da5c</code></a> Bump version to 1.1.0.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/b512ab3ba2183932c7a062bc3d5b41ffc084168f"><code>b512ab3</code></a> Updated README.md and CHANGELOG.md with information about Rc and Arc downcast...</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/f47f70c5b612eb38a588bd88bb2ccad6f59e89e8"><code>f47f70c</code></a> Update CHANGELOG and bump version to 1.0.4.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/8a363ac3a959d7235ad748ddaa5e2cc9367510e8"><code>8a363ac</code></a> Add local_inner_macros to impl_downcast to allow invocation via namespace.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/183a01b703ecf0dfbf4dba9900d0d925637eb0f9"><code>183a01b</code></a> Revert &quot;Merge pull request <a href="https://github-redirect.dependabot.com/marcianx/downcast-rs/issues/6">#6</a> from dkaste/master&quot; (in favor of local_inner_ma...</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/68e49a33eadf7eeab0e78f9c4923a0a4196e57e7"><code>68e49a3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/marcianx/downcast-rs/issues/6">#6</a> from dkaste/master</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/19d078242a200114dcb073242c29b1c94e847654"><code>19d0782</code></a> Use <code>$crate</code> prefix for internal macro calls</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/817d7d00e21761ace9be5b8af07a9fcf4cf42da2"><code>817d7d0</code></a> Update crate description and the README.md to reflect lib.rs doc changes.</li>
<li>Additional commits viewable in <a href="https://github.com/marcianx/downcast-rs/compare/v1.0.3...v1.1.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=downcast-rs&package-manager=cargo&previous-version=1.0.3&new-version=1.1.1)](https://dependabot.com/compatibility-score/?dependency-name=downcast-rs&package-manager=cargo&previous-version=1.0.3&new-version=1.1.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>
@bors-servo
Copy link
Contributor

bors-servo commented May 22, 2020

💔 Test failed - status-taskcluster

@jdm
Copy link
Member

jdm commented May 22, 2020

@bors-servo
Copy link
Contributor

bors-servo commented May 22, 2020

Testing commit a34c7ca with merge 15d27c6...

bors-servo added a commit that referenced this pull request May 22, 2020
Bump downcast-rs from 1.0.3 to 1.1.1

Bumps [downcast-rs](https://github.com/marcianx/downcast-rs) from 1.0.3 to 1.1.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/marcianx/downcast-rs/blob/v1.1.1/CHANGELOG.md">downcast-rs's changelog</a>.</em></p>
<blockquote>
<h2>1.1.1 - 2019-10-28</h2>
<h3>Changed</h3>
<ul>
<li>Used <code>dyn Trait</code> syntax everywhere since it is supported by downcast-rs's
min-supported rust version (1.33).</li>
</ul>
<h2>1.1.0 - 2019-10-07</h2>
<h3>Added</h3>
<ul>
<li>Support for downcasting <code>Rc&lt;Trait&gt;</code> and <code>Arc&lt;Trait&gt;</code>.</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Minimum supported Rust version upped to 1.33 to support <code>Rc</code> and <code>Arc</code> in the
receiver position.</li>
</ul>
<h2>1.0.4 - 2019-04-08</h2>
<h3>Changed</h3>
<ul>
<li>Added <code>local_inner_macros</code> to <code>impl_downcast</code> to allow invoking via namespace.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/marcianx/downcast-rs/commit/9f25dcc28d2abf8eee79bec07683609fc28e97e2"><code>9f25dcc</code></a> Use <code>dyn Trait</code> syntax everywhere since it is supported by this library's MSRV.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/c7ef06ece35dc95718afe572a64b64de124ae28b"><code>c7ef06e</code></a> Correct the min-supported Rust version to be 1.33 in the docs.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/1e2da5c6481366b56a884cc4ed8789264126a759"><code>1e2da5c</code></a> Bump version to 1.1.0.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/b512ab3ba2183932c7a062bc3d5b41ffc084168f"><code>b512ab3</code></a> Updated README.md and CHANGELOG.md with information about Rc and Arc downcast...</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/f47f70c5b612eb38a588bd88bb2ccad6f59e89e8"><code>f47f70c</code></a> Update CHANGELOG and bump version to 1.0.4.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/8a363ac3a959d7235ad748ddaa5e2cc9367510e8"><code>8a363ac</code></a> Add local_inner_macros to impl_downcast to allow invocation via namespace.</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/183a01b703ecf0dfbf4dba9900d0d925637eb0f9"><code>183a01b</code></a> Revert &quot;Merge pull request <a href="https://github-redirect.dependabot.com/marcianx/downcast-rs/issues/6">#6</a> from dkaste/master&quot; (in favor of local_inner_ma...</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/68e49a33eadf7eeab0e78f9c4923a0a4196e57e7"><code>68e49a3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/marcianx/downcast-rs/issues/6">#6</a> from dkaste/master</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/19d078242a200114dcb073242c29b1c94e847654"><code>19d0782</code></a> Use <code>$crate</code> prefix for internal macro calls</li>
<li><a href="https://github.com/marcianx/downcast-rs/commit/817d7d00e21761ace9be5b8af07a9fcf4cf42da2"><code>817d7d0</code></a> Update crate description and the README.md to reflect lib.rs doc changes.</li>
<li>Additional commits viewable in <a href="https://github.com/marcianx/downcast-rs/compare/v1.0.3...v1.1.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=downcast-rs&package-manager=cargo&previous-version=1.0.3&new-version=1.1.1)](https://dependabot.com/compatibility-score/?dependency-name=downcast-rs&package-manager=cargo&previous-version=1.0.3&new-version=1.1.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>
@bors-servo
Copy link
Contributor

bors-servo commented May 22, 2020

💔 Test failed - status-taskcluster

@jdm
Copy link
Member

jdm commented May 22, 2020

@bors-servo
Copy link
Contributor

bors-servo commented May 22, 2020

Testing commit a34c7ca with merge c774e1e...

@bors-servo
Copy link
Contributor

bors-servo commented May 22, 2020

☀️ Test successful - status-taskcluster
Approved by: jdm
Pushing c774e1e to master...

@bors-servo bors-servo merged commit c774e1e into master May 22, 2020
2 checks passed
2 checks passed
Community-TC (pull_request) TaskGroup: success
Details
homu Test successful
Details
@bors-servo bors-servo deleted the dependabot/cargo/downcast-rs-1.1.1 branch May 22, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked issues

Successfully merging this pull request may close these issues.

None yet

4 participants
You can’t perform that action at this time.