Update crossterm version to 0.26#8623
Conversation
… version conflict" This reverts commit e423dca.
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #8623 +/- ##
==========================================
- Coverage 68.57% 68.14% -0.43%
==========================================
Files 635 635
Lines 101423 101529 +106
==========================================
- Hits 69548 69189 -359
- Misses 31875 32340 +465
|
|
@WindSoilder are we ready to land this? I'd like to get some good testing in before the release if possible. |
|
Yeah I think so, I have done some manually testing and think it's ok |
| nu-utils = { path = "./crates/nu-utils", version = "0.78.1" } | ||
|
|
||
| nu-ansi-term = "0.47.0" | ||
| reedline = { version = "0.18.0", features = ["bashisms", "sqlite"] } |
There was a problem hiding this comment.
Can you revert the manual override outside the patch section? (see L163)
There was a problem hiding this comment.
It's done, would you please have a look again? Not really sure if I'm doing right thing
| nu-color-config = { path = "../nu-color-config", version = "0.78.1" } | ||
|
|
||
| nu-ansi-term = "0.47.0" | ||
| reedline = { version = "0.18.0", features = ["bashisms", "sqlite"] } |
There was a problem hiding this comment.
Hi, I get a warning message:
warning: patch for the non root package will be ignored, specify patch at the workspace root
It seems that we don't need to change nu-cli/Cargo.toml.
|
oh.....ci freeze on pulling tool chain...Can anyone help me to rerun CI job? |
|
I'm scared to push the button. 😆 |
|
Thanks for all your work on this @WindSoilder! |
# Description This pr is a companion to nushell/reedline#560 Fortunally, we don't need to change too much nushell code. ## Additional note about lscolor dependency sharkdp/lscolors#58 lscolor is using 0.26 for now
Description
WARN: do not merge this yet, it's using my fork of reedline and lscolorsThis pr is a companion to nushell/reedline#560
Fortunally, we don't need to change too much nushell code.
Additional note about lscolor dependency
Currently lscolor is using 0.25 version, I've submitted a pr to update it: sharkdp/lscolors#58lscolor is using 0.26 for now
User-Facing Changes
None
Tests + Formatting
Don't forget to add tests that cover your changes.
Make sure you've run and fixed any issues with these commands:
cargo fmt --all -- --checkto check standard code formatting (cargo fmt --allapplies these changes)cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collectto check that you're using the standard code stylecargo test --workspaceto check that all tests passAfter Submitting
If your PR had any user-facing changes, update the documentation after the PR is merged, if necessary. This will help us keep the docs up to date.