summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2022-04-02unposted: creating-a-release: Normalise white space, clarify some stepsdana1-0/+5
(The need for these changes was discovered during the release of 5.8.1. Daniel suggested one. They were hinted at in security/107)
2022-04-0149943: offer only timezone files starting with uppercaseJun-ichi Takimoto1-0/+5
2022-04-01unposted: Fix typoMatthew Martin1-0/+2
2022-03-31github #88: Fix typoelig0n1-0/+2
2022-03-3149933: Add nonblock to sysopenMatthew Martin1-0/+3
2022-03-3149932: Update _brace_parameter # descriptionMatthew Martin1-0/+3
2022-03-3149931: Update _bsd_pkgMatthew Martin1-0/+2
2022-03-3149907: Mention _numbers in completion guideMatthew Martin1-0/+5
2022-03-3127639: clarify that ${(#)...} deals with character codes.Peter Stephenson1-0/+5
2022-03-3049906 (Bart), 49911: Fixes to querying jobs in subshell.Peter Stephenson1-0/+8
Don't attempt to query invalid job off end of table, resulting in crashes from $jobtstates. If background task started in subshell, look at tatsks within subshell instead of main shell. Document and add test.
2022-03-3049820: Fix a crash when completing with combination of -Q and bracesMikael Magnusson1-7/+10
minimal reproducer .zshrc: zstyle ':completion:*' completer _oldlist _complete setopt nolistambiguous autoload compinit; compinit compdef _foo foo;_foo() { compadd -Q -- stash@{{0,1}} }
2022-03-3049813: <<<: Document newline behavior and fix optimizationMikael Magnusson1-0/+3
The =(<<<foo) optimization forgot to add a newline, but =(cat<<<foo) always did, make the behavior consistent, and document it.
2022-03-3049870: Fix NULL reference in match code moreMikael Magnusson1-0/+2
This reverts "49658: Fix NULL reference in match code." and adds a check inside the block, as well as a failsafe check at the end. The above commit (49658) causes a crash due to ll being calculated as 0 which leads to rr being an invalid pointer. Only adding a check for when ll is 0 just leads to bck-i-search pattern not working at all (the final hunk). Restoring the condition and adding an explicit NULL check for replstr seems to make matters work as intended.
2022-03-3049915: Efficient dedup for unsorted completionsMikael Magnusson1-0/+3
2022-03-3049893: Fix comments for UNIQCON/ALLMikael Magnusson1-0/+5
2022-03-3049910: move multibyte-related f-flagged test from E03 to D07Jun-ichi Takimoto1-0/+3
POSIX requires printf should calculate width/precision in %s conversion in bytes (not in characters) even in multibyte locale
2022-03-3049908: reset LC_CTYPE to C during testsJun-ichi Takimoto1-0/+4
and do not export MODULE_PATH since child zsh will not import it
2022-03-2949918: Update for 49917 and 49911.Bart Schaefer1-0/+2
2022-03-2949917: change sense of "Ignore insecure ..." answer and use "autoload -r"Bart Schaefer1-0/+6
2022-03-28Add entry for 49897.Bart Schaefer1-0/+5
2022-03-2949853 + 49882/49883: make "${arr[*]:off}" compatible with ksh/bashJun-ichi Takimoto1-0/+5
2022-03-2849890: Avoid scanning unallocated memory in saved command line.Peter Stephenson1-0/+5
2022-03-2449875: completion for info -f.Peter Stephenson1-0/+4
Use local files if there's a slash in the argument.
2022-03-2449845: man page clarification on option scopePeter Stephenson1-0/+5
2022-03-1849852: Add _routing_domains and _routing_tables typesMatthew Martin1-0/+8
2022-03-1849851: _login_class: Complete login.conf.d classesMatthew Martin1-0/+5
2022-03-1349844: Fix node reference errors from 49446 and 49448.Bart Schaefer1-0/+5
2022-03-08promptinit: only exclude current theme from preview if no arguments are givenMikael Magnusson1-0/+5
2022-03-0649802 (+49804): pass MODULE_PATH to zsh started in test W03Jun-ichi Takimoto1-0/+5
2022-03-0349792: Non-interative shell input is line buffered.Peter Stephenson1-0/+3
2022-03-0349787: test for jobs fix in 49783Peter Stephenson1-0/+5
2022-03-02unposted: Fix typo in the previous commit's ChangeLog entryDaniel Shahaf1-1/+1
Found-by: Mehtab Singh Mann <https://github.com/mehtabsinghmann>
2022-03-0149783: Consistently use old job table in parameter modulePeter Stephenson1-0/+3
2022-03-01users/27536: Improved history list documentationPeter Stephenson1-0/+5
Clarify interaction of matching and numbers.
2022-02-2349766: _less: add quotes to -" and -#Jun-ichi Takimoto1-0/+2
2022-02-2349765: _less: add option --color as synonym for -DJun-ichi Takimoto1-0/+5
2022-02-22unposted: Fix some typos and markup.Daniel Shahaf1-0/+5
2022-02-2249672: document "tied" in output from ${(t)...}Peter Stephenson1-0/+5
2022-02-2249769: Mention how to show nanosecond precisionMikael Magnusson1-0/+5
2022-02-2049728: vcs_info hg mq: Don't include applied patches in the unapplied patchesDaniel Shahaf1-0/+4
For instance, with 4 applied patches, 5 unapplied patches, and no guards involved, the patch-format style would indicate 9 (= 4+5) unapplied patches and 4 applied patches.
2022-02-2049727 (+ comment): vcs_info quilt: Pass the patches dir path to the ↵Daniel Shahaf1-0/+8
gen-applied-string, gen-unapplied-string, and set-patch-format hooks I use that in my gen-applied-string hook.
2022-02-20unposted: vcs_info hg mg (with get-unapplied set): Stop leaking a variable ↵Daniel Shahaf1-0/+6
to global scope
2022-02-1649757 (sourceforge #1): offer *.dtx as TeX input filessamcarter1-0/+5
2022-02-1549756 + 49758(Daniel): replace LPAR() in FAQ.yo by SUBST(_LPAR_)Jun-ichi Takimoto1-0/+5
In FAQ.yo, macros inside mytt() and tt() are not expanded. Also includes an update for zyodl.vim by Daniel.
2022-02-13unposted: Fix one underline length in README (cosmetic)Axel Beckert1-0/+5
2022-02-12unposted: Post-release version bumpdana1-0/+2
2022-02-12unposted: Release 5.8.1dana1-0/+3
(cherry picked from commit 1a490c7050cfacd5daf8376d5a1f0e8cb14ccda5)
2022-02-12security/82: VCS_Info: Fix typo in hook_com[base-name_orig] assignmentMarc Cornellà1-0/+4
Tweaked per discussion in security/90, security/91 (cherry picked from commit b34d33e3b3c5ae30e8315111f07634c1e7507531)
2022-02-12CVE-2021-45444: Update NEWS/READMEdana1-0/+2
(cherry picked from commit bdc4d70a7e033b754e68a8659a037ea0fc5f38de)
2022-02-12security/89: Add patch which can optionally be used to work around ↵Marc Cornellà1-0/+5
CVE-2021-45444 in VCS_Info (cherry picked from commit fdb8b0ce6244ff26bf55e0fd825310a58d0d3156)