nushell/crates/nu-command/src/conversions
Solomon 2eef42c6b9
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-16 21:25:17 -05:00
..
into run ensure_flag_arg_type for short flag values (#14074) 2024-10-16 21:25:17 -05:00
fill.rs Update fill.rs to fix last example given with help (#13993) 2024-10-03 17:04:36 -05:00
mod.rs Add split cell-path (#13705) 2024-08-28 23:01:26 +02:00
split_cell_path.rs Add split cell-path (#13705) 2024-08-28 23:01:26 +02:00