df302d4bac
Bump Nu version and change plugin load logic for debug
2019-11-10 16:44:05 +13:00
6bbfd0f4f6
Merge pull request #945 from jonathandturner/format
...
Format
2019-11-09 16:39:51 -08:00
943e0045e7
Update readme
2019-11-10 13:16:52 +13:00
62a5250554
Add format command
2019-11-10 13:14:59 +13:00
9043970e97
Merge pull request #943 from drmason13/from_csv-add-separator-arg
...
Add --separator argument to from_csv
2019-11-09 15:09:32 -08:00
d32c9ce1b6
Merge pull request #944 from jonathandturner/read_to_parse
...
Read to parse
2019-11-09 15:07:40 -08:00
73d8478678
Update readme
2019-11-10 11:27:56 +13:00
bab58576b4
Rename read to parse
2019-11-10 11:26:44 +13:00
41212c1ad1
Merge pull request #942 from BurNiinTRee/master
...
removed the requirement on the 'regex' feature for the match plugin
2019-11-08 09:11:36 -08:00
4a6122905b
fmt: cargo fmt --all
2019-11-08 15:27:29 +00:00
15986c598a
Add --separator command to from_csv
...
The command takes a string, checks it is a single character and then
passes it to csv::ReaderBuilder via .delimiter() method as a u8.
2019-11-08 15:06:33 +00:00
078342442d
removed the requirement on the 'regex' feature for the match plugin
...
The nu_plugin_match binary wasn't built anymore
after the regex dependency was made non-optional in
https://github.com/nushell/nushell/pull/889 , causing
the removal of the regex feature, which nu_plugin_match
depended on.
2019-11-08 13:33:28 +01:00
8855c54391
Update README.md
2019-11-08 08:19:41 +13:00
5dfc81a157
Merge pull request #940 from jonathandturner/stable_v2
...
Second attempt to remove rust-toolchain
2019-11-07 11:18:50 -08:00
c42d97fb97
try again
2019-11-08 08:00:46 +13:00
13314ad1e7
try again
2019-11-08 07:54:52 +13:00
ff6026ca79
try again
2019-11-08 07:47:43 +13:00
c6c6c0f295
try again
2019-11-08 07:44:34 +13:00
1cca5557b1
Second attempt to remove rust-toolchain
2019-11-08 07:27:39 +13:00
76208110b9
Update README.md
2019-11-08 07:17:12 +13:00
56dd0282f0
Merge pull request #938 from nushell/jonathandturner-patch-1
...
Update docker to stable
2019-11-07 09:59:53 -08:00
c01b602b86
Update docker to stable
2019-11-08 06:34:53 +13:00
d6f46236e9
Merge pull request #937 from nushell/jonathandturner-patch-1
...
Move azure pipeline to stable
2019-11-07 09:32:54 -08:00
104b30142f
Move azure pipeline to stable
2019-11-08 06:13:39 +13:00
f3a885d920
Merge pull request #936 from nushell/move-to-stable
...
Move Nu to the stable Rust 1.39 release
2019-11-07 09:11:18 -08:00
60445b0559
Move Nu to the stable Rust 1.39 release
2019-11-08 05:51:21 +13:00
01d6287a8f
Update README.md
0_5_0
2019-11-06 18:25:23 +13:00
0462b2db80
Merge pull request #925 from jonathandturner/bump_to_0_5_0
...
Bump version to 0.5.0
2019-11-06 18:24:45 +13:00
4cb399ed70
Bump version to 0.5.0
2019-11-06 18:24:04 +13:00
7ef9f7702f
Merge pull request #924 from jonathandturner/help_flags_last
...
Move flags help to last
2019-11-06 15:50:25 +13:00
44a1686a76
Move flags help to last
2019-11-06 15:28:26 +13:00
15c6d24178
Merge pull request #919 from JesterOrNot/master
...
Update .gitpod.yml to install nu rather than just build!
2019-11-05 07:24:20 +13:00
3b84e3ccfe
Update .gitpod.yml
2019-11-04 11:44:56 -06:00
da7d6beb22
Merge pull request #917 from thegedge/eliminate-is-first-command
...
Eliminate is_first_command by defaulting to Value::nothing()
2019-11-05 06:34:33 +13:00
f012eb7bdd
Eliminate is_first_command by defaulting to Value::nothing()
2019-11-03 20:06:59 -05:00
f966394b63
Merge pull request #888 from andrasio/data-primitives
...
WIP [data processing]
2019-11-03 16:52:21 -05:00
889d2bb378
Isolate feature.
2019-11-03 16:36:47 -05:00
a2c4e485ba
Merge pull request #914 from andrasio/column_path-semantic-fix
...
ColumnPaths should expect members encapsulated as members.
2019-11-03 06:56:19 -05:00
8860d8de8d
At the moment, ColumnPaths represent a set of Members (eg. package.authors is a column path of two members)
...
The functions for retrieving, replacing, and inserting values into values all assumed they get the complete
column path as regular tagged strings. This commit changes for these to accept a tagged values instead. Basically
it means we can have column paths containing strings and numbers (eg. package.authors.1)
Unfortunately, for the moment all members when parsed and deserialized for a command that expects column paths
of tagged values will get tagged values (encapsulating Members) as strings only.
This makes it impossible to determine whether package.authors.1 package.authors."1" (meaning the "number" 1) is
a string member or a number member and thus prevents to know and force the user that paths enclosed in double
quotes means "retrieve the column at this given table" and that numbers are for retrieving a particular row number
from a table.
This commit sets in place the infraestructure needed when integer members land, in the mean time the workaround
is to convert back to strings the tagged values passed from the column paths.
2019-11-03 06:30:32 -05:00
d7b768ee9f
Fallback internally to String primitives until Member int serialization lands.
2019-11-03 05:38:47 -05:00
6ea8e42331
Move column paths to support broader value types.
2019-11-03 05:38:47 -05:00
1b784cb77a
Merge pull request #913 from andrasio/tests-builtins
...
`get` preserves anchored inputs.
2019-11-03 05:11:09 -05:00
4a0ec1207c
Preserve anchored meta data for all get queries in the pipeline
2019-11-03 03:49:06 -05:00
ffb2fedca9
Update README.md
2019-11-03 18:24:11 +13:00
382b1ba85f
Merge pull request #912 from jonathandturner/fix_910
...
Make column logic in from-ssv optional
2019-11-03 17:31:15 +13:00
3b42655b51
Make column logic in from-ssv optional
2019-11-03 17:04:59 +13:00
e43e906f86
Update README.md
2019-11-03 16:13:00 +13:00
e51d9d0935
Update README.md
2019-11-03 16:12:36 +13:00
f57489ed92
get command tests already present and move to their own.
2019-11-02 21:05:27 -05:00
503e521820
Merge pull request #909 from jonathandturner/config_set_into
...
Add support for config --set_into
2019-11-03 13:06:58 +13:00