nushell/crates/nu-command
Stefan Holderbach 9db0d6bd34
Adjust signatures for cellpath access of tables (#9778)
# Description
Reallow the commands that take cellpaths as rest parameters to operate
on table input data.

Went through all commands returned by

```
scope commands |
  filter { |cmd| $cmd.signatures |
    values |
    any {|sig| $sig |
      any {|$sig| $sig.parameter_type == rest and $sig.syntax_shape ==
cellpath }
    }
  } | get name
```

Only exception to that was `is-empty` that returns a bool.
# User-Facing Changes
Same table operations as in `0.82` should still be possible
Mitigates effects of #9680
2023-07-24 13:17:30 +02:00
..
src Adjust signatures for cellpath access of tables (#9778) 2023-07-24 13:17:30 +02:00
tests add table -> table to into datetime (#9775) 2023-07-23 20:14:51 +02:00
Cargo.toml Update nu-ansi-term, lscolors, and reedline (#9787) 2023-07-24 13:16:18 +02:00
LICENSE Fix rest of license year ranges (#8727) 2023-04-04 09:03:29 +12:00