You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[_Prefer `$env.VISUAL` over `$env.EDITOR`_](#prefer-env-visual-over-env-editor-toc)
59
+
-[_Fix handling of exported external aliases_](#fix-handling-of-exported-external-aliases-toc)
58
60
-[_Panic fixes_](#panic-fixes-toc)
59
61
-[_Hall of fame_](#hall-of-fame-toc)
60
62
-[_Full changelog_](#full-changelog-toc)
@@ -138,7 +140,7 @@ The `help commands` and `scope commands` now output an `is_const` column indicat
138
140
139
141
On macOS, `ps -l` now lists the `start_time` of the processes. Windows and Linux already listed a `start_time` column ([#14127](https://github.com/nushell/nushell/pull/14127)).
140
142
141
-
### `url build-query`[[toc](#table-of-content)]
143
+
### `url join` and `url build-query`[[toc](#table-of-content)]
142
144
143
145
Thanks to [@adaschma](https://github.com/adaschma) in [#14073](https://github.com/nushell/nushell/pull/14073), `url build-query` now allows list values in the parameter record. For example:
144
146
@@ -147,6 +149,29 @@ Thanks to [@adaschma](https://github.com/adaschma) in [#14073](https://github.co
147
149
# a=1&a=2&b=3
148
150
```
149
151
152
+
Also, thanks to [@Bahex](https://github.com/Bahex) in [#14239](https://github.com/nushell/nushell/pull/14239), `url join` and `url build-query` now support table values for `params`:
Thanks to [@Dorumin](https://github.com/Dorumin) in [#14214](https://github.com/nushell/nushell/pull/14214), a new `--no-deref` flag was added to `touch`. Providing this flag will make `touch` not follow symlinks.
@@ -431,6 +456,24 @@ An issue where table literals were incorrectly parsed when used as arguments to
431
456
432
457
On some terminals, `clear` would behave weirdly if used in a series of commands. Thanks to [@NotTheDr01ds](https://github.com/NotTheDr01ds), this has been fixed in [#14181](https://github.com/nushell/nushell/pull/14181).
433
458
459
+
### Prefer `$env.VISUAL` over `$env.EDITOR`[[toc](#table-of-content)]
460
+
461
+
[@weirdan](https://github.com/weirdan) fixed our preference of environment variable to find an editor to be more like other Unix commands in [#14275](https://github.com/nushell/nushell/pull/14275). We now prefer to use `VISUAL` first, if it's set.
462
+
463
+
### Fix handling of exported external aliases [[toc](#table-of-content)]
464
+
465
+
In [#14231](https://github.com/nushell/nushell/pull/14231), [@sgvictorino](https://github.com/sgvictorino) fixed the way aliases to external commands are handled when exported from modules. Previously, they would mistakenly be passed arguments corresponding to the module path.
466
+
467
+
```nushell
468
+
> module foo { export alias bar = ^echo }
469
+
> use foo
470
+
> foo bar baz
471
+
# 0.99.0:
472
+
bar baz
473
+
# 0.100.0:
474
+
baz
475
+
```
476
+
434
477
### Panic fixes [[toc](#table-of-content)]
435
478
436
479
A parser panic regarding redirections was fixed in [#14035](https://github.com/nushell/nushell/pull/14035) thanks to [@Kither12](https://github.com/Kither12).
0 commit comments