mirror of
https://github.com/nushell/nushell.git
synced 2025-05-13 03:04:34 +00:00
# Description This PR fully deprecates `str collect`. It's been "half-deprecatd" for a long time. This takes it all the way and disallows the command in favor of `str join`. # User-Facing Changes No more `str collect` # 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 -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass - `cargo run -- crates/nu-utils/standard_library/tests.nu` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` # After Submitting If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date.
28 lines
697 B
Rust
28 lines
697 B
Rust
mod collect;
|
|
mod deprecated_commands;
|
|
mod export_old_alias;
|
|
mod hash_base64;
|
|
mod lpad;
|
|
mod math_eval;
|
|
mod old_alias;
|
|
mod rpad;
|
|
mod source;
|
|
mod str_datetime;
|
|
mod str_decimal;
|
|
mod str_find_replace;
|
|
mod str_int;
|
|
|
|
pub use collect::StrCollectDeprecated;
|
|
pub use deprecated_commands::*;
|
|
pub use export_old_alias::ExportOldAlias;
|
|
pub use hash_base64::HashBase64;
|
|
pub use lpad::LPadDeprecated;
|
|
pub use math_eval::SubCommand as MathEvalDeprecated;
|
|
pub use old_alias::OldAlias;
|
|
pub use rpad::RPadDeprecated;
|
|
pub use source::Source;
|
|
pub use str_datetime::StrDatetimeDeprecated;
|
|
pub use str_decimal::StrDecimalDeprecated;
|
|
pub use str_find_replace::StrFindReplaceDeprecated;
|
|
pub use str_int::StrIntDeprecated;
|