From 1b2b325274cd8d81e14bfa9cd5e9d28ee4bf3e55 Mon Sep 17 00:00:00 2001 From: Sacha Verweij Date: Thu, 11 May 2017 13:16:33 -0700 Subject: [PATCH] Add NEWS.md entry noting need to quote special characters in Cmds (#19786). --- NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NEWS.md b/NEWS.md index 9029abc7acc99..f80e4e0ae573f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -406,6 +406,10 @@ Deprecated or removed * `convert` methods from `Diagonal` and `Bidiagonal` to subtypes of `AbstractTriangular` have been deprecated ([#17723]). + * Special characters (`#{}()[]<>|&*?~;`) should now be quoted in commands. For example, + ``` `export FOO=1\;` ``` should replace ``` `export FOO=1;` ``` and + ``` `cd $dir '&&' $thingie` ``` should replace ``` `cd $dir && $thingie` ``` ([#19786]). + * The zero-argument constructor `MersenneTwister()` has been deprecated in favor of the explicit `MersenneTwister(0)` ([#16984]). @@ -482,6 +486,7 @@ Deprecated or removed [#19724]: https://github.com/JuliaLang/julia/issues/19724 [#19741]: https://github.com/JuliaLang/julia/issues/19741 [#19784]: https://github.com/JuliaLang/julia/issues/19784 +[#19786]: https://github.com/JuliaLang/julia/issues/19786 [#19787]: https://github.com/JuliaLang/julia/issues/19787 [#19791]: https://github.com/JuliaLang/julia/issues/19791 [#19800]: https://github.com/JuliaLang/julia/issues/19800