assert-rs / completest

Run completions for your program
https://docs.rs/completest
Apache License 2.0
4 stars 6 forks source link

chore(deps): update rust crate reedline to 0.27.1 #25

Closed renovate[bot] closed 9 months ago

renovate[bot] commented 9 months ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
reedline dependencies minor 0.24.0 -> 0.27.1

Release Notes

nushell/reedline (reedline) ### [`v0.27.1`](https://togithub.com/nushell/reedline/releases/tag/v0.27.1): 0.27.1 [Compare Source](https://togithub.com/nushell/reedline/compare/v0.27.0...v0.27.1) This is a patch release to fix the build of the documentation on https://docs.rs/reedline We now try to build with the additional features except the `system_clipboard`. Tweaked the documentation in the process. #### What's Changed - Try to fix the docs.rs build by [@​sholderbach](https://togithub.com/sholderbach) in [https://github.com/nushell/reedline/pull/682](https://togithub.com/nushell/reedline/pull/682) - Bump version to 0.27.1 by [@​sholderbach](https://togithub.com/sholderbach) in [https://github.com/nushell/reedline/pull/683](https://togithub.com/nushell/reedline/pull/683) **Full Changelog**: https://github.com/nushell/reedline/compare/v0.27.0...v0.27.1 ### [`v0.27.0`](https://togithub.com/nushell/reedline/releases/tag/v0.27.0): 0.27.0 [Compare Source](https://togithub.com/nushell/reedline/compare/v0.26.0...v0.27.0) New release for [nushell](https://togithub.com/nushell/nushell) `0.88.0` This release fixes a vi-mode binding and makes several parts of the history-related API public. #### Bugfixes - vi mode: Fix the covered range for `cw`/`cW` by [@​crides](https://togithub.com/crides) in [https://github.com/nushell/reedline/pull/668](https://togithub.com/nushell/reedline/pull/668) #### (Preliminary) changes to the history API **Note:** we are considering changes to `History` and friends in the near future, so this publication may be preliminary and encounter future changes. - Allow to construct ReedlineError values from the outside by [@​ClementNerma](https://togithub.com/ClementNerma) in [https://github.com/nushell/reedline/pull/676](https://togithub.com/nushell/reedline/pull/676) - Allow to build HistoryItemId values from the outside by [@​ClementNerma](https://togithub.com/ClementNerma) in [https://github.com/nushell/reedline/pull/677](https://togithub.com/nushell/reedline/pull/677) - Make history-related items (de-)serializable by [@​ClementNerma](https://togithub.com/ClementNerma) in [https://github.com/nushell/reedline/pull/678](https://togithub.com/nushell/reedline/pull/678) #### Other changes - Build docs.rs docs with all features by [@​sholderbach](https://togithub.com/sholderbach) in [https://github.com/nushell/reedline/pull/672](https://togithub.com/nushell/reedline/pull/672) #### New Contributors - [@​crides](https://togithub.com/crides) made their first contribution in [https://github.com/nushell/reedline/pull/668](https://togithub.com/nushell/reedline/pull/668) **Full Changelog**: https://github.com/nushell/reedline/compare/v0.26.0...v0.27.0 ### [`v0.26.0`](https://togithub.com/nushell/reedline/releases/tag/v0.26.0): 0.26.0 [Compare Source](https://togithub.com/nushell/reedline/compare/v0.25.0...v0.26.0) New release for [nushell](https://togithub.com/nushell/nushell) `0.87.0` This release adds a `Hinter` implementation that prefers suggestions from the current directory, generally improves the hint behavior, and changes the API to control terminal enhancements like bracketed paste and the kitty protocol. #### Additions - Add `CwdAwareHinter` for use with `SqliteBackedHistory` by [@​p00f](https://togithub.com/p00f) in [https://github.com/nushell/reedline/pull/647](https://togithub.com/nushell/reedline/pull/647) - `CwdAwareHinter`: remove cwd filter when there are no results by [@​p00f](https://togithub.com/p00f) in [https://github.com/nushell/reedline/pull/656](https://togithub.com/nushell/reedline/pull/656) - can still be used with `FileBackedHistory` - Make `Result` and `ReedlineError` public by [@​ClementNerma](https://togithub.com/ClementNerma) in [https://github.com/nushell/reedline/pull/661](https://togithub.com/nushell/reedline/pull/661) - Add more derive impl for HistoryItemId by [@​ClementNerma](https://togithub.com/ClementNerma) in [https://github.com/nushell/reedline/pull/662](https://togithub.com/nushell/reedline/pull/662) #### Fixes - Avoid consuming CPU when waiting for input. by [@​sunfishcode](https://togithub.com/sunfishcode) in [https://github.com/nushell/reedline/pull/651](https://togithub.com/nushell/reedline/pull/651) - Don't allow certain `examples/` to compile without their features by [@​fdncred](https://togithub.com/fdncred) in [https://github.com/nushell/reedline/pull/658](https://togithub.com/nushell/reedline/pull/658) - re-enable bracketed paste on not(windows) (fixes [#​9944](https://togithub.com/nushell/reedline/issues/9944)) (fixes [#​648](https://togithub.com/nushell/reedline/issues/648)) by [@​LevitatingBusinessMan](https://togithub.com/LevitatingBusinessMan) in [https://github.com/nushell/reedline/pull/657](https://togithub.com/nushell/reedline/pull/657) #### Breaking changes - Split hinter tokens at Unicode word boundaries by [@​stfacc](https://togithub.com/stfacc) in [https://github.com/nushell/reedline/pull/650](https://togithub.com/nushell/reedline/pull/650) - Properly handle optional event modes by [@​sholderbach](https://togithub.com/sholderbach) in [https://github.com/nushell/reedline/pull/659](https://togithub.com/nushell/reedline/pull/659) - `Reedline::enable/disable_bracketed_paste` have been replaced by `use_bracketed_paste` - `Reedline::enable/disable_kitty_protocol` have been replaced by `use_kitty_keyboard_enhancement` - `Reedline::can_use_kitty_protocol` has been replaced by `kitty_protocol_available` - bracketed paste will now only be enabled for the duration of `Reedline::read_line`, you don't have to manually toggle it anymore. #### Other improvements - Also run clippy on examples by [@​Hofer-Julian](https://togithub.com/Hofer-Julian) in [https://github.com/nushell/reedline/pull/666](https://togithub.com/nushell/reedline/pull/666) - Bump version for `0.26.0` release by [@​sholderbach](https://togithub.com/sholderbach) in [https://github.com/nushell/reedline/pull/664](https://togithub.com/nushell/reedline/pull/664) #### New Contributors - [@​p00f](https://togithub.com/p00f) made their first contribution in [https://github.com/nushell/reedline/pull/647](https://togithub.com/nushell/reedline/pull/647) - [@​sunfishcode](https://togithub.com/sunfishcode) made their first contribution in [https://github.com/nushell/reedline/pull/651](https://togithub.com/nushell/reedline/pull/651) - [@​stfacc](https://togithub.com/stfacc) made their first contribution in [https://github.com/nushell/reedline/pull/650](https://togithub.com/nushell/reedline/pull/650) - [@​LevitatingBusinessMan](https://togithub.com/LevitatingBusinessMan) made their first contribution in [https://github.com/nushell/reedline/pull/657](https://togithub.com/nushell/reedline/pull/657) **Full Changelog**: https://github.com/nushell/reedline/compare/v0.25.0...v0.26.0 ### [`v0.25.0`](https://togithub.com/nushell/reedline/releases/tag/v0.25.0): 0.25.0 [Compare Source](https://togithub.com/nushell/reedline/compare/v0.24.0...v0.25.0) New release for [nushell](https://togithub.com/nushell/nushell) `0.86.0` This release changes the API to pass the buffer editor to enable you to safely pass flags and configure the location of the temp file. #### Breaking changes - Accept `Command` with args for `BufferEditor` by [@​horasal](https://togithub.com/horasal) in [https://github.com/nushell/reedline/pull/630](https://togithub.com/nushell/reedline/pull/630) - updated arguments on `Reedline::with_buffer_arguments` #### Other changes - Update motto title by [@​sholderbach](https://togithub.com/sholderbach) in [https://github.com/nushell/reedline/pull/640](https://togithub.com/nushell/reedline/pull/640) - Fix clippy lint from most recent Rust by [@​sholderbach](https://togithub.com/sholderbach) in [https://github.com/nushell/reedline/pull/646](https://togithub.com/nushell/reedline/pull/646) - Bump version for `0.25.0` release by [@​sholderbach](https://togithub.com/sholderbach) in [https://github.com/nushell/reedline/pull/645](https://togithub.com/nushell/reedline/pull/645) #### New Contributors - [@​horasal](https://togithub.com/horasal) made their first contribution in [https://github.com/nushell/reedline/pull/630](https://togithub.com/nushell/reedline/pull/630) **Full Changelog**: https://github.com/nushell/reedline/compare/v0.24.0...v0.25.0

Configuration

📅 Schedule: Branch creation - "before 5am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] commented 9 months ago

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package reedline@0.24.0 --precise 0.27.1
    Updating crates.io index
error: failed to select a version for the requirement `reedline = "^0.24.0"`
candidate versions found which didn't match: 0.27.1
location searched: crates.io index
required by package `nu-cli v0.85.0`
    ... which satisfies dependency `nu-cli = "^0.85.0"` (locked to 0.85.0) of package `completest v0.1.0 (/tmp/renovate/repos/github/assert-rs/completest)`
perhaps a crate was updated and forgotten to be re-vendored?
epage commented 9 months ago

Now in nu group