mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
Updated CHANGELOG for 0.7.4
This commit is contained in:
parent
ba898a1da8
commit
046bc47779
5 changed files with 45 additions and 79 deletions
|
@ -4,6 +4,51 @@ Xonsh Change Log
|
|||
|
||||
.. current developments
|
||||
|
||||
v0.7.4
|
||||
====================
|
||||
|
||||
**Added:**
|
||||
|
||||
* New ``xonsh-cat`` command line utility, which is a xonsh replacement
|
||||
for the standard UNIX ``cat`` command.
|
||||
* The new ``xonsh.xoreutils.cat.cat_main()`` enables the ``xonsh.xoreutils.cat``
|
||||
module to be run as a command line utility.
|
||||
* New ``CommandsCache.is_only_functional_alias()`` and
|
||||
``CommandsCache.lazy_is_only_functional_alias()`` methods for determining if
|
||||
if a command name is only implemented as a function, and thus has no
|
||||
underlying binary command to execute.
|
||||
* ``xonsh.xontribs.xontribs_load()`` is a new first-class API for loading
|
||||
xontribs via a Python function.
|
||||
* ``$COMPLETIONS_DISPLAY`` now supports readline-like behavior on
|
||||
prompt-toolkit v2.
|
||||
|
||||
|
||||
**Changed:**
|
||||
|
||||
* The xonsh Jupyter kernel now will properly redirect the output of commands
|
||||
such as ``git log``, ``man``, ``less`` and other paged commands to the client.
|
||||
This is done by setting ``$PAGER = 'cat'``. If ``cat`` is not available
|
||||
on the system, ``xonsh-cat`` is used instead.
|
||||
* The ``setup()`` function for starting up a working xonsh has ``aliases``,
|
||||
``xontribs``, and ``threadable_predictors`` as new additional keyword
|
||||
arguments for customizing the loading of xonsh.
|
||||
|
||||
|
||||
**Fixed:**
|
||||
|
||||
- Fixed a bug with converting new PTK2 colors names to old names when using PTK1 or Jupyter
|
||||
as the shell type.
|
||||
* ``CommandsCache.locate_binary()`` will now properly return None when
|
||||
``ignore_alias=False`` and the command is only a functional alias,
|
||||
such as with ``cd``. Previously, it would return the name of the
|
||||
command.
|
||||
* Fixed issue with ``$COMPLETIONS_DISPLAY`` raising an error on
|
||||
prompt-toolkit v2 when the value was not set to ``multi``.
|
||||
* ValueError when executing ``vox list``
|
||||
|
||||
|
||||
|
||||
|
||||
v0.7.3
|
||||
====================
|
||||
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
- Fixed a bug with converting new PTK2 colors names to old names when using PTK1 or Jupyter
|
||||
as the shell type.
|
||||
|
||||
**Security:** None
|
|
@ -1,35 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* New ``xonsh-cat`` command line utility, which is a xonsh replacement
|
||||
for the standard UNIX ``cat`` command.
|
||||
* The new ``xonsh.xoreutils.cat.cat_main()`` enables the ``xonsh.xoreutils.cat``
|
||||
module to be run as a command line utility.
|
||||
* New ``CommandsCache.is_only_functional_alias()`` and
|
||||
``CommandsCache.lazy_is_only_functional_alias()`` methods for determining if
|
||||
if a command name is only implemented as a function, and thus has no
|
||||
underlying binary command to execute.
|
||||
* ``xonsh.xontribs.xontribs_load()`` is a new first-class API for loading
|
||||
xontribs via a Python function.
|
||||
|
||||
**Changed:**
|
||||
|
||||
* The xonsh Jupyter kernel now will properly redirect the output of commands
|
||||
such as ``git log``, ``man``, ``less`` and other paged commands to the client.
|
||||
This is done by setting ``$PAGER = 'cat'``. If ``cat`` is not available
|
||||
on the system, ``xonsh-cat`` is used instead.
|
||||
* The ``setup()`` function for starting up a working xonsh has ``aliases``,
|
||||
``xontribs``, and ``threadable_predictors`` as new additional keyword
|
||||
arguments for customizing the loading of xonsh.
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* ``CommandsCache.locate_binary()`` will now properly return None when
|
||||
``ignore_alias=False`` and the command is only a functional alias,
|
||||
such as with ``cd``. Previously, it would return the name of the
|
||||
command.
|
||||
|
||||
**Security:** None
|
|
@ -1,17 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* ``$COMPLETIONS_DISPLAY`` now supports readline-like behavior on
|
||||
prompt-toolkit v2.
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed issue with ``$COMPLETIONS_DISPLAY`` raising an error on
|
||||
prompt-toolkit v2 when the value was not set to ``multi``.
|
||||
|
||||
**Security:** None
|
|
@ -1,13 +0,0 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* ValueError when executing ``vox list``
|
||||
|
||||
**Security:** None
|
Loading…
Add table
Reference in a new issue