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

Update opener requirement from 0.4 to 0.5 #9583

Merged
merged 1 commit into from
Jun 18, 2021
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 14, 2021

Updates the requirements on opener to permit the latest version.

Changelog

Sourced from opener's changelog.

[0.5.0] - 2021-06-11

Added

  • open_browser(), which uses the $BROWSER environment variable before falling back to open().
  • WSL-specific implementation. Previously, WSL used the same implementation as Linux. Now the strategy on WSL is to use the system's wslview command from wslu if available, falling back to the system xdg-open, if available.

Changed

  • On Linux (non-WSL), the system xdg-open is now used if present. Otherwise, the bundled version is used, as before.
  • Avoid blocking the thread on Linux and WSL.

Removed

  • impl From<io::Error> for OpenError.

[0.4.1] - 2019-09-30

Changed

  • Update xdg-open.

[0.4.0] - 2019-05-02

Added

  • OpenError now implements std::error::Error.

Changed

  • OpenError's failure::Fail impl was removed from this crate, but the failure crate provides a blanket impl of failure::Fail for types implementing std::error::Error, so this shouldn't break anything.

[0.3.0] - 2018-08-18

Added

  • stderr field to OpenError::ExitStatus variant, which captures anything the failed process wrote to stderr.

[0.2.0] - 2018-08-08

Removed

  • The open_sys function, which was erroneously pub on non-Windows builds.

[0.1.0] - 2018-08-08

  • Initial release.
Commits
  • 86e0a15 Fix Drakefile.ts
  • 4261c2b Release v0.5.0
  • 5d24271 Revert command name in error type to &'static str
  • 9a36c6e Remove dependency on wsl crate
  • 165b933 Avoid blocking
  • 5c1e99a Update changelog
  • 2da976e Refactor linux_and_more module
  • f5c5564 Fix newline being included after WSL path conversion
  • bd30011 [WSL] Try wslview first instead of second
  • e16875d Misc formatting changes
  • Additional commits viewable in compare view

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)

Updates the requirements on [opener](https://github.com/Seeker14491/opener) to permit the latest version.
- [Release notes](https://github.com/Seeker14491/opener/releases)
- [Changelog](https://github.com/Seeker14491/opener/blob/master/CHANGELOG.md)
- [Commits](Seeker14491/opener@v0.4.1...v0.5.0)

---
updated-dependencies:
- dependency-name: opener
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the A-build-dependencies Area: [build-dependencies] label Jun 14, 2021
@dependabot dependabot bot requested a review from alexcrichton June 14, 2021 08:05
@rust-highfive
Copy link

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @Eh2406 (or someone else) soon.

If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.

Please see the contribution instructions for more information.

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jun 14, 2021
@ehuss
Copy link
Contributor

ehuss commented Jun 18, 2021

@bors r+

@bors
Copy link
Collaborator

bors commented Jun 18, 2021

📌 Commit ff9ee5c has been approved by ehuss

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jun 18, 2021
@bors
Copy link
Collaborator

bors commented Jun 18, 2021

⌛ Testing commit ff9ee5c with merge 1fc6406...

@bors
Copy link
Collaborator

bors commented Jun 18, 2021

☀️ Test successful - checks-actions
Approved by: ehuss
Pushing 1fc6406 to master...

@bors bors merged commit 1fc6406 into master Jun 18, 2021
@bors bors deleted the dependabot/cargo/opener-0.5 branch June 18, 2021 21:21
JohnTitor added a commit to JohnTitor/rust that referenced this pull request Jun 24, 2021
Update cargo

This also updates `opener` used in bootstrap (to try to keep dependencies unified).

18 commits in 44456677b5d1d82fe981c955dc5c67734b31f340..9233aa06c801801cff75df65df718d70905a235e
2021-06-12 18:00:01 +0000 to 2021-06-22 21:32:55 +0000
- Detect incorrectly named cargo.toml (rust-lang/cargo#9607)
- Unify weak and namespaced features. (rust-lang/cargo#9574)
- Change `rustc-cdylib-link-arg` error to a warning. (rust-lang/cargo#9563)
- Updates to future-incompatible reporting. (rust-lang/cargo#9606)
- Add a compatibility notice for diesel and the new resolver. (rust-lang/cargo#9602)
- Don't allow config env to modify vars set by cargo (rust-lang/cargo#9579)
- Disambiguate is_symlink. (rust-lang/cargo#9604)
- Update opener requirement from 0.4 to 0.5 (rust-lang/cargo#9583)
- Avoid quadratic complexity when splitting output into lines (rust-lang/cargo#9586)
- Bump to 0.56.0, update changelog (rust-lang/cargo#9597)
- Fix dep-info files including non-local build script paths. (rust-lang/cargo#9596)
- Relax doc collision error. (rust-lang/cargo#9595)
- Handle "jobs = 0" case in cargo config files (rust-lang/cargo#9584)
- Enhancements to testsuite error output. (rust-lang/cargo#9589)
- Fix typo (rust-lang/cargo#9590)
- Enable support for fix --edition for 2021. (rust-lang/cargo#9588)
- Add more details for installing git repository errors (rust-lang/cargo#9582)
- More information for links conflicting (rust-lang/cargo#9568)
@ehuss ehuss added this to the 1.55.0 milestone Feb 6, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-build-dependencies Area: [build-dependencies] S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants