nushell/crates/nu_plugin_polars/src
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
..
cache Change the usage misnomer to "description" (#13598) 2024-08-22 12:02:08 +02:00
dataframe run ensure_flag_arg_type for short flag values (#14074) 2024-10-20 23:12:57 +02:00
lib.rs catch unwrap on panics with polars collect (#13850) 2024-09-15 07:21:02 -05:00
main.rs Converted perf function to be a macro. Utilized the perf macro within the polars plugin. (#13224) 2024-06-27 18:56:56 -05:00