nushell/crates/nu_plugin_polars
Solomon b0427ca9ff 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-20 23:12:57 +02:00
..
src run ensure_flag_arg_type for short flag values (#14074) 2024-10-20 23:12:57 +02:00
Cargo.toml Bump to 0.99.2 (#14136) 2024-10-20 23:12:41 +02:00
LICENSE Move dataframes support to a plugin (#12220) 2024-04-09 19:31:43 -05:00