mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
Updated CHANGELOG for 0.6.1
This commit is contained in:
parent
d5b082981f
commit
a6a2b0b747
18 changed files with 45 additions and 233 deletions
|
@ -4,6 +4,51 @@ Xonsh Change Log
|
|||
|
||||
.. current developments
|
||||
|
||||
v0.6.1
|
||||
====================
|
||||
|
||||
**Added:**
|
||||
|
||||
* Support for MSYS2.
|
||||
* New ``xonsh.main.setup()`` function for starting up xonsh in 3rd party
|
||||
packages.
|
||||
|
||||
|
||||
**Changed:**
|
||||
|
||||
* Updated CircleCI to use circle version 2.0
|
||||
* Replaced StopIteration with return in CommandPipeline.iterraw.
|
||||
* Xonsh run control now also looks for the XDG-compliant file
|
||||
``~/.config/xonsh/rc.xsh`` at startup.
|
||||
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Clean out ``$LINES`` and ``$COLUMNS`` if set, preventing some programs from drawing weirdly
|
||||
* cat from xoreutils now outputs in configured encoding
|
||||
* Fixed hanging issue with pipelines whose middle processes exit before the
|
||||
first or last process.
|
||||
* Fixed issue where xonsh would deduplicate spaces from bash autocompletions.
|
||||
* Fixed failing redirections from stderr to stdout when the command
|
||||
being executed was a callable alias.
|
||||
* Ensure that the ``free_cwd`` contrib can only be active on pure Windows.
|
||||
* Made an exceptional case in ``iglobpath()`` more robust when Python globbing
|
||||
fails for due to strange scrandir issue.
|
||||
* Unexpected process suspension on Cygwin and MSYS2.
|
||||
* ``$XONSH_APPEND_NEWLINE`` will now default to True when in interactive mode.
|
||||
* Fixed issue with uncalled lambdas being run in subproc mode.
|
||||
* Lambda nodes not have proper line and column numbers in AST.
|
||||
* Properly throw ``SyntaxError`` when no kwargs are defined
|
||||
in a kwarg-only function. This used to throw a
|
||||
``TypeError: 'NoneType' object is not iterable``.
|
||||
* Addressed issue where encoding and errors were None when teeing output.
|
||||
* Commands like ``git c`` would complete to ``git 'checkout '`` because git adds an extra space
|
||||
to the end of the completion, which was being captured in the completion. Xonsh now fixes the git issue
|
||||
while retaining all whitespace when there is other internal whitespace.
|
||||
|
||||
|
||||
|
||||
|
||||
v0.6.0
|
||||
====================
|
||||
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Clean out ``$LINES`` and ``$COLUMNS`` if set, preventing some programs from drawing weirdly
|
||||
|
||||
**Security:** None
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* cat from xoreutils now outputs in configured encoding
|
||||
|
||||
**Security:** None
|
|
@ -1,14 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed hanging issue with pipelines whose middle processes exit before the
|
||||
first or last process.
|
||||
|
||||
**Security:** None
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:**
|
||||
|
||||
* Updated CircleCI to use circle version 2.0
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:** None
|
||||
|
||||
**Security:** None
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed issue where xonsh would deduplicate spaces from bash autocompletions.
|
||||
|
||||
**Security:** None
|
14
news/e2o.rst
14
news/e2o.rst
|
@ -1,14 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed failing redirections from stderr to stdout when the command
|
||||
being executed was a callable alias.
|
||||
|
||||
**Security:** None
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Ensure that the ``free_cwd`` contrib can only be active on pure Windows.
|
||||
|
||||
**Security:** None
|
|
@ -1,14 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Made an exceptional case in ``iglobpath()`` more robust when Python globbing
|
||||
fails for due to strange scrandir issue.
|
||||
|
||||
**Security:** None
|
|
@ -1,15 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* Support for MSYS2.
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Unexpected process suspension on Cygwin and MSYS2.
|
||||
|
||||
**Security:** None
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:**
|
||||
|
||||
* Replaced StopIteration with return in CommandPipeline.iterraw.
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:** None
|
||||
|
||||
**Security:** None
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* ``$XONSH_APPEND_NEWLINE`` will now default to True when in interactive mode.
|
||||
|
||||
**Security:** None
|
|
@ -1,14 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed issue with uncalled lambdas being run in subproc mode.
|
||||
* Lambda nodes not have proper line and column numbers in AST.
|
||||
|
||||
**Security:** None
|
|
@ -1,14 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* New ``xonsh.main.setup()`` function for starting up xonsh in 3rd party
|
||||
packages.
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:** None
|
||||
|
||||
**Security:** None
|
|
@ -1,15 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Properly throw ``SyntaxError`` when no kwargs are defined
|
||||
in a kwarg-only function. This used to throw a
|
||||
``TypeError: 'NoneType' object is not iterable``.
|
||||
|
||||
**Security:** None
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Addressed issue where encoding and errors were None when teeing output.
|
||||
|
||||
**Security:** None
|
|
@ -1,15 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Commands like ``git c`` would complete to ``git 'checkout '`` because git adds an extra space
|
||||
to the end of the completion, which was being captured in the completion. Xonsh now fixes the git issue
|
||||
while retaining all whitespace when there is other internal whitespace.
|
||||
|
||||
**Security:** None
|
|
@ -1,14 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:**
|
||||
|
||||
* Xonsh run control now also looks for the XDG-compliant file
|
||||
``~/.config/xonsh/rc.xsh`` at startup.
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:** None
|
||||
|
||||
**Security:** None
|
Loading…
Add table
Reference in a new issue