nushell/crates
Solomon d941e7324f run ensure_flag_arg_type for short flag values (#14074)
Closes #13654

# User-Facing Changes

- Short flags are now fully type-checked,
  including null and record signatures for literal arguments:

```nushell
def test [-v: record<l: int>] {};
test -v null # error
test -v {l: ""} # error

def test2 [-v: int] {};
let v = ""
test2 -v $v # error
```

- `polars unpivot` `--index`/`--on` and `into value --columns`
now accept `list` values
2024-10-19 17:24:09 +02:00
..
nu_plugin_custom_values Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu_plugin_example Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu_plugin_formats Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu_plugin_gstat Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu_plugin_inc Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu_plugin_nu_example Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu_plugin_polars run ensure_flag_arg_type for short flag values (#14074) 2024-10-19 17:24:09 +02:00
nu_plugin_python Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu_plugin_query Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu_plugin_stress_internals Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-cli Fix return setting last exit code (#14120) 2024-10-18 03:05:58 +00:00
nu-cmd-base Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-cmd-extra Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-cmd-lang Revert PRs for 0.99.1 patch (#14119) 2024-10-18 02:51:14 +00:00
nu-cmd-plugin Make plugin list read state from plugin registry file as well (#14085) 2024-10-19 17:24:09 +02:00
nu-color-config Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-command run ensure_flag_arg_type for short flag values (#14074) 2024-10-19 17:24:09 +02:00
nu-derive-value Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-engine Revert PRs for 0.99.1 patch (#14119) 2024-10-18 02:51:14 +00:00
nu-explore Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-glob Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-json Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-lsp Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-parser run ensure_flag_arg_type for short flag values (#14074) 2024-10-19 17:24:09 +02:00
nu-path Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-plugin Revert PRs for 0.99.1 patch (#14119) 2024-10-18 02:51:14 +00:00
nu-plugin-core Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-plugin-engine Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-plugin-protocol Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-plugin-test-support Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-pretty-hex Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-protocol Fix return setting last exit code (#14120) 2024-10-18 03:05:58 +00:00
nu-std Revert PRs for 0.99.1 patch (#14119) 2024-10-18 02:51:14 +00:00
nu-system Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-table Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-term-grid Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-test-support Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nu-utils Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05:00
nuon Bump to version 0.99.1 (#14100) 2024-10-16 21:23:37 -05: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.