mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
Updated CHANGELOG for 0.8.4
This commit is contained in:
parent
7188edecb6
commit
b285b6ff3d
11 changed files with 42 additions and 243 deletions
|
@ -4,6 +4,48 @@ Xonsh Change Log
|
|||
|
||||
.. current developments
|
||||
|
||||
v0.8.4
|
||||
====================
|
||||
|
||||
**Added:**
|
||||
|
||||
* Added the possibility of arbitrary paths to the help strings in ``vox activate`` and
|
||||
``vox remove``; also updated the documentation accordingly.
|
||||
* New ``xonsh.aliases.ExecAlias`` class enables multi-statement aliases.
|
||||
* New ``xonsh.ast.isexpression()`` function will return a boolean of whether
|
||||
code is a simple xonsh expression or not.
|
||||
* Added top-level ``run-tests.xsh`` script for safely running the test suite.
|
||||
|
||||
|
||||
**Changed:**
|
||||
|
||||
* String aliases are no longer split with ``shlex.split()``, but instead use
|
||||
``xonsh.lexer.Lexer.split()``.
|
||||
* Update xonsh/prompt/cwd.py _collapsed_pwd to print 2 chars if a directory begins with "."
|
||||
* test which determines whether a directory is a virtualenv
|
||||
|
||||
previously it used to check the existence of 'pyvenv.cfg'
|
||||
now it checks if 'bin/python' is executable
|
||||
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed issue with ``and`` & ``or`` being incoreectly tokenized in implicit
|
||||
subprocesses. Auto-wrapping of certain subprocesses will now correctly work.
|
||||
For example::
|
||||
|
||||
$ echo x-and-y
|
||||
x-and-y
|
||||
* Fix EOFError when press `control+d`
|
||||
* fix no candidates if no permission files in PATH
|
||||
* Fixed interpretation of color names with PTK2 and Pygments 2.3.
|
||||
* Several ResourceWarnings: unclosed file in tests
|
||||
* AttributeError crash when using --timings flag
|
||||
* issue #2929
|
||||
|
||||
|
||||
|
||||
|
||||
v0.8.3
|
||||
====================
|
||||
|
||||
|
|
|
@ -1,28 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed issue with ``and`` & ``or`` being incoreectly tokenized in implicit
|
||||
subprocesses. Auto-wrapping of certain subprocesses will now correctly work.
|
||||
For example::
|
||||
|
||||
$ echo x-and-y
|
||||
x-and-y
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,24 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* Added the possibility of arbitrary paths to the help strings in ``vox activate`` and
|
||||
``vox remove``; also updated the documentation accordingly.
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,23 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fix EOFError when press `control+d`
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,27 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* New ``xonsh.aliases.ExecAlias`` class enables multi-statement aliases.
|
||||
* New ``xonsh.ast.isexpression()`` function will return a boolean of whether
|
||||
code is a simple xonsh expression or not.
|
||||
* Added top-level ``run-tests.xsh`` script for safely running the test suite.
|
||||
|
||||
**Changed:**
|
||||
|
||||
* String aliases are no longer split with ``shlex.split()``, but instead use
|
||||
``xonsh.lexer.Lexer.split()``.
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,23 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* fix no candidates if no permission files in PATH
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,23 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed interpretation of color names with PTK2 and Pygments 2.3.
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,23 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Several ResourceWarnings: unclosed file in tests
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,23 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* AttributeError crash when using --timings flag
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,23 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* Update xonsh/prompt/cwd.py _collapsed_pwd to print 2 chars if a directory begins with "."
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,26 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* test which determines whether a directory is a virtualenv
|
||||
|
||||
previously it used to check the existence of 'pyvenv.cfg'
|
||||
now it checks if 'bin/python' is executable
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* issue #2929
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
Loading…
Add table
Reference in a new issue