SHA256
6
0
forked from pool/bash
2011-03-08 12:18:13 +00:00
committed by Git OBS Bridge
parent cb7c1c55f7
commit 150e4de5ff
23 changed files with 240 additions and 413 deletions

View File

@@ -1,13 +1,91 @@
-------------------------------------------------------------------
Fri Feb 25 17:08:09 UTC 2011 - werner@suse.de
Tue Mar 8 12:51:29 CET 2011 - werner@suse.de
- Add patch bash41-010
- Reintroduce history saving at SIGHUP
-------------------------------------------------------------------
Tue Mar 7 15:25:33 CET 2011 - werner@suse.de
- Update bash 4.2 to patch level 7
-------------------------------------------------------------------
Thu Feb 17 10:08:53 UTC 2011 - coolo@novell.com
- having a bash man page is recommended (bnc#672528)
-------------------------------------------------------------------
Mon Feb 14 16:50:00 CET 2011 - werner@suse.de
- Update to bash 4.2 -- changelog see entry for bash 4.2 rc1
-------------------------------------------------------------------
Mon Jan 17 16:19:59 CET 2011 - werner@suse.de
- Update to bash 4.2 rc1
* `exec -a foo' now sets $0 to `foo' in an executable shell script
without a leading #!.
* Subshells begun to execute command substitutions or run shell functions or
builtins in subshells do not reset trap strings until a new trap is
specified. This allows $(trap) to display the caller's traps and the
trap strings to persist until a new trap is set.
* `trap -p' will now show signals ignored at shell startup, though their
disposition still cannot be modified.
* $'...', echo, and printf understand \uXXXX and \UXXXXXXXX escape sequences.
* declare/typeset has a new `-g' option, which creates variables in the
global scope even when run in a shell function.
* test/[/[[ have a new -v variable unary operator, which returns success if
`variable' has been set.
* Posix parsing changes to allow `! time command' and multiple consecutive
instances of `!' (which toggle) and `time' (which have no cumulative
effect).
* Posix change to allow `time' as a command by itself to print the elapsed
user, system, and real times for the shell and its children.
* $((...)) is always parsed as an arithmetic expansion first, instead of as
a potential nested command substitution, as Posix requires.
* A new FUNCNEST variable to allow the user to control the maximum shell
function nesting (recursive execution) level.
* The mapfile builtin now supplies a third argument to the callback command:
the line about to be assigned to the supplied array index.
* The printf builtin has a new %(fmt)T specifier, which allows time values
to use strftime-like formatting.
* There is a new `compat41' shell option.
* The cd builtin has a new Posix-mandated `-e' option.
* Negative subscripts to indexed arrays, previously errors, now are treated
as offsets from the maximum assigned index + 1.
* Negative length specifications in the ${var:offset:length} expansion,
previously errors, are now treated as offsets from the end of the variable.
* Parsing change to allow `time -p --'.
* Posix-mode parsing change to not recognize `time' as a keyword if the
following token begins with a `-'. This means no more Posix-mode
`time -p'. Posix interpretation 267.
* There is a new `lastpipe' shell option that runs the last command of a
pipeline in the current shell context. The lastpipe option has no
effect if job control is enabled.
* History expansion no longer expands the `$!' variable expansion.
* Posix mode shells no longer exit if a variable assignment error occurs
with an assignment preceding a command that is not a special builtin.
* History expansion no longer expands the `$!' variable expansion.
* Posix mode shells no longer exit if a variable assignment error occurs
with an assignment preceding a command that is not a special builtin.
* Non-interactive mode shells exit if -u is enabled and an attempt is made
to use an unset variable with the % or # expansions, the `//', `^', or
`,' expansions, or the parameter length expansion.
* Posix-mode shells use the argument passed to `.' as-is if a $PATH search
fails, effectively searching the current directory. Posix-2008 change.
- Update to readline 6.2 rc1
* The history library does not try to write the history filename in the
current directory if $HOME is unset. This closes a potential security
problem if the application does not specify a history filename.
* New bindable variable `completion-display-width' to set the number of
columns used when displaying completions.
* New bindable variable `completion-case-map' to cause case-insensitive
completion to treat `-' and `_' as identical.
* There are new bindable vi-mode command names to avoid readline's case-
insensitive matching not allowing them to be bound separately.
* New bindable variable `menu-complete-display-prefix' causes the menu
completion code to display the common prefix of the possible completions
before cycling through the list, instead of after.
-------------------------------------------------------------------
Mon Oct 18 11:09:31 CEST 2010 - jslaby@suse.de