diff options
author | Bart Schaefer <schaefer@ipost.com> | 2022-03-29 13:21:42 -0700 |
---|---|---|
committer | Bart Schaefer <schaefer@ipost.com> | 2022-03-29 13:21:42 -0700 |
commit | 85f98c3604bb72b74a37ca335fb89cef7a0d78a8 (patch) | |
tree | 9ef76e9be569d33fd720f4a29457dceefb8b026a | |
parent | 53d6b47d92bccb3e34ebad1becf84b097a3bc525 (diff) | |
download | zsh-85f98c3604bb72b74a37ca335fb89cef7a0d78a8.tar.gz zsh-85f98c3604bb72b74a37ca335fb89cef7a0d78a8.tar.xz zsh-85f98c3604bb72b74a37ca335fb89cef7a0d78a8.zip |
49918: Update for 49917 and 49911.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | README | 4 |
3 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 5053cb36c..96ef1d10c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2022-03-29 Bart Schaefer <schaefer@zsh.org> + * 49918: NEWS, README: Update for 49917 and 49911. + * 49917: Completion/compinit, Doc/Zsh/compsys.yo: change sense of "Ignore insecure ..." answer to ignore the files rather than ignore the problem. Use "autoload -r" for autoload paths. diff --git a/NEWS b/NEWS index 1e9926c05..8441610b0 100644 --- a/NEWS +++ b/NEWS @@ -55,6 +55,11 @@ The option CLOBBER_EMPTY was added to enable the overwrite behaviour of CLOBBER for empty files only. It is disabled by default. The compinit function learnt a -w option to explain why compdump runs. +When run without the -i or -u options and compaudit discovers security +issues, answering "y" to the "Ignore insecure ..." prompt removes the +insecure elements (like the -i option) where previously it ignored the +result (thus formerly like the -u option). Further, removing those +elements includes dropping directories from the $fpath array. The zsh/datetime module's strftime builtin learnt an -n option to omit the trailing newline when printing a formatted time. @@ -70,6 +75,12 @@ attributes such as numeric type, sorting, and padding are retained until the parameter is explicitly unset or a conflicting value is assigned. This is similar to default behavior of bash and ksh. +The "jobs" command and "$jobstates" and related parameters can report on +parent shell jobs even in subshells. This is a snapshot of the parent +state, frozen at the point the subshell started. However, if a subshell +starts its own background jobs, the parent state is discarded in order +to report on those new jobs. + Changes from 5.7.1-test-3 to 5.8 -------------------------------- diff --git a/README b/README index 353667289..c27d6881a 100644 --- a/README +++ b/README @@ -33,6 +33,10 @@ details, see the documentation. Incompatibilities since 5.8 --------------------------- +compinit: A "y" response to the "Ignore ... and continue?" prompt removes +insecure elements from the set of completion functions, where previously +it ignored the compaudit result and included all elements. + PROMPT_SUBST expansion is no longer performed on arguments to prompt- expansion sequences such as %F. |