SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for zsh-5.9-lp155.255.2.x86_64.rpm :

* Mon Jul 15 2024 Martin Jambor - Backport zsh-ab4d62eb975a4c4c51dd35822665050e2ddc6918.patch and zsh-4c89849c98172c951a9def3690e8647dae76308f.patch and add autoconf to build requirements to make the package build with GCC 14. [boo#1225958]
* Tue Feb 20 2024 Dominique Leuenberger - Use %patch -P N instead of deprecated %patchN.
* Thu Nov 30 2023 Paolo Perego - add pipe-less-and-signals-handling.patch (bsc#1217304). It fixes a problem with signal handling and less when the job is suspended in a user defined concatenated commands function.
* Thu Aug 03 2023 Andreas Schwab - Enable testsuite in qemu build
* Tue Feb 28 2023 Paolo Perego - Disabled zsh-sh subpackage generation for Leap 15.4 to prevent an error when building the package.
* Tue Feb 28 2023 pgajdosAATTsuse.com- don\'t require yodl for build, doc is not regenerated anyway
* Tue Dec 27 2022 Ludwig Nussel - Replace transitional %usrmerged macro with regular version check (boo#1206798)
* Sat Oct 22 2022 Luciano Santos - Add zsh-sh subpackage to offer Zsh users a \"native\" way to handle /bin/sh scripts and use an SH shell with the capabilities of Zsh itself to emulate a Bourne shell. An \'sh\' symlink pointing to the Zsh binary is all that is needed for it to emulate the Bourne shell, it is similar to the use of `emulate sh` Zsh\'s built-in command or the `zsh --emulate sh` shell command.- Drop deprecated use of install_info(_delete) post(un) macros. RPM file triggers have replaced their functionality since 2019.
* Mon Sep 12 2022 Dirk Müller - add egrep-deprecation.patch (bsc#1203241)
* Sun May 15 2022 Dirk Müller - update to 5.9: zsh 5.9 is dedicated to the memory of Sven Guckes, who was, amongst other things, a long-time zsh advocate. For more information, see: https://linuxnews.de/2022/02/sven-guckes-verstorben/ https://groups.google.com/g/vim_announce/c/MJBKVd-xrEE/m/joVNaDgAAgAJ When unsetting a hash element, the string enclosed in square brackets is interpreted literally after any normal command-line-argument expansions. Thus unset \"hash[$key]\" first expands $key as usual for a double-quoted string, and then interprets that result as the exact hash element to unset. This differs from previous versions of the shell, which would also remove a leading backslash for an unusual subset of characters in the expansion of $key. Note this also means, for example, that now unset \'hash[ab]cd]\' unsets the element with key \"ab]cd\" rather than silently doing nothing. The function command learnt a -T option to declare a function and enable tracing for it simultaneously. The option SHORT_REPEAT was added to enable the short syntax of SHORT_LOOPS for the repeat command only. It is disabled by default. The _arguments function now supports NUL-delimiting optargs in the opt_args array via the -0 option. Developers of completion functions should find this easier to handle reliably than the default colon-delimiting behaviour. The zsh/system module\'s `zsystem flock` command learnt an -i option to set the wait interval used with -t. Additionally, -t now supports fractional seconds. The option CLOBBER_EMPTY was added to enable the overwrite behaviour of CLOBBER for empty files only. It is disabled by default. A (-) expansion flag was added. It works like (n) but correctly sorts negative numbers. The (
*) expansion flag enables EXTENDED_GLOB for pattern matching. For example, ${(
*)sample/(#b)
*(pat)
*/${match[1]}} uses backreferences even if EXTENDED_GLOB is not otherwise set. However, this does not descend into nested exapansions, and doubling as (
*
*) does not disable EXTENDED_GLOB. 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. The XTRACE option is now disabled while running user-defined completion widgets. This corresponds to long-standing behavior of other user ZLE widgets. Use the _complete_debug widget to capture XTRACE output, or use \"functions -T\" to enable tracing of specific completion functions. The fc builtin learnt an -s option which is a POSIX equivalent to the `fc -e-` method of re-executing a command without invoking an editor. The option CASE_PATHS was added to control how NO_CASE_GLOB behaves. NO_CASE_GLOB + NO_CASE_PATHS is equivalent to the current NO_CASE_GLOB behaviour. NO_CASE_GLOB + CASE_PATHS treats only path components that contain globbing characters as case-insensitive; this behaviour may yield more predictable results on case-sensitive file systems. NO_CASE_PATHS is the default. With the new TYPESET_TO_UNSET option set, \"typeset foo\" leaves foo unset, in contrast to the default behavior which assigns foo=\"\". Any parameter 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. This option is disabled by default. The compadd builtin\'s -D option can now be specified more than once. The zsh/zutil module\'s zformat builtin learnt an -F option which behaves like -f except that ternary expressions check for existence instead of doing math evaluation. The conventional syntax used to indicate units, ranges, and default values in completion descriptions (e.g. `timeout (seconds) (0-60) [20]`) is now recognised by the completion system itself. These components are parsed out of the description and can be individually styled. A _numbers helper function has been added to help function authors offer rich completion for these values. The log builtin, WATCH parameter, et al., have been broken out into a separate module, zsh/watch. The module is enabled by default. The zsh/watch module\'s WATCHFMT parameter now supports colours via the %F and %K escapes. The STTY parameter can now be set to an empty string before running a command to automatically restore terminal settings after the command finishes. 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.- drop ncurses-fix.patch: upstream
* Sun Mar 20 2022 Dirk Müller - update to 5.8.1 (bsc#1196435, CVE-2021-45444):
* CVE-2021-45444: Some prompt expansion sequences, such as %F, support \'arguments\' which are themselves expanded in case they contain colour values, etc. This additional expansion would trigger PROMPT_SUBST evaluation, if enabled. This could be abused to execute code the user didn\'t expect. e.g., given a certain prompt configuration, an attacker could trick a user into executing arbitrary code by having them check out a Git branch with a specially crafted name. This is fixed in the shell itself by no longer performing PROMPT_SUBST evaluation on these prompt-expansion arguments. Users who are concerned about an exploit but unable to update their binaries may apply the partial work-around described in the file Etc/CVE-2021-45444-VCS_Info-workaround.patch included with the shell source. [ Reported by RyotaK . Additional thanks to Marc Cornellà . ]
* Fri Oct 16 2020 Ludwig Nussel - prepare usrmerge (boo#1029961)
* Tue Aug 25 2020 Martin Liška - Add ncurses-fix.patch in order to fix ncurses failure.
* Tue May 05 2020 Mykola Krachkovsky - Add $HOME aliases to fix regression after dropping /etc/bash.bashrc
* Tue May 05 2020 Ismail Dönmez - Add back LS_COLORS, LS_OPTIONS and GPG_TTY
* Wed Apr 15 2020 Ismail Dönmez - Add aliases from /etc/bash.bashrc into /etc/zshrc so we don\'t regress
* Wed Apr 08 2020 Ismail Dönmez - Stop sourcing /etc/bash.bashrc which causes problems with ls, add a call to manually source /etc/zsh.zshrc.local if available.
* Tue Mar 10 2020 Martin Liška - Remove stack-protector option addition, it\'s already in $optflags.
* Mon Feb 17 2020 Ismail Dönmez - Update to version 5.8
* Fixes CVE-2019-20044 bsc#1163882
* Fri Feb 07 2020 Ismail Dönmez - Update to version 5.8~pre3 (5.7.1-test-3)
* Minor bugfixes compared to pre2
* Sun Dec 22 2019 Ismail Dönmez - Update to version 5.8~pre2 (5.7.1-test-2)- Drop 1baf0d1f553631ecb641e98f4bf48bc2a44e5b82.patch, fixed upstream.
* Mon Dec 16 2019 Ismail Dönmez - Add 1baf0d1f553631ecb641e98f4bf48bc2a44e5b82.patch to fix a re-entrancy problem.
* Mon Dec 16 2019 Ismail Dönmez - Update to version 5.8~pre1 (5.7.1-test-1)
* The zsh/zutil module\'s zparseopts builtin learnt an -F option to abort parsing when an unrecognised option-like parameter is encountered.
* The zsh/files module gained a chmod builtin.
* Several changes have been made to the way completion functions track \'precommands\' (such as `command` and `env`) and determine whether the command being completed for is a shell builtin. Developers of completion functions may wish to familiarise themselves with `_normal -p` and `_pick_variant -b`.
* The option CD_SILENT was added to suppress all output from cd (whether explicit or implicit with AUTO_CD). It is disabled by default.
* The compadd builtin\'s -o option now takes an optional argument to specify the order of completion matches. This affects the display of candidate matches and the order in which they are selected when cycling between them using menu completion.
* The :h and :t modifiers in parameter expansion (if braces are present), glob qualifiers and history expansion may take following decimal digit arguments in order to keep that many leading or trailing path components instead of the defaults of all but one (:h) and one (:t). In an absolute path the leading \'/\' counts as one component.
* The functions builtin gained a -c option to efficiently copy functions.- See included ChangeLog for the complete list of changes.
* Mon Feb 04 2019 Ismail Dönmez - Update to version 5.7.1
* This release contains fixes for the two regressions reported with VCS_Info and prompt colour sequences.
* Fri Jan 25 2019 Ismail Dönmez - Update to version 5.7
* Support for 24-bit true color terminals has been added. Hex triplets can be used when specifying colours for prompts and line editor highlighting. On 88 and 256 colour terminals, a new zsh/nearcolor module allows colours specified with hex triplets to be matched against the nearest available colour.
* The zsh/datetime module\'s strftime builtin now accepts an argument specifying the nanoseconds time component; both arguments can be omitted to use the current time.
* Fri Sep 21 2018 Ismail Dönmez - Unbreak Leap 42.3 compilation
* Sun Sep 16 2018 Karol Babioch - Update to version 5.6.2
* Fix another SIGTTOU case.
* Fix SIGWINCH being ignored when zsh is not in the foreground.
* Tue Sep 11 2018 Karol Babioch - Update to version 5.6.1
* Fix packaging issue that broke runhelp
* Fix a regression with pipelines getting backgrounded and emitting SIGTTOU
* Tue Sep 04 2018 Ismail Dönmez - Update to version 5.6
* Fixes CVE-2018-0502 (bsc#1107296) and CVE-2018-13259 (bsc#1107294)
* Switch to -fstack-protector-strong
* See included NEWS file for complete changes.- No longer manually install help files, make install handles it.- Workaround a regression upstream with help file generation by removing Doc/help.txt before build.
* Fri May 11 2018 kbabiochAATTsuse.com- Update to 5.5.1
* fix for a configuration problem finding signal names from (some) recent versions of glibc
* minor changes
* Thu Apr 12 2018 jengelhAATTinai.de- Update RPM groups.
* Wed Apr 11 2018 kbabiochAATTsuse.com- Update to 5.5
* The effect of the NO_INTERACTIVE_COMMENTS option extends into $(...) and `...` command substitutions when used on the command line.
* Dropped patches, which are included upstream now: - zsh-CVE-2018-1071.patch - zsh-CVE-2018-1083.patch
* Fixes a buffer overflow in utils.c:checkmailpath() that can lead to local arbitrary code execution (CVE-2018-1100 bnc#1089030)
* Tue Mar 27 2018 kbabiochAATTsuse.com- Added zsh-CVE-2018-1071.patch: Fixed a stack-based buffer overflow in exec.c:hashcmd() (CVE-2018-1071 bnc#1084656)- Added zsh-CVE-2018-1083.patch: Fixed a stack-based buffer overflow in gen_matches_files() at compctl.c (CVE-2018-1083 bnc#1087026)- Cleaned up spec file with spec-cleaner
* Tue Feb 27 2018 kbabiochAATTsuse.com- Updated to 5.4.2
* The \'exec\' and \'command\' precommand modifiers, and options to them, are now parsed after parameter expansion.
* Functions executed by ZLE widgets no longer have their standard input closed, but redirected from /dev/null instead.
* There is an option WARN_NESTED_VAR, a companion to the existing WARN_CREATE_GLOBAL that causes a warning if a function updates a variable from an enclosing scope without using typeset -g.
* zmodload now has an option -s to be silent on a failure to find a module but still print other errors.- Dropped patch merged upstream:
* fix-patchutils-completion.patch
* Sun Mar 05 2017 rpmAATTfthiessen.de- Update to 5.3.1
* Fix typo in chflags completion
* Fixed invalid git commands completion
* VCS info system: vcs_info git: Avoid a fork.
* Fix handling of \"printf -\" and \"printf --\"- Removed upstream merged fix-printf.patch
* Tue Jan 10 2017 jmatejekAATTsuse.com- fix broken completion for filterdiff: fix-patchutils-completion.patch (boo#1019130)
* Wed Dec 14 2016 idonmezAATTsuse.com- Update to zsh 5.3
* Unicode9 support, this needs support from your terminal to work correctly.
* The new word modifier \':P\' computes the physical path of the argument.
* The output of \"typeset -p\" uses \"export\" commands or the \"-g\" option for parameters that are not local to the current scope.
* vi-repeat-change can repeat user-defined widgets if the widget calls zle -f vichange.
* The parameter $registers now makes the contents of vi register buffers available to user-defined widgets.
* New vi-up-case and vi-down-case builtin widgets bound to gU/gu (or U/u in visual mode) for doing case conversion.
* A new select-word-match function provides vim-style text objects with configurable word boundaries using the existing match-words-by-style mechanism.
* Support for the conditional expression [[ -v var ]] to test if a variable is set for compatibility with other shells.
* The print and printf builtins have a new option -v to assign the output to a variable.
* New x: syntax in completion match specifications make it possible to disable match specifications hardcoded in completion functions.- Re-add custom zshrc and zshenv to unbreak compatibility with old usage (boo#998858).- Add fix-printf.patch to fix a regression in printf.
* Thu Sep 08 2016 idonmezAATTsuse.com- Read /etc/profile as zsh again.
* Tue Aug 30 2016 mmannoAATTsuse.com- Remove custom zshrc and zshenv as they might interfere with the users config- Remove unused zshprompt.pl- Move install outside loop in spec file, was executed too often
* Wed May 25 2016 lluaAATTgmx.com- Add CentOS [67] support
* Thu Dec 10 2015 mpluskalAATTsuse.com- Add gpg signature
* Thu Dec 03 2015 idonmezAATTsuse.com- Update to version 5.2
* The new module zsh/param/private can be loaded to allow the shell to define parameters that are private to a function scope (i.e. are not propagated to nested functions called within this function).
* The GLOB_STAR_SHORT option allows the pattern
*
*/
* to be shortened to just
*
* if no / follows. so
*
*.c searches recursively for a file whose name has the suffix \".c\".
* The effect of the WARN_CREATE_GLOBAL option has been significantly extended, so expect it to cause additional warning messages about parameters created globally within function scope.
* Thu Nov 05 2015 idonmezAATTsuse.com- Remove -Wl,-z,now it breaks module loading rh#1277996
* Sat Sep 12 2015 idonmezAATTsuse.com- Update to version 5.1.1
* Bug fixes for regressions in 5.1 release- Remove read1char_signals.patch, fixed upstream.
* Tue Sep 01 2015 idonmezAATTsuse.com- Add read1char_signals.patch to fix workers/36373
* Tue Sep 01 2015 idonmezAATTsuse.com- Update to version 5.1
* The print builtin has new options -x and -X to expand tabs.
* Several new command completions and numerous updates to others.
* Options to \"fc\" to segregate internal and shared history.
* All emulations including \"sh\" use multibyte by default; several repairs to multibyte handling.
* ZLE supports \"bracketed paste\" mode to avoid interpreting pasted newlines as accept-line. Pastes can be highlighted for visibility and to make it more obvious whether accept-line has occurred.
* Improved (though still not perfect) POSIX compatibility for getopts builtin when POSIX_BUILTINS is set.
* New setopt APPEND_CREATE for POSIX-compatible NO_CLOBBER behavior.
* Completion of date values now displays in a calendar format when the complist module is available. Controllable by zstyle.
* New parameter UNDO_LIMIT_NO for more control over ZLE undo repeat.
* Several repairs/improvements to the contributed narrow-to-region ZLE function.
* Many changes to child-process and signal handling to eliminate race conditions and avoid deadlocks on descriptor and memory management.
* New builtin sysopen in zsh/system module for detailed control of file descriptor modes.- Remove printf-regress.patch, upstream.
* Sun Jun 14 2015 idonmezAATTsuse.com- Add printf-regress.patch to fix a printf regression boo#934175
* Sun May 31 2015 idonmezAATTsuse.com- Update to version 5.0.8
* Global aliases can be created for syntactic tokens such as command separators (\";\", \"&\", \"|\", \"&&\", \"||\"), redirection operators, etc.
* There have been various further improvements to builtin handling with the POSIX_BUILTINS option (off by default) for compatibility with the POSIX standard.
* \'whence -v\' is now more informative, and \'whence -S\' shows you how a full chain of symbolic links resolves to a command.
* The \'p\' parameter flag now allows an argument to be specified as a reference to a variable, e.g. ${(ps.$sep.)foo} to split $foo on a string given by $sep.
* The option FORCE_FLOAT now forces variables, not just constants, to floating point in arithmetic expressions.
* The type of an assignment in arithmetic expressions, e.g. the type seen by the variable res in $(( res = a = b )), is now more logical and C-like.
* The default binding of \'u\' in vi command mode has changed to undo multiple changes when invoked repeatedly. \'^R\' is now bound to redo changes. To revert to toggling of the last edit use: bindkey -a u vi-undo-change
* Compatibility with Vim has been improved for vi editing mode. Most notably, Vim style text objects are supported and the region can be manipulated with vi commands in the same manner as Vim\'s visual mode.
* Elements of the watch variable may now be patterns.
* The logic for retrying history locking has been improved.- Remove gcc5-fix.patch, fixed upstream.
* Sun May 03 2015 dmitry_rAATTopensuse.org- Fix openSUSE versions in osc completion
* zsh-osc-completion.patch
* Wed Apr 29 2015 idonmezAATTsuse.com- Add gcc5-fix.patch to fix signames.c generation with gcc5
* Wed Apr 22 2015 hvogelAATTopensuse.org- Nowadays more and more terminals set $TERM to xterm-256color
* Tue Feb 10 2015 dimstarAATTopensuse.org- BuildRequire texi2html instead of texinfo: the packages have been split completely now.
* Wed Jan 28 2015 idonmezAATTsuse.com- Add back rpm completion file (bnc#900424)
* Wed Jan 14 2015 idonmezAATTsuse.com- Harden CFLAGS/LDFLAGS
 
ICM