nushell/crates
Devyn Cairns 51aa66fef7
Fix #12391: mkdir uses process startup directory instead of current script directory (#12394)
# Description

This fixes #12391.

nushell/nushell@87c5f6e455 accidentally introduced a bug where the path
was not being properly
expanded according to the cwd. This makes both 'touch' and 'mkdir' use
globs just like the rest of
the commands to preserve tilde behavior while still expanding the paths
properly.

This doesn't actually expand the globs. Should it?

# User-Facing Changes

- Restore behavior of `mkdir`, `touch`
- Help text now says they can take globs, but they won't actually expand
them, maybe this should be changed

# Tests + Formatting

Regression tests added.


# After Submitting

This is severe enough and should be included in the point release.
2024-04-04 14:23:10 +02:00
..
nu-cli fix simple typo in commandline_.rs (#12387) 2024-04-04 09:59:52 +02:00
nu-cmd-base Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-cmd-dataframe Bump crate-ci/typos and fix typos (#12381) 2024-04-04 09:59:21 +02:00
nu-cmd-extra Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-cmd-lang Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-color-config Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-command Fix #12391: mkdir uses process startup directory instead of current script directory (#12394) 2024-04-04 14:23:10 +02:00
nu-engine Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-explore Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-glob Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-json Bump crate-ci/typos and fix typos (#12381) 2024-04-04 09:59:21 +02:00
nu-lsp Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-parser prevent parser from parsing variables as units (#12378) 2024-04-04 09:55:14 +02:00
nu-path Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-plugin Make drop notification timing for plugin custom values more consistent (#12341) 2024-04-04 09:13:25 +02:00
nu-plugin-test-support Make drop notification timing for plugin custom values more consistent (#12341) 2024-04-04 09:13:25 +02:00
nu-pretty-hex Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-protocol Bump crate-ci/typos and fix typos (#12381) 2024-04-04 09:59:21 +02:00
nu-std Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-system Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-table Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-term-grid Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-test-support Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu-utils Make default config conservative about clipboard (#12385) 2024-04-04 09:10:41 +02:00
nu_plugin_custom_values Make drop notification timing for plugin custom values more consistent (#12341) 2024-04-04 09:13:25 +02:00
nu_plugin_example Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu_plugin_formats Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu_plugin_gstat Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu_plugin_inc Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
nu_plugin_python bump python plugin nushell version (#12367) 2024-04-03 15:33:37 +02:00
nu_plugin_query Bump version for 0.92.0 release (#12349) 2024-04-02 20:50:26 +03:00
README.md Remove old nushell/merge engine-q 2022-02-07 14:54:06 -05:00

Nushell core libraries and plugins

These sub-crates form both the foundation for Nu and a set of plugins which extend Nu with additional functionality.

Foundational libraries are split into two kinds of crates:

  • Core crates - those crates that work together to build the Nushell language engine
  • Support crates - a set of crates that support the engine with additional features like JSON support, ANSI support, and more.

Plugins are likewise also split into two types:

  • Core plugins - plugins that provide part of the default experience of Nu, including access to the system properties, processes, and web-connectivity features.
  • Extra plugins - these plugins run a wide range of different capabilities like working with different file types, charting, viewing binary data, and more.