summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-05-13 14:42:25 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-05-13 14:42:25 -0400
commit0bbbe9211d4b6dda6bc0ab7c95fb88696b6fbc1d (patch)
treebef32d0459e7175396b4cbb7661d58865d9059b2
parenta0030a2e7ec7f0d92a2b27f930a42b3fb2a88a6b (diff)
downloadcmd2-git-0bbbe9211d4b6dda6bc0ab7c95fb88696b6fbc1d.tar.gz
Updated change log
-rw-r--r--CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f8cdc3b4..a6f56821 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,9 @@
* History now shows what was typed for macros and not the resolved value by default. This is consistent with
the behavior of aliases. Use the `expanded` or `verbose` arguments to `history` to see the resolved value for
the macro.
+ * Fixed parsing issue in case where output redirection appears before a pipe. In that case, the pipe was given
+ precedence even though it appeared later in the command.
+ * Fixed issue where quotes around redirection file paths were being lost in `Statement.expanded_command_line()`
* Enhancements
* Added capability to chain pipe commands and redirect their output (e.g. !ls -l | grep user | wc -l > out.txt)
* `pyscript` limits a command's stdout capture to the same period that redirection does.