2016-06-11 17:21:01 -04:00
====================
2015-12-30 22:54:32 -08:00
Xonsh Change Log
====================
2016-06-09 03:35:06 -04:00
2016-06-11 17:34:11 -04:00
.. current developments
2016-06-08 14:25:52 -04:00
2018-10-31 10:54:17 -04:00
v0.8.2
====================
**Changed:**
* Now there is only a single instance of `` string.Formatter() `` in the
code base, which is called `` xonsh.tools.FORMATTER `` .
**Fixed:**
* f-strings (`` f"{expr}" `` ) are now fully capable of executing xonsh expressions.
The one exception to this is that `` ![cmd] `` and `` !(cmd) `` don't work because
the `` ! `` character interferes with Python string formatting. If you need to
run subprocesses inside of f-strings, use `` $[cmd] `` and `` $(cmd) `` instead.
* Fixed occasional "no attribute 'settitle' error"
2018-10-18 11:05:51 -04:00
v0.8.1
====================
**Added:**
* `` SubprocSpec `` has a new `` pipeline_index `` integer attribute that indicates
the commands position in a pipeline. For example, in
.. code-block :: sh
p = ![ls -l | grep x]
The `` ls `` command would have a pipeline index of 0
(`` p.specs[0].pipeline_index == 0 `` ) and `` grep `` would have a pipeline index
of 1 (`` p.specs[1].pipeline_index == 1 `` ). This may be usefule in callable
alaises which recieve the spec as an argument.
**Changed:**
* Removed `` fish `` from list of supported foreign shells in the wizard.
* Circle CI config updated to use a pinned version of `` black `` (18.9b0)
* Pytest plugin now uses `` xonsh.main.setup() `` to setup test environment.
* Linux platform discovery will no longer use `` platform.linux_distribution() ``
on Python >=3.6.6. due to pending deprecation warning.
* Updated Linux Guide as Xonsh is now available in Arch Linux official repositories.
**Fixed:**
* Builtin dynamic proxies and deprecation warning proxies were not deleting
attributes and items properly.
* Fixed stdout/sdterr writing infinite recurssion error that would occur in
long pipelines of callable aliases.
* Fixed a bug which under very rare conditions could cause the shell
to die with PermissionError exception while sending SIGSTOP signal
to a child process.
* Fixed further raw string deprecation warnings thoughout the code base.
2018-10-10 09:58:54 -04:00
v0.8.0
====================
**Added:**
* Windows CI jobs on Azure Pipelines
* The `` cryptop `` command will no longer have its output captured
by default.
* Added new env-var `` PTK_STYLE_OVERRIDES `` . The variable is
a dictionary containing custom prompt_toolkit style definitions.
For instance::
$PTK_STYLE_OVERRIDES['completion-menu'] = 'bg:#333333 #EEEEEE'
will provide for more visually pleasing completion menu style whereas::
$PTK_STYLE_OVERRIDES['bottom-toolbar'] = 'noreverse'
will prevent prompt_toolkit from inverting the bottom toolbar colors
(useful for powerline extension users)
Note: This only works with prompt_toolkit 2 prompter.
**Changed:**
* All `` __xonsh_*__ `` builtins have been migrated to a `` XonshSession `` instance at
`` __xonsh__ `` . E.g. `` __xonsh_env__ `` is now `` __xonsh__.env `` .
* Other xonsh-specific builtins (such as `` XonshError `` ) have been proxied to
the `` __xonsh__ `` session object as well.
**Deprecated:**
* All `` __xonsh_*__ `` builtins are deprected. Instead, the corresponding
`` __xonsh__.* `` accessor should be used. The existing `` __xonsh_*__ `` accessors
still work, but issue annoying warnings.
**Fixed:**
* Fixed deprecation warnings from unallowed escape sequences as well as importing abstract base classes directly from `` collections ``
* Fix for string index error in stripped prefix
* bash_completions to include special characters in lprefix
Previously, glob expansion characters would not be included in lprefix for replacement
.. code-block :: sh
$ touch /tmp/abc
$ python
>>> from bash_completion import bash_completions
>>>
>>> def get_completions(line):
... split = line.split()
... if len(split) > 1 and not line.endswith(' '):
... prefix = split[-1]
... begidx = len(line.rsplit(prefix)[0])
... else:
... prefix = ''
... begidx = len(line)
... endidx = len(line)
... return bash_completions(prefix, line, begidx, endidx)
...
>>> get_completions('ls /tmp/a*')
({'/tmp/abc '}, 0)
Now, lprefix begins at the first special character:
.. code-block :: sh
$ python
>>> from bash_completion import bash_completions
>>>
>>> def get_completions(line):
... split = line.split()
... if len(split) > 1 and not line.endswith(' '):
... prefix = split[-1]
... begidx = len(line.rsplit(prefix)[0])
... else:
... prefix = ''
... begidx = len(line)
... endidx = len(line)
... return bash_completions(prefix, line, begidx, endidx)
...
>>> get_completions('ls /tmp/a*')
({'/tmp/abc '}, 7)
* The `` xonsh.main.setup() `` function now correctly passes the
`` shell_type `` argument to the shell instance.
* try_subproc_toks now works for subprocs with trailing and leading whitespace
Previously, non-greedy wrapping of commands would fail if they had leading and trailing whitespace:
.. code-block :: sh
$ true && false || echo a
xonsh: For full traceback set: $XONSH_SHOW_TRACEBACK = True
NameError: name 'false' is not defined
$ echo; echo && echo a
xonsh: For full traceback set: $XONSH_SHOW_TRACEBACK = True
NameError: name 'echo' is not defined
Now, the commands are parsed as expected:
.. code-block :: sh
$ true && false || echo a
a
$ echo; echo && echo a
a
2018-09-26 12:17:10 -04:00
v0.7.10
====================
**Added:**
* 'off' can be passed as falsy value to all flags accepting boolean argument.
- DragonFly BSD support
* Format strings (f-strings) now allow environment variables to be looked up.
For example, `` f"{$HOME}" `` will yield `` "/home/user" `` . Note that this will
look up and fill in the `` detype() `` -ed version of the environment variable,
i.e. it's native string representation.
**Changed:**
* Running `` aurman `` command will now be predicted to be unthreaded by default.
**Fixed:**
* The xonsh `` xonfig wizard `` would crash if an unknown foreign shell was
provided. This has been fixed.
* The `` hg split `` command will now predict as unthreadable.
* Fixed path completer crash on attempted f-string completion
2018-09-18 14:37:44 -04:00
v0.7.9
====================
**Added:**
* The python-mode `` @(expr) `` syntax may now be used inside of subprocess
arguments, not just as a stand-alone argument. For example:
.. code-block :: sh
$ x = 'hello'
$ echo /path/to/@(x)
/path/to/hello
This syntax will even properly expand to the outer product if the `` expr ``
is a list (or other non-string iterable) of values:
.. code-block :: sh
$ echo /path/to/@(['hello', 'world'])
/path/to/hello /path/to/world
$ echo @(['a', 'b']):@('x', 'y')
a:x a:y b:x b:y
Previously this was not possible.
* New `` $DOTGLOB `` environment variable enables globs to match
"hidden" files which start with a literal `` . `` . Set this
variable to `` True `` to get this matching behavior.
Cooresponding API changes have been made to
`` xonsh.tools.globpath() `` and `` xonsh.tools.iglobpath() ``
* New environment variable `` $FOREIGN_ALIASES_SUPPRESS_SKIP_MESSAGE ``
enables the removal of skipping foreign alias messages.
* New `` --suppress-skip-message `` command line option for skipping
foreign alias messages when sourcing foreign shells.
**Fixed:**
* In Bash completions, if there are no files to source, a `` set() `` will
no longer be inserted into the completion script.
* Fixed issue with TAB completion in readline not replacing values
with spaces properly when the prefix was unquoted.
2018-09-11 13:53:52 -04:00
v0.7.8
====================
**Added:**
* `` xonsh.lib.collections.ChainDB `` , a chain map which merges mergable fields
**Fixed:**
* Pass all params to voxapi.create
* PTK tab-completion now auto-accepts completion if only one option is present
(note that fix is only for PTK2)
2018-08-30 07:37:47 -05:00
v0.7.7
====================
**Added:**
* A xontrib which adds support for autojump to xonsh
* Added new env-var `` XONSH_HISTORY_MATCH_ANYWHERE `` . If set to `` True `` then
up-arrow history matching will match existing history entries with the search
term located anywhere, not just at the beginning of the line. Default value is
`` False ``
**Changed:**
2018-08-31 08:05:39 -05:00
* Improved iteration over virtual environments in `` Vox.__iter__ ``
2018-08-30 07:37:47 -05:00
**Fixed:**
* Fix for `` Enter `` not returning from Control-R search buffer
* Fixed automatic wrapping of many subprocesses that spanned multiple lines via
line continuation characters with logical operators separating the commands.
For example, the following now works:
.. code-block :: sh
echo 'a' \
and echo 'b'
* Environment swapping would not properly reraise errors due to weird
Python name binding issue.
2018-08-21 16:49:33 -04:00
v0.7.6
====================
**Added:**
* Callable aliases may now accept a `` stack `` argument. If they do, then the
stack, as computed from the aliases call site, is provided as a list of
`` FrameInfo `` objects (as detailed in the standard library `` inspect ``
module). Otherwise, the `` stack `` parameter is `` None `` .
* `` SubprocSpec `` now has a `` stack `` attribute, for passing the call stack
to callable aliases. This defaults to `` None `` if the spec does not
need the stack. The `` resolve_stack() `` method computes the `` stack ``
attribute.
**Changed:**
* xonsh/environ.py
Exceptions are caught in the code executed under Env.swap()
**Fixed:**
* Scripts are now cached by their realpath, not just abspath.
* Fixed a potential crash (`` AssertionError: wrong color format `` ) on Python 3.5 and prompt_toolkit 1.
* The `` completer `` command now correctly finds completion functions
when nested inside of other functions.
* Fixed a crash when using the `` $XONSH_STDERR_PREFIX/POSTFIX `` with
prompt_toolkit and Pygments 2.2.
2018-08-16 15:33:03 -04:00
v0.7.5
====================
**Fixed:**
* Recent command history in ptk2 prompt now returns most recently executed
commands first (as expected)
* Fixed a regression taat prevented the readline backend from beeing used. This
regression was caused by the new ansi-color names, which are incompatible with
pygments 2.2.
2018-08-15 17:57:10 -04:00
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:**
2018-08-31 08:05:39 -05:00
* Fixed a bug with converting new PTK2 colors names to old names when using PTK1 or Jupyter
2018-08-15 17:57:10 -04:00
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 ``
2018-08-07 17:23:34 -04:00
v0.7.3
====================
**Added:**
* Add the `` PROMPT_TOOLKIT_COLOR_DEPTH `` environment to xonsh default environment.
Possible values are `` DEPTH_1_BIT `` /`` MONOCHROME `` ,
2018-08-31 08:05:39 -05:00
`` DEPTH_4_BIT `` /`` ANSI_COLORS_ONLY `` , `` DEPTH_8_BIT `` /`` DEFAULT `` , or `` DEPTH_24_BIT `` /`` TRUE_COLOR `` .
2018-08-07 17:23:34 -04:00
Note: not all terminals support all color depths.
* New way to fix unreadable default terminal colors on Windows 10. Windows 10
now supports true color in the terminal, so if prompt toolkit 2 is
2018-08-31 08:05:39 -05:00
installed Xonsh will use a style with hard coded colors instead of the
2018-08-07 17:23:34 -04:00
default terminal colors. This will give the same color experience as on linux an mac.
The behaviour can be disabled with `` $INTENSIFY_COLORS_ON_WIN ``
environment variable.
* New `` JupyterShell `` for interactive interfacing with Jupyter.
**Changed:**
2018-08-31 08:05:39 -05:00
* All ansicolor names used in styles have ben updated to the color names used by prompt_toolkit 2.
The new names are are much easier to understand
(e.g. `` ansicyan `` /`` ansibrightcyan `` vs. the old `` #ansiteal `` /`` #ansiturquoise `` ). The names are automatically
2018-08-07 17:23:34 -04:00
translated back when using prompt_toolkit 1.
**Removed:**
* Removed support for pygments < 2.2.
**Fixed:**
* New ansi-color names fixes the problem with darker colors using prompt_toolkit 2 on windows.
* Fixed a problem with the color styles on prompt toolkit 2. The default pygment
style is no longer merged into style selected in xonsh.
* The JupyterKernel has been fixed from a rather broken state.
2018-07-30 11:00:10 -04:00
v0.7.2
====================
**Added:**
* `` history show `` builtin now supports optional `` -0 `` parameter that switches
the output to null-delimited. Useful for piping history to external filters.
**Fixed:**
* If exception is raised in indir context manager, return to original directory
* Fixed issue that autocomplete menu does not display
at terminal's maximum height
2018-07-23 08:59:58 -04:00
v0.7.1
====================
**Added:**
2018-07-23 10:50:27 -04:00
* Added feature to aliases.
2018-07-23 08:59:58 -04:00
* `` xonsh.lib.os.rmtree() `` an rmtree which works on windows properly (even with
git)
**Changed:**
* set default value of `` $AUTO_SUGGEST_IN_COMPLETIONS=False ``
2018-07-23 10:50:27 -04:00
* Use the `` pygments_cache.get_all_styles() `` function instead of
2018-07-23 08:59:58 -04:00
interacting directly with pygments.
**Fixed:**
* Fixed issue with `` $ARG<N> `` varaibles not being passed to subprocesses correctly.
* Fixed issue with multiline string inside of `` @(expr) `` in
unwrapped subprocesses. For example, the following now works::
echo @("""hello
mom""")
* `` CommandPipeline.output `` now does properly lazy, non-blocking creation of
output string. `` CommandPipeline.out `` remains blocking.
* Fix regression in `` INTENSIFY_COLORS_ON_WIN `` functionality due to prompt_toolkit 2 update.
2018-07-23 10:50:27 -04:00
* Fixed issue that can't insert quotation marks and double quotes
2018-07-23 08:59:58 -04:00
for completion.
* Fixed issue with `` SyntaxErrors `` being reported on the wrong line
when a block of code contained multiple implicit subprocesses.
2018-07-23 10:50:27 -04:00
* `` prompt_toolkit >= 2 `` will start up even if Pygments isn't present
2018-07-23 08:59:58 -04:00
* Fixed a regression with `` xonfig styles `` reporting `` AttributeError: module 'pygments' has no attribute 'styles' ``
2018-07-23 10:50:27 -04:00
* ptk dependent xontribs (that use custom keybindings) now work with both ptk1
2018-07-23 08:59:58 -04:00
and ptk2
* Fixed async tokenizing issue on Python v3.7.
2018-07-16 12:25:41 -04:00
v0.7.0
====================
**Added:**
2018-07-19 19:59:07 -04:00
* Added a hook for printing a spcial display method on an object.
2018-07-16 12:25:41 -04:00
* Support for `` prompt_toolkit 2.0 ``
* The `` --shell-type `` (`` $SHELL_TYPE `` ) may now be specified using
shortcuts, such as `` rl `` for `` readline `` and `` ptk2 `` for
`` prompt_toolkit2 `` . See `` xonsh --help `` for a full listing
of available aliases.
**Fixed:**
- Restored AUGASSIGN_OPS definition, which was inadvertently removed.
2018-07-11 14:09:19 -05:00
v0.6.10
====================
**Added:**
* `` xonsh.lib.subprocess.check_output `` as a `` check_output `` drop in
**Fixed:**
* `` xonsh.lib.subprocess.run `` doesn't change dirs unless asked
2018-07-06 16:07:37 -04:00
v0.6.9
====================
**Added:**
* New xonsh standard library `` xonsh.lib `` subpackage
* `` xonsh.lib.os.indir `` a context manager for temporarily entering into a directory
* `` xonsh.lib.subprocess.run `` and `` xonsh.lib.subprocess.check_call ``
subprocess stubs using `` xonsh `` as the backend
**Fixed:**
* update xoreutils._which.which() for python 3.x support.
* Fixed issue with incorrect strip lengths for prefixes with quotes in them
* Fixed bash script to also consider leading double quotes and not just single
quotes
* Launching xonsh with prompt_toolkit version 2.x no longer fails, and instead fallsback to readline shell. This is a patch for until prompt_toolkit 2.x support is fully implemented. See PR #2570
2018-06-28 22:51:35 -04:00
v0.6.8
====================
**Fixed:**
* completions relative to `` CDPATH `` only trigger when used with `` cd ``
* Import of `` ctypes.util `` is now explictly performed, as needed.
Python v3.7 no longer imports this module along with `` ctypes `` .
* Fixed issue with pygments-cache not properly generating a cache the first
time when using prompt-toolkit. This was due to a lingering lazy import
of `` pkg_resources `` that has been removed.
* Removed duplicate `` pip `` completer
* `` bash_completion `` no longer returns invalid prefix lengths for directories
containing escape file names
* Fixed error when using redirection (e.g., >) on Windows.
2018-06-15 10:49:44 -04:00
v0.6.7
====================
**Changed:**
* Xonsh live example has been re-added back to the documentation.
**Fixed:**
* Fixed issue where xonsh would fail to properly return the terminal prompt
(and eat up 100% CPU) after a failed subprocess command in interactive mode
if `` $RAISE_SUBPROC_ERROR = True `` .
* `` xonsh.tokenize.tok_name `` no longer mutates the standard library `` tokenize.tok_name `` .
A copy is made on import instead.
2018-06-06 13:12:10 -04:00
v0.6.6
====================
**Added:**
* A multipurpose add method to EnvPath. For example:
.. code-block :: xonshcon
$ $PATH
EnvPath(
['/usr/bin', '/usr/local/bin', '/bin']
)
$ $PATH.add('~/.local/bin', front=True); $PATH
EnvPath(
['/home/user/.local/bin', '/usr/bin', '/usr/local/bin', '/bin']
)
$ $PATH.add('/usr/bin', front=True, replace=True); $PATH
EnvPath(
['/usr/bin', '/home/user/.local/bin', '/usr/local/bin', '/bin']
)
* Added `` pygments-cache `` project in order to reduce startup time.
**Changed:**
* built_ins.py, corrected a typo.
* test/test_news.py
It now uses regex to verify the format of rst files
* Mercurial (`` hg `` ) will no longer run in a threadable subprocess when
it is run in interactive mode.
**Fixed:**
* issue 2313
2018-05-28 10:04:24 -04:00
v0.6.5
====================
**Added:**
* Wizard `` FileInsterter `` node class now has `` dumps() `` method for
converting a mapping to a string to insert in a file.
**Fixed:**
* Fixed issue with `` xonfig wizard `` writer failing to write valid run control
files for environment variables that are containter types. In particular,
the storage of `` $XONSH_HISTORY_SIZE `` has been fixed.
2018-05-17 13:50:38 -04:00
v0.6.4
====================
**Changed:**
* Error message improved for sourcing foreign shells, when file cannot be found
or there is a syntax error.
**Fixed:**
* Fixed issues with readline completer tab completing entries
with spaces.
* Fixed `` xonsh.tools.columnize() `` bug the prevented single-row
input from being columnized correctly.
* Now honor ASYNC and AWAIT as keywords in tokenizer on
Python 3.7.
2018-05-04 15:53:23 -04:00
v0.6.3
====================
**Added:**
* Docs for using `` @(<expr>) `` as a way to run commands and a gotcha about
list of strings vs single string expressions.
* Ubuntu versions which xonsh is packaged for (with xonsh versions)
**Changed:**
* When reporting errors without a traceback (i.e. `` $XONSH_SHOW_TRACEBACK = False `` ) and the error is a `` XonshError ``
the exception type is not longer printed.
* `` CommandPipeline.proc `` may now be `` None `` , to accomodate when the process
fails to even start (i.e. a missing command or incorrect permisions).
**Fixed:**
* The `` curl `` command will now be run in a thread, which prevents documents that
do not end in a newline from writing over the next prompt and vice versa.
* Fix bug on Windows when `` PATHEXT `` environment variable did not exist.
This also fixes building the xonsh documentation on Windows.
2018-07-19 19:59:07 -04:00
* Fixed a bug in the `free_cwd <http://xon.sh/xontribs.html#free-cwd> `__ Windows Xontrib, which caused the prompt to error if the current directory is
2018-05-04 15:53:23 -04:00
deleted/renamed from an other process.
* Fixed issue with `` $XONSH_SHOW_TRACEBACK `` not being respected in subprocess
mode when the command could not be found or had incorrect permissions.
2018-04-23 21:37:28 -04:00
v0.6.2
====================
**Added:**
* Release tarballs now include licenses and minimal documentation for xonsh and ply
* Wizard now has a `` FileInserter `` node that allows blocks to be
inserted and replaced inside of a file. This adheres to conversion
rules fordumping as provided on this node.
* New `` xonsh.wizard.StateVisitor.flatten() `` method for flattening the
current state.
**Changed:**
* The xonsh startup wizard will only be triggered if no xonshrc files exist
and the file `` ~/.local/config/xonsh/no-wizard `` is not present.
* The `` xonfig wizard `` command will now run write out to the xonshrc file.
* Wizard nodes `` Save `` and `` Load `` had their names changed to `` SaveJSON ``
and `` LoadJSON `` .
**Removed:**
* Static configuration is dead (`` config.json `` ), long live run control (`` xonshrc `` )!
* The following evironment variables have been removed as they are no longer needed:
`` $LOADED_CONFIG `` and `` $XONSHCONFIG `` .
* Many support functions for static configuration have also been removed.
**Fixed:**
* Files starting with `` # `` are auto-escaped by TAB completion
2018-04-14 09:12:33 -04:00
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.
2017-11-22 18:13:51 -05:00
v0.6.0
====================
**Added:**
* Added an alias command, matching bash's implementation, available as part of bashisms.
* New `` $AUTO_SUGGEST_IN_COMPLETIONS `` environment variable that enables/disables
whether the auto-suggestion result appears in the tab completions.
* Added `` __add__() `` and `` __radd__() `` methods to `` EnvPath `` .
* Xonsh now supports f-strings, as in Python v3.6+.
* Added `` ipython `` as unthreadable in command cache threadabilty predictors.
* Added `` whole_word_jumping `` xontrib
* Added `` $XONSH_APPEND_NEWLINE `` environment variable
* Support for PEP 515: Underscores in Numeric Literals
* `` xonsh.color_tools.make_palette() ``
Simple rename of the pre-existing
`` xonsh.color_tools.make_pallete() `` function.
* `` xonsh.tools.decorator() `` function/method decorator.
This allows for an API function to be annotated with a
decorator that documents deprecation, while also tying in
functionality that will warn a user that the function has
been deprecated, and, raise an `` AssertionError `` if the
function has passed its expiry date.
* New xontrib `` schedule `` (Xonsh Task Scheduler)
**Changed:**
* `` on_pre_prompt `` is now fired before prompt calculations are made, allowing modifications to the prompt.
* `` emacsclient `` will now return false in the threadable predictors.
* Improved the autopair behavior to match that of popular code editors.
* Moved the lazy `` pkg_resources `` package back to its original
place. The will hopefully address some of the slowdown issues
experiances on some platforms.
* When xonsh is used to run an `` xsh `` script, the `` xonshrc `` is not loaded
* Change in the behavior of the default predictor with binary analysis. The pattern `` libgpm `` is use, assuming when `` gpm `` is used the program is not threadable. This change solves issues with programs as `` links `` .
* Error messages added to the `` source `` command if it is used with a language
that is not xonsh or Python.
**Deprecated:**
* `` xonsh.color_tools.make_pallette() ``
Deprecated in release 0.5.10 and will be removed in release 0.6.0.
**Fixed:**
* Now f-strings can be used inside @() without explicit enclosing command in ![]
* Fix for `` x, y, *z = ... `` unpacking.
* Git branch detection now correctly passes the environment down to the subprocess
call. This allows for branch detection when git is installed into a non-standard
location.
* Escape regex characters in `` path_complete `` to avoid regex parsing errors for
certain combinations of characters in path completer
* gistatus: Fixed hash not being shown when in detaced HEAD and there are no tags
* Fix branch colorization when `` git `` or `` hg `` are aliases.
* Fixed leftover `` .git/index.lock `` in `` gitstatus ``
* Made JSON history loading more robust to corrupt files.
* Starting a new command with an open parentheses will no longer
throw a traceback when `` $UPDATE_COMPLETIONS_ON_KEYPRESS `` is
`` True `` .
* Automatically wrapping subprocess calls would sometimes include
semincolons and other line-ending tokens, rather than stopping at them.
This has been fixed.
* Numerous spelling errors in documentation, docstrings/comments, text
strings and local variable names.
* Spelling error in the `` xonsh.color_tools.make_pallete() `` public
function declaration. This was fixed by renaming the function to
`` xonsh.color_tools.make_palette() `` while maintaining a binding
of `` make_pallete() `` to the new `` make_palette() `` in case users
are already used to this API.
* Fixed issue with starting triple quote strings being run as a command.
* Fixed a problem with escaping charet (^) character for cmd.exe in the source-cmd function.
* `` EOF in multi-line statement `` errors were misreported as being on line 0.
Now they are correctly reported as being on the last line of the file.
2017-06-10 09:05:15 -04:00
v0.5.12
====================
**Fixed:**
* Fixed `` release.xsh `` to prevent it from dirtying the repo on release and
leading to an unwanted `` .dev `` suffix on the version number
2017-06-10 14:36:32 +03:00
v0.5.11
====================
**Added:**
* `` release.xsh `` creates a github release with the merged news entries as the
release body
**Fixed:**
* `` xonfig `` now displays the proper value for "on linux"
2017-05-25 23:47:50 +03:00
v0.5.10
====================
**Added:**
* Added `` xclip `` and `` repo `` to default threadable predictors (Issues #2355
and #2348)
* Pretty printing of the $PATH variable
* Add "fzf-widgets" xontrib which provides fuzzy search productivity widgets
with on custom keybindings to xontrib list.
2017-06-07 11:51:06 -04:00
* New `` free_cwd `` xontrib for Windows, which prevent the current directory from being locked when the prompt is shown.
2018-07-19 19:59:07 -04:00
This allows the other programs or Windows explorer to delete the current or parent directory. This is accomplished by
2017-06-07 11:51:06 -04:00
resetting the CWD to the users home directory temporarily while the prompt is displayed. The directory is still locked
2017-05-25 23:47:50 +03:00
while any commands are processed so xonsh still can't remove it own working directory.
**Changed:**
* Codecov threshold to 2%
**Removed:**
* On Windows environments variables in wrapped like`` %foo% `` are no longer expanded automatically.
**Fixed:**
* Fixed the `` --rc `` option so it now runs xonsh with the specified rc file
* `` @$ `` operator now functions properly when returned command is an alias
* Correct line continuation would not work on Windows if the line continuations were used
in the `` xonshrc `` file.
* Fixed a regression in the Windows `` sudo `` command, that allows users to run elevated commands in xonsh.
* Fix echo command from xoreutils.
2017-06-07 11:51:06 -04:00
* Fixed a bug on Windows which meant xonsh wasn't using PATH environment variable but instead relying on a default
value from the windows registry.
2017-05-25 23:47:50 +03:00
2017-03-15 14:54:00 -04:00
v0.5.9
====================
**Added:**
* Add `` Alt . `` keybinding to `` bashisms-xontrib `` to insert last argument of
previous command into current buffer
**Fixed:**
* Fix crash when openSSH version of bash is on PATH on Windows.
* Added missing ensurers to make sure that `` bool `` env_vars are bools and
`` int `` env_vars are integers:
* `` DIRSTACK_SIZE ``
* `` EXPAND_ENV_VARS ``
* `` PUSHD_MINUS ``
* `` PUSHD_SILENT ``
* `` SUGGEST_COMMANDS ``
* `` SUGGEST_MAX_NUM ``
* `` SUGGEST_THRESHOLD ``
2017-03-08 15:46:55 -06:00
v0.5.8
====================
**Changed:**
2017-06-07 11:51:06 -04:00
* The `` xonsh.platform.os_environ `` wrapper is now case-insensitive and
2017-03-08 15:46:55 -06:00
case-preserving on Windows.
* The private `` _TeeStd `` class will no longer attempt to write to a
standard buffer after the tee has been 'closed' and the standard
buffer returned to the system.
**Fixed:**
* Fixed a bug on py34 where os.scandir was used by accident.
* Line continuations (`` \\ `` ) is subproc mode will no longer consume the
surrounding whitespace.
2018-07-19 19:59:07 -04:00
* Fixed a bug if foreign_shell name was not written in lower case in
2017-03-08 15:46:55 -06:00
the static configuration file `` config.json ``
* Fixed a regression on Windows where caused `` which `` reported that the
2017-06-07 11:51:06 -04:00
`` PATH `` environment variable could not be found.
2017-03-08 15:46:55 -06:00
* Fixed issue with foregrounding jobs that were started in the background.
* Fixed that `` Ctrl-C `` crashes xonsh after running an invalid command.
* Fixed an potential `` ProcessLookupError `` issue, see #2288.
2017-03-01 11:42:00 -05:00
v0.5.7
====================
**Added:**
* New `` color_tools `` module provides basic color tools for converting
2017-06-07 11:51:06 -04:00
to and from various formats as well as creating palettes from color
2017-03-01 11:42:00 -05:00
strings.
* Redirections may now be used in string and list-of-strings
aliases.
* Subprocess redirection may now forego the whitespace between the
redirection and a file name. For example,
`` echo hello world >/dev/null `` .
* Add a `` -P `` flag to the `` cd `` function in order to change directory and
following symlinks.
* `` xonfig tutorial `` command to launch the http://xon.sh/tutorial in the
browser.
* `` @(...) `` syntax now supports generators and tuples without parentheses.
* Sourcing foreign shells now have the `` --show `` option, which
lets you see when script will be run, and the `` --dryrun ``
option which prevents the source from actually taking place.
2017-03-02 00:55:36 -05:00
Xonsh's foreign shell API also added these keyword arguments.
2017-03-01 11:42:00 -05:00
* Subprocess mode now supports subshells. Place any xonsh
code between two parentheses, e.g. `` (cmd) `` , to run
this command in a separate xonsh subprocess.
* Foreign shell aliases now have the ability to take extra arguments,
if needed.
* Xonsh will issue a warning message when the current working
directory has been remove out from under it and not replaced
prior to running the next command.
* Line continuation backslashes are respected on Windows in the PTK shell if
the backspace is is preceded by a space.
2017-06-07 11:51:06 -04:00
* Added `` ponysay `` as a command which will usually not run in a
2017-03-01 11:42:00 -05:00
threaded mode in the commands cache.
* New `` jsonutils `` module available for serializing special
xonsh objects to JSON.
**Changed:**
* The literal tokens `` and `` and `` or `` must be surrounded by
whitespace to delimit subprocess mode. If they do not have
2017-06-07 11:51:06 -04:00
whitespace on both sides in subproc mode, they are considered
2017-03-01 11:42:00 -05:00
to be part of a command argument.
* The `` xontrib `` command is now flagged as unthreadable and will be
run on the main Python thread. This allows xontribs to set signal
handlers and other operations that require the main thread.
* nvim (Neovim) has been flagged as unthreadable
* The interactive prompt will now catch `` SystemExit `` and, instead
of exiting the session, will refresh the prompt. This is the same
process as for keyboard interrupts.
2017-03-02 00:55:36 -05:00
* Xonsh no longer launches the wizard for new users. Instead a welcome screen is
shown which says how to launch the wizard.
2017-03-01 11:42:00 -05:00
* Added Windows `` expanduser() `` -like function which prevents
the expansion of `` ~ `` that are not followed by a path
separator.
* Collecting xonsh history files was reported to have random runtime
OSError failures. This exception is now handled, just in case. The
The exception will still be printed in debug mode.
* `` Shell.stype `` has been renamed to `` Shell.shell_type `` .
* The configuration wizard now displays the proper control sequence to leave
the wizard at the to start of the wizard itself. Note that this is Ctrl+D for
readline and Ctrl+C for prompt-toolkit.
* Callable alias proxy functions are now more friendly to
`` functools.partial() `` .
* `` prompt.vc.get_hg_branch `` now uses `` os.scandir `` to walk up the filetree
looking for a `` .hg `` directory. This results in (generally) faster branch
resolution compared to the subprocess call to `` hg root `` .
* Xonsh's script and code caches will are now invalidated whenever the
xonsh version changes for a given Python version.
* Autowrapping of subprocess globs has been improved to cover
more cases that are ambiguous with Python syntax.
* Job control info when foregrounding or backgrounding jobs will now
only be displayed when xonsh is in interactive mode.
* Enabled virtual terminal processing in the prompt-toolkit shell for Windows.
**Fixed:**
* 3rd party pygments styles (like solorized or monokailight) are now
able to be used in xonsh. These styles are dynamically created upon
first use, rather than being lazily loaded by xonsh.
* On Windows, `` os.environ `` is case insensitive. This would potentially
2017-06-07 11:51:06 -04:00
change the case of environment variables set into the environment.
Xonsh now uses `` nt.environ `` , the case sensitive counterpart, to avoid
2017-03-01 11:42:00 -05:00
these issues on Windows.
* Fix how `` $PWD `` is managed in order to work with symlinks gracefully
* `` history replay `` no longer barfs on `` style_name `` when setting up the
environment
* `` Shell.shell_type `` is now properly set to the same value as `` $SHELL_TYPE `` .
* Fixed `` source-zsh `` to work with zsh v5.2.
* Fixed issue where `` del (x, y) `` would raise a syntax error.
* Certain vim commands issue commands involving subshells,
and this is now supported.
* Null bytes handed to Popen are now automatically escaped prior
2017-06-07 11:51:06 -04:00
to running a subprocess. This prevents Popen from issuing
2017-03-01 11:42:00 -05:00
embedded null byte exceptions.
* Xonsh will no longer crash is the current working directory is
2017-03-02 00:55:36 -05:00
removed out from under it.
2017-03-01 11:42:00 -05:00
* Multiline strings can now be written in subprocess mode.
* PTK completions will now correctly deduplicate autosuggest completions
and display completions values based on the cursor position.
* Fixed bug where trailing backspaces on Windows paths could be interpreted
as line continuations characters. Now line continuation characters must be
preceded by a space on Windows. This only applies to xonsh in interactive
mode to ensure scripts are portable.
* Importing `` *.xsh `` files will now respect the encoding listed in
2017-06-07 11:51:06 -04:00
that file and properly fallback to UTF-8. This behaviour follows
2017-03-01 11:42:00 -05:00
the rules described in PEP 263.
2017-06-07 11:51:06 -04:00
* Wizard is now able to properly serialize environment paths.
2017-03-01 11:42:00 -05:00
2017-02-22 11:51:33 -05:00
v0.5.6
====================
**Added:**
* New core utility function aliases (written in pure Python) are now
available in `` xonsh.xoreutils `` . These include: `` cat `` , `` echo `` ,
`` pwd `` , `` tee `` , `` tty `` , and `` yes `` . These are not enabled by default.
Use the new `` coreutils `` xontrib to load them.
* CircleCI test post codecov run
* The `` trace `` will automatically disable color printing when
stdout is not a TTY or stdout is captured.
* New `` jedi `` xontrib enables jedi-based tab completions when it is loaded.
2017-06-07 11:51:06 -04:00
This supersedes xonsh's default Python-mode completer.
2017-02-22 11:51:33 -05:00
* The lexer has a new `` split() `` method which splits strings
according to xonsh's rules for whitespace and quotes.
* New events for hooking into the Python import process are now available.
You can now provide a handler for:
- `` on_import_pre_find_spec ``
- `` on_import_post_find_spec ``
- `` on_import_pre_create_module ``
- `` on_import_post_create_module ``
- `` on_import_pre_exec_module ``
- `` on_import_post_exec_module ``
**Changed:**
* The prompt toolkit shell's first completion will now be the
2017-06-07 11:51:06 -04:00
current token from the auto-suggestion, if available.
2017-02-22 11:51:33 -05:00
* Sourcing foreign shells will now safely skip applying aliases
with the same name as existing xonsh aliases by default.
2017-06-07 11:51:06 -04:00
This prevents accidentally overwriting important xonsh standard
2017-02-22 11:51:33 -05:00
aliases, such as `` cd `` .
**Fixed:**
2017-06-07 11:51:06 -04:00
* Threadable prediction for subprocesses will now consult both the command
2017-02-22 11:51:33 -05:00
as it was typed in and any resolved aliases.
* The first prompt will no longer print in the middle of the line if the user has
already started typing.
* Windows consoles will now automatically enable virtual terminal processing
with the readline shell, if available. This allows the full use of ANSI
escape sequences.
2017-06-07 11:51:06 -04:00
* On the Windows readline shell, the tab-completion suppression prompt will no
2017-02-22 11:51:33 -05:00
longer error out depending on what you press.
2017-06-07 11:51:06 -04:00
* Fixed issue with subprocess mode wrapping not respecting line continuation
2017-02-22 11:51:33 -05:00
backslashes.
2017-03-02 00:55:36 -05:00
* Handle a bug where Bash On Windows causes platform.windows_bash_command()
2017-02-22 11:51:33 -05:00
to raise CalledProcessError.
* Fixed issues pertaining to completing from raw string paths.
This is particularly relevant to Windows, where raw strings
2017-06-07 11:51:06 -04:00
are inserted in path completion.
2017-02-22 11:51:33 -05:00
* Replace deprecated calls to `` time.clock() `` by calls to
`` time.perf_counter() `` .
* Use `` clock() `` to set the start time of `` _timings `` in non-windows instead
of manually setting it to `` 0.0 `` .
* The `` trace `` utility will now correctly color output and not
print extraneous newlines when called in a script.
* The `` @$(cmd) `` operator now correctly splits strings according to
xonsh semantics, rather than just on whitespace using `` str.split() `` .
* The `` mpl `` xontrib has been updated to improve matplotlib
handling. If `` xontrib load mpl `` is run before matplotlib
2017-06-07 11:51:06 -04:00
is imported and xonsh is in interactive mode, matplotlib
2017-02-22 11:51:33 -05:00
will automatically enter interactive mode as well. Additionally,
`` pyplot.show() `` is patched in interactive mode to be non-blocking.
2017-06-07 11:51:06 -04:00
If a non-blocking show fails to draw the figure for some reason,
2017-02-22 11:51:33 -05:00
a regular blocking version is called.
* Fixed issues like `` timeit ls `` causing OSError - "Inappropriate ioctl
for device".
* Fixed a potential "OSError: [Errno 22] Invalid argument" to increase job
control stability.
2017-02-15 15:20:09 -05:00
v0.5.5
====================
**Added:**
* New `` --rc `` command line option allows users to specify paths to run control
files from the command line. This includes both xonsh-based and JSON-based
configuration.
* New `` $UPDATE_COMPLETIONS_ON_KEYPRESS `` controls whether or not completions
will automatically display and update while typing. This feature is only
available in the prompt-toolkit shell.
**Changed:**
* Xonsh scripts now report `` __file__ `` and `` __name__ `` when run as scripts
or sourced. These variables have the same meaning as they do in Python
scripts.
* `` $XONSHRC `` and related configuration variables now accept JSON-based
static configuration file names as elements. This unifies the two methods
of run control to a single entry point and loading system.
* The `` xonsh.shell.Shell() `` class now requires that an Execer instance
be explicitly provided to its init method. This class is no longer
2017-06-07 11:51:06 -04:00
responsible for creating an execer an its dependencies.
2017-02-15 15:20:09 -05:00
* Moved decorators `` unthreadable `` , `` uncapturable `` from
`` xonsh.proc `` to `` xonsh.tools `` .
* Some refactorings on jobs control.
**Deprecated:**
* The `` --config-path `` command line option is now deprecated in favor of
`` --rc `` .
**Removed:**
* `` xonsh.environ.DEFAULT_XONSHRC `` has been removed due to deprecation.
For this value, please check the environment instead, or call
`` xonsh.environ.default_xonshrc(env) `` .
**Fixed:**
* Command pipelines that end in a callable alias are now interruptable with
2017-06-07 11:51:06 -04:00
`` ^C `` and the processes that are piped into the alias have their file handles
2017-02-15 15:20:09 -05:00
closed. This should ensure that the entire pipeline is closed.
* Fixed issue where unthreadable subprocs were not allowed to be
captured with the `` $(cmd) `` operator.
* The `` ProcProxy `` class (unthreadable aliases) was not being executed and would
2017-06-07 11:51:06 -04:00
hang if the alias was capturable. This has been fixed.
2017-02-15 15:20:09 -05:00
* Fixed a `` tcsetattr: Interrupted system call `` issue when run xonsh scripts.
* Fixed issue with `` ValueError `` being thrown from `` inspect.signature() ``
2017-06-07 11:51:06 -04:00
when called on C-extension callables in tab completer.
2017-02-15 15:20:09 -05:00
* Fixed issue that `` ls | less `` crashes on Mac.
* Threadable prediction was incorrectly based on the user input command, rather than
the version where aliases have been resolved. This has been corrected.
2017-02-08 11:42:23 -05:00
v0.5.4
====================
**Added:**
* Add alias `` xip `` ("kip") so that xonsh's Python environment (whatever that is) can be modified.
* HistoryEntry, a SimpleNamespace object that represents a command in history.
* `` xonsh.completers.bash_completion `` module
* Added option to report timing information of xonsh startup times. Start xonsh
with the `` --timings `` flag to use the feature.
* The Python tab completer will now complete the argument names of functions
and other callables.
* Uptime module added to `` xonsh.xoreutils `` . This can report the system
boot time and up time.
* The environment variable `` XONSH_HISTORY_BACKEND `` now also supports a
value of class type or a History Backend instance.
* `` on_envvar_new `` event that fires after a new envvar is created.
* `` on_envvar_change `` event that fires after an envvar is changed.
**Changed:**
* history indexing api to be more simple, now returns HistoryEntry.
* Decoupled `` bash_completion `` from xonsh project and added shim back to
xonsh.
* The JSON history backend will now unlock history files that were created
prior to the last reboot.
**Fixed:**
* Fixed broken bash completions on Windows if 'Windows Subsystem for Linux' is installed.
2017-02-15 15:27:14 -05:00
* Readline history would try to read the first element of history prior to
actually loading any history. This caused an exception to be raised on
2017-02-08 11:42:23 -05:00
Windows at xonsh startup when using pyreadline.
* Fixed issue with readline tab completer overwriting initial prefix in
some instances.
* Fixed issue wherein if `` git `` or (presumably) `` hg `` are aliased, then branch
information no longer appears in the `` $PROMPT ``
* Fixed an issue with commands that background themselves (such as
`` gpg-connect-agent `` ) not being able to be run from within xonshrc.
2017-02-01 10:32:33 -05:00
v0.5.3
====================
**Added:**
* Tab completion xontrib for python applications based on click framework.
* Added `` on_transform_command `` event for pre-processing that macros can't handle.
* Autodetection of backgroundability by binary analysis on POSIX.
* New argument `` expand_user=True `` to `` tools.expand_path `` .
* New `` $COMPLETION_QUERY_LIMIT `` environment variable for setting the
number of completions above which the user will be asked if they wish to
see the potential completions.
* Users may now redirect stdout to stderr in subprocess mode.
**Changed:**
* The `` Block `` and `` Functor `` context managers from `` xonsh.contexts `` have been
rewritten to use xonsh's macro capabilities. You must now enter these via the
2017-02-01 10:33:50 -05:00
`` with! `` statement, e.g. `` with! Block(): pass `` .
2017-02-01 10:32:33 -05:00
* The `` distributed `` xontrib now needs to use the `` with! `` statement, since it
relies on `` Functor `` .
* `` telnet `` has been flagged as unthreadable.
* When `` $DYNAMIC_CWD_ELISION_CHAR `` is non empty and the last dir of cwd is too
long and shortened, the elision char is added at the end.
* `` pygments `` is no longer a strict dependency of the `` prompt_toolkit ``
backend. If `` pygments `` is not installed, the PTK backend will use the
default ansi color settings from the terminal. Syntax highlighting requires
that `` pygments `` is installed.
* Events are now keyword arguments only
* Restored `` on_precommand `` to its original signature.
* Move `` built_ins.expand_path `` to `` tools.expand_path `` .
* Rename `` tools.expandpath `` to `` tools._expandpath `` .
* Added `` gvim `` command to unthreadable predictors.
* The `` source `` alias now passes `` $ARGS `` down to file it is sourcing.
**Removed:**
* `` XonshBlockError `` has been removed, since it no longer serves a purpose.
**Fixed:**
* `` PopenThread `` will now re-issue SIGINT to the main thread when it is
2017-06-07 11:51:06 -04:00
received.
2017-02-01 10:32:33 -05:00
* Fixed an issue that using sqlite history backend does not kill unfinished
jobs when quitting xonsh with a second "exit".
* Fixed an issue that xonsh would fail over to external shells when
running .xsh script which raises exceptions.
* Fixed an issue with `` openpty() `` returning non-unix line endings in its buffer.
This was causing git and ssh to fail when xonsh was used as the login shell on the
server. See https://mail.python.org/pipermail/python-list/2013-June/650460.html for
more details.
* Restored the ability to ^Z and `` fg `` processes on posix platforms.
2017-06-07 11:51:06 -04:00
* CommandPipelines were not guaranteed to have been ended when the return code
2017-02-01 10:32:33 -05:00
was requested. This has been fixed.
* Introduce path expansion in `` is_writable_file `` to fix
`` $XONSH_TRACEBACK_LOGFILE=~/xonsh.log `` .
* Backgrounding a running process (^Z) now restores ECHO mode to the terminal
in cases where the subprocess doesn't properly restore itself. A major instance
of this behaviour is Python's interactive interpreter.
* Readline backend would not ask the user to confirm the printing of completion
options if they numbered above a certain value. Instead they would be dumped to
the screen. This has been fixed.
* Jupyter kernel was no longer properly running subprocess commands.
This has been fixed.
* The filename is applied to the target of the `` source `` alias, providing better
tracebacks.
2017-01-05 01:18:35 -08:00
v0.5.2
====================
**Added:**
* Added `` weechat `` to default predictors
* `` $DYNAMIC_CWD_ELISION_CHAR `` environment variable to control how a shortened
path is displayed.
**Changed:**
* `` _ret_code `` function of `` prompt_ret_code `` xontrib return now `` None `` when
return code is 0 instead of empty string allowing more customization of prompt
format.
**Fixed:**
* Minor Python completer token counting bug fix.
* multiline syntax error in PTK shell due to buffer not being reset
* Segfaults and other early exit signals are now reported correctly,
again.
* `` tests/bin/{cat,pwd,wc} `` shebang changed to python3
2016-12-21 09:31:19 -05:00
v0.5.1
====================
**Fixed:**
* Fixed xonfig raising error when xonsh is not installed from source.
2016-12-20 13:23:52 -08:00
v0.5.0
====================
**Added:**
* $XONTRIB_MPL_MINIMAL environment variable can be set to change if plots are minimalist or as-seen
* xontrib-mpl now supports iTerm2 inline image display if iterm2_tools python package is installed
* Xonsh now will fallback to other shells if encountered errors when
starting up.
* Added entry to customization faq re: `` dirs `` alias (#1452)
* Added entry to customization faq re: tab completion selection (#1725)
* Added entry to customization faq re: libgcc core dump (#1160)
* Section about quoting in the tutorial.
2017-06-07 11:51:06 -04:00
* The `` $VC_HG_SHOW_BRANCH `` environment variable to control whether to hide the hg branch in the prompt.
2016-12-20 13:23:52 -08:00
* xonfig now contains the latest git commit date if xonsh installed
from source.
* Alt+Enter will execute a multiline code block irrespective of cursor position
2017-06-07 11:51:06 -04:00
* Windows now has the ability to read output asynchronously from
2016-12-20 13:23:52 -08:00
the console.
* Use `doctr <https://drdoctr.github.io/doctr/> `_ to deploy dev docs to github pages
* New `` xonsh.proc.uncapturable() `` decorator for declaring that function
aliases should not be run in a captured subprocess.
* New history backend sqlite.
2016-12-20 13:41:24 -08:00
* Prompt user to install xontrib package if they try to load an uninstalled
2016-12-20 13:23:52 -08:00
xontrib
2017-06-07 11:51:06 -04:00
* Callable aliases may now take a final `` spec `` argument, which is the
corresponding `` SubprocSpec `` instance.
2016-12-20 13:23:52 -08:00
* New `` bashisms `` xontrib provides additional Bash-like syntax, such as `` !! `` .
This xontrib only affects the command line, and not xonsh scripts.
* Tests that create testing repos (git, hg)
2017-06-07 11:51:06 -04:00
* New subprocess specification class `` SubprocSpec `` is used for specifying
2016-12-20 13:23:52 -08:00
and manipulating subprocess classes prior to execution.
* New `` PopenThread `` class runs subprocesses on a a separate thread.
* New `` CommandPipeline `` and `` HiddenCommandPipeline `` classes manage the
execution of a pipeline of commands via the execution of the last command
in the pipeline. Instances may be iterated and stream lines from the
stdout buffer. These pipelines read from the stdout & stderr streams in a
non-blocking manner.
* `` $XONSH_STORE_STDOUT `` is now available on all platforms!
* The `` CommandsCache `` now has the ability to predict whether or not a
command must be run in the foreground using `` Popen `` or may use a
background thread and can use `` PopenThread `` .
* Callable aliases may now use the full gamut of functions signatures:
`` f() `` , `` f(args) `` , `` f(args, stdin=None) `` ,
`` f(args, stdin=None, stdout=None) `` , and `
`` f(args, stdin=None, stdout=None, stderr=None) `` .
2017-06-07 11:51:06 -04:00
* Uncaptured subprocesses now receive a PTY file handle for stdout and
2016-12-20 13:23:52 -08:00
stderr.
* New `` $XONSH_PROC_FREQUENCY `` environment variable that specifies how long
2017-06-07 11:51:06 -04:00
loops in the subprocess framework should sleep. This may be adjusted from
its default value to improved performance and mitigate "leaky" pipes on
2016-12-20 13:23:52 -08:00
slower machines.
* `` Shift+Tab `` moves backwards in completion dropdown in prompt_toolkit
* PromptFormatter class that holds all the related prompt methods
* PromptFormatter caching when building the prompt
* p-strings: `` p'/foo/bar' `` is short for `` pathlib.Path('/foo/bar') ``
* byte strings: prefixes other than `` b'foo' `` (eg, `` RB'foo' `` ) now work
* Backticks for regex or glob searches now support an additional modifier
`` p `` , which causes them to return Path objects instead of strings.
* New `` BOTTOM_TOOLBAR `` environment variable to control a bottom toolbar as specified in prompt-toolkit
* New `` $XONSH_STDERR_PREFIX `` and `` $XONSH_STDERR_POSTFIX `` environment
variables allow the user to print a prompt-like string before and after
all stderr that is seen. For example, say that you would like stderr
to appear on a red background, you might set
`` $XONSH_STDERR_PREFIX = "{BACKGROUND_RED}" `` and
`` $XONSH_STDERR_PREFIX = "{NO_COLOR}" `` .
* New `` xonsh.pyghooks.XonshTerminal256Formatter `` class patches
the pygments formatter to understand xonsh color token semantics.
* Load events are now available
* New events added: `` on_post_init `` , `` on_pre_cmdloop `` , `` on_pre_rc `` , `` on_post_rc `` , `` on_ptk_create ``
* Completion for `` xonsh `` builtin functions `` xontrib `` and `` xonfig ``
* Added a general customization FAQ page to the docs to collect various
tips/tricks/fixes for common issues/requests
* `` test_single_command `` and `` test_redirect_out_to_file `` tests in `` test_integrations ``
* Add note that the target of redirection should be separated by a space.
**Changed:**
* CircleCI now handles flake8 checks
* Travis doesn't allow failures on nightly
* `` get_hg_branch `` runs `` hg root `` to find root dir and check if we're in repo
2016-12-20 13:41:24 -08:00
* The default style will now use the color keywords (#ansired, #ansidarkred)
2016-12-20 13:23:52 -08:00
to set colors that follow the terminal color schemes. Currently, this requires
prompt_toolkit master (>1.0.8) and pygments master (2.2) to work correctly.
* `` vox activate `` now accepts relative directories.
* Updated the effectivity of `` $XONSH_DEBUG `` on debug messages.
* Better documentation on how to get nice colors in Windows' default console
2016-12-20 13:41:24 -08:00
* All custom prompt_toolkit key binding filters now declared with the
2016-12-20 13:23:52 -08:00
`` @Condition `` decorator
* The style for the prompt toolkit completion menu is now lightgray/darkgray instead of turquoise/teal
* landscape.io linting now ignores ply directory
* `` history `` help messages to reflect subcommand usage
* Quote all paths when completion if any of the paths needs be quoted,
so that bash can automatically complete to the max prefix of the paths.
* Tee'd reads now occur in 1kb chunks, rather than character-by-character.
* The `` which `` alias no longer has a trailing newline if it is captured.
This means that `` $(which cmd) `` will simply be the path to the command.
* The following commands are, by default, predicted to be not threadable
in some circumstances:
* bash
* csh
* clear
* clear.exe
* cls
* cmd
* ex
* fish
* htop
* ksh
* less
* man
* more
* mutt
* nano
* psql
* ranger
* rview
* rvim
* scp
* sh
* ssh
* startx
* sudo
* tcsh
* top
* vi
* view
* vim
* vimpager
* xo
* xonsh
* zsh
* The `` run_subproc() `` function has been replaced with a new implementation.
* Piping between processes now uses OS pipes.
* `` $XONSH_STORE_STDIN `` now uses `` os.pread() `` rather than `` tee `` and a new
file.
* The implementation of the `` foreground() `` decorator has been moved to
`` unthreadable() `` .
* `` voxapi.Vox `` now supports `` pathlib.Path `` and `` PathLike `` objects as virtual environment identifiers
* Renamed FORMATTER_DICT to PROMPT_FIELDS
* BaseShell instantiates PromptFormatter
* readline/ptk shells use PromptFormatter
* Updated the bundled version of `` ply `` to current master available
* vended `` ply `` is now a git subtree to help with any future updates
2017-06-07 11:51:06 -04:00
* `` WHITE `` color keyword now means lightgray and `` INTENSE_WHITE `` completely white
2016-12-20 13:41:24 -08:00
* Removed `` add_to_shell `` doc section from `` *nix `` install pages and instead
2016-12-20 13:23:52 -08:00
relocated it to the general customization page
2016-12-20 13:41:24 -08:00
* Moved a few `` *nix `` customization tips from the linux install page to the general
2016-12-20 13:23:52 -08:00
customization page
**Removed:**
* coverage checks
* `` CompletedCommand `` and `` HiddenCompletedCommand `` classes have been removed
in favor of `` CommandPipeline `` and `` HiddenCommandPipeline `` .
* `` SimpleProcProxy `` and `` SimpleForegroundProcProxy `` have been removed
in favor of a more general mechanism for dispatching callable aliases
implemented in the `` ProcProxyThread `` and `` ProcProxy `` classes.
* `` test_run_subproc.py `` in favor of `` test_integrations.py ``
* Unused imports in many tests
* Many duplicated tests (copypasta)
**Fixed:**
* xontrib-mpl now preserves the figure and does not permanently alter it for viewing
* Fix up small pep8 violations
* Fixed a bug where some files are not showing using bash completer
* Fixed some issues with subprocess capturing aliases that it probably
shouldn't.
* `` safe_readable() `` now checks for `` ValueError `` as well.
* The scroll bars in the PTK completions menus are back.
* Jupyter kernel installation now respects the setuptools `` root `` parameter.
2016-12-20 13:41:24 -08:00
* Fix `` __repr__ `` and `` __str__ `` methods of `` SubprocSpec `` so they report
2016-12-20 13:23:52 -08:00
correctly
2017-06-07 11:51:06 -04:00
* Fixed the message printed when which is unable to find the command.
2016-12-20 13:23:52 -08:00
* Fixed a handful of sphinx errors and warnings in the docs
* Fixed many PEP8 violations that had gone unnoticed
* Fix failure to detect an Anaconda python distribution if the python was install from the conda-forge channel.
* current_branch will try and locate the vc binary once
* May now Crtl-C out of an infinite loop with a subprocess, such as
`` ` while True: sleep 1 `` .
* Fix for stdin redirects.
* Backgrounding works with `` $XONSH_STORE_STDOUT ``
* `` PopenThread `` blocks its thread from finishing until command has completed
or process is suspended.
* Added a minimum time buffer time for command pipelines to check for
if previous commands have executed successfully. This is helpful
for pipelines where the last command takes a long time to start up,
2017-06-07 11:51:06 -04:00
such as GNU Parallel. This also checks to make sure that output has occurred.
2016-12-20 13:23:52 -08:00
This includes piping 2+ commands together and pipelines that end in
unthreadable commands.
* `` curr_branch `` reports correctly when `` git config status.short true `` is used
* `` pip `` completion now filters results by prefix
* Fixed streaming `` !(alias) `` repr evaluation where bytes where not
streamed.
* Aliases that begin with a comma now complete correctly (no spurious comma)
* Use `` python3 `` in shebang lines for compatibility with distros that still use Python 2 as the default Python
* STDOUT is only stored when `` $XONSH_STORE_STDOUT=True ``
2017-06-07 11:51:06 -04:00
* Fixed issue with alias redirections to files throwing an OSError because
2016-12-20 13:23:52 -08:00
the function ProcProxies were not being waited upon.
2017-06-07 11:51:06 -04:00
* Fixed issue with callable aliases that happen to call sys.exit() or
2016-12-20 13:23:52 -08:00
raise SystemExit taking out the whole xonsh process.
* Safely flushes file handles on threaded buffers.
* Proper default value and documentation for `` $BASH_COMPLETIONS ``
* Fixed readline completer issues on paths with spaces
* Fix bug in `` argvquote() `` functions used when sourcing batch files on Windows. The bug meant an extra backslash was added to UNC paths.
Thanks to @bytesemantics for spotting it, and @janschulz for fixing the issue.
2017-06-07 11:51:06 -04:00
* pep8, lint and refactor in pytest style of `` test_ptk_multiline.py `` , `` test_replay.py ``
2016-12-20 13:23:52 -08:00
* Tab completion of aliases returned a upper cased alias on Windows.
* History show all action now also include current session items.
* `` proc.stream_stderr `` now handles stderr that doesn't have buffer attribute
* Made `` history show `` result sorted.
* Fixed issue that `` history gc `` does not delete empty history files.
* Standard stream tees have been fixed to accept the possibility that
2017-06-07 11:51:06 -04:00
they may not be backed by a binary buffer. This includes the pipeline
2016-12-20 13:23:52 -08:00
stdout tee as well as the shell tees.
* Fixed a bug when the pygments plugin was used by third party editors etc.
* CPU usage of `` PopenThread `` and `` CommandPipeline `` has been brought
down significantly.
2016-10-02 07:50:17 +03:00
v0.4.7
====================
**Added:**
* Define alias for 'echo' on startup for Windows only.
* New coredev `astronouth7303 <https://github.com/astronouth7303> `_ added
* `` which -a `` now searches in `` __xonsh_ctx__ `` too
* Info about the xontrib cookiecutter template on xontrib tutorial
* xonsh's optional dependencies may now be installed with the pip extras `` ptk `` , `` proctitle `` , `` linux `` , `` mac `` , and `` win `` .
* Env `` help `` method to format and print the vardocs for an envvar
* test_news fails if no empty line before a category
* more info on test_news failures
* Added `` on_precommand `` and `` on_postcommand `` `events </events.html> `_
* New `` FORMATTER_DICT `` entry `` gitstatus `` to provides informative git status
* FOREIGN_ALIASES_OVERRIDE envvar to control whether foreign aliases should
override xonsh aliases with the same name.
* Warning on tutorial about foreign aliases being ignored if a xonsh alias
exist with the same name if not FOREIGN_ALIASES_OVERRIDE.
* The prompt-toolkit shell now auto-inserts matching parentheses, brackets, and quotes. Enabled via the `` XONSH_AUTOPAIR `` environment variable
* Better syntax highlights in prompt-toolkit, including valid command / path highlighting, macro syntax highlighting, and more
* More info on tutorial about history interaction
* Entry on bash_to_xsh
* Macro context managers are now available via the `` with! ``
syntax.
**Changed:**
* Devguide reflects the current process of releasing through `` release.xsh ``
* moved `` which `` from `` xonsh.aliases `` into `` xoreutils.which ``
* `` xonsh.prompt.gitstatus.gitstatus `` now returns a namedtuple
* implementation of `` xonsh.prompt.vc_branch.get_git_branch `` and
`` xonsh.prompt.vc_branch.git_dirty_working_directory `` to use 'git status --procelain'
* moved prompt formatting specific functions from `` xonsh.environ ``
to `` xonsh.prompt.base ``
* All prompt formatter functions moved to `` xonsh.prompt `` subpackage
2017-06-07 11:51:06 -04:00
* Printing the message about foreign aliases being ignored happens only
2016-10-02 07:50:17 +03:00
if XONSH_DEBUG is set.
* Use `` SetConsoleTitleW() `` on Windows instead of a process call.
* Tutorial to reflect the current history command argument functionality
* Macro function arguments now default to `` str `` , rather than `` eval `` ,
2017-06-07 11:51:06 -04:00
for consistency with other parts of the macro system.
2016-10-02 07:50:17 +03:00
**Removed:**
* aliases that use '!' in their name cause they clash with the macro syntax
**Fixed:**
2016-12-20 13:41:24 -08:00
* Fix regression where bash git completions where not loaded
2016-10-02 07:50:17 +03:00
automatically when GitForWindows is installed.
* More tokens are now supported in subproc args, such as `` == `` .
* Python completions now work without space delimiters, e.g. `` a=matpl<TAB> ``
will complete to `` a=matplotlib ``
* Parser would fail on nested, captured suprocess macros. Now, it works,
hooray!?
* now fires chdir event if OS change in working directory is detected.
* `` xonsh.prompt.vc_branch.git_dirty_working_directory ``
uses `` porcelain `` option instead of using the bytestring
`` nothing to commit `` to find out if a git directory is dirty
2017-06-07 11:51:06 -04:00
* Fix bug where know commands where not highlighted on windows.
2016-10-02 07:50:17 +03:00
* Fixed completer showing executable in upper case on windows.
2017-06-07 11:51:06 -04:00
* Fixed issue where tilde expansion was occurring more than once before an
2016-10-02 07:50:17 +03:00
equals sign.
* test_dirstack test_cdpath_expansion leaving stray testing dirs
* Better completer display for long completions in prompt-toolkit
2017-06-07 11:51:06 -04:00
* Automatically append newline to target of `` source `` alias, so that it may
2016-10-02 07:50:17 +03:00
be exec'd.
* test_news fails when single graves around word
* Slashes in virtual environment names work in vox
* non string type value in $FORMATTER_DICT turning prompt ugly
* whole prompt turning useless when one formatting function raises an exception
* Fix completion after alias expansion
* Fix hard crash when foreign shell functions fails to run. #1715
* Bug where non-default locations for `` XDG_DATA_HOME `` and `` XONSH_DATA_DIR ``
would not expand `` ~ `` into the home directory
* Auto quote path completions if path contains 'and' or 'or'
* Completion now works on subcommands after pipe, `` && `` , `` || `` and so on.
* cd . and cd <singleCharacter> now work. Fix indexerror in AUTO_PUSHD case, too.
* Fixed issue with accidentally wrapping generators inside of function calls.
* History indexing with string returns most recent command.
2016-09-01 19:48:09 -04:00
v0.4.6
====================
**Added:**
* New option `` COMPLETIONS_CONFIRM `` . When set, `` <Enter> `` is used to confirm
completion instead of running command while completion menu is displayed.
* NetBSD is now supported.
* Macro function calls are now available. These use a Rust-like
`` f!(arg) `` syntax.
2017-06-07 11:51:06 -04:00
* Macro subprocess call now available with the `` echo! x y z ``
2016-09-01 19:48:09 -04:00
syntax.
* A new `event subsystem <http://xon.sh/tutorial_events.html> `_ has been added.
* howto install sections for Debian/Ubuntu and Fedora.
* `` History `` methods `` __iter__ `` and `` __getitem__ ``
* `` tools.get_portions `` that yields parts of an iterable
2016-09-01 20:06:59 -04:00
* Added a py.test plugin to collect `` test_*.xsh `` files and run `` test_*() `` functions.
2016-09-01 19:48:09 -04:00
* `` __repr__ `` and `` __str__ `` magic method on LazyObject
**Changed:**
* `` create_module `` implementation on XonshImportHook
* Results of the `` bash `` tab completer are now properly escaped (quoted) when necessary.
* Foreign aliases that match xonsh builtin aliases are now ignored with a warning.
* `` prompt_toolkit `` completions now only show the rightmost portion
of a given completion in the dropdown
2016-09-01 20:06:59 -04:00
* The value of `` 'none' `` is no longer allowed for `` $SHELL_TYPE `` just during the initial
load from the environment. `` -D `` , later times, and other sources still work.
2016-09-01 19:48:09 -04:00
* `` yacc_debug=True `` now load the parser on the same thread that the
Parser instance is created. `` setup.py `` now uses this synchronous
form as it was causing the parser table to be missed by some package
managers.
2016-09-01 20:06:59 -04:00
* Tilde expansion for the home directory now has the same semantics as Bash.
2016-09-01 19:48:09 -04:00
Previously it only matched leading tildes.
* Context sensitive AST transformation now checks that all names in an
expression are in scope. If they are, then Python mode is retained. However,
if even one is missing, subprocess wrapping is attempted. Previously, only the
left-most name was examined for being within scope.
2016-09-01 20:06:59 -04:00
* `` dirstack.pushd `` and `` dirstack.popd `` now handle UNC paths (of form `` \\<server>\<share>\... `` ), but only on Windows.
2016-09-01 19:48:09 -04:00
They emulate behavior of `CMD.EXE` by creating a temporary mapped drive letter (starting from z: down) to replace
2016-09-01 20:06:59 -04:00
the `` \\<server>\<share> `` portion of the path, on the `` pushd `` and unmapping the drive letter when all references
2016-09-01 19:48:09 -04:00
to it are popped.
* And `` dirstack `` suppresses this temporary drive mapping funky jive if registry entry
2016-09-01 20:06:59 -04:00
`` HKCU\software\microsoft\command processor\DisableUNCCheck `` (or HKLM\...) is a DWORD value 1. This allows Xonsh
2016-09-01 19:48:09 -04:00
to show the actual UNC path in your prompt string and *also* allows subprocess commands invoking `CMD.EXE` to run in
the expected working directory. See https://support.microsoft.com/en-us/kb/156276 to satisfy any lingering curiosity.
* `` lazy_locate_binary `` handles binary on different drive letter than current working directory (on Windows).
* `` _curr_session_parser `` now iterates over `` History ``
* New implementation of bash completer with better performance and compatibility.
2016-09-01 20:06:59 -04:00
* `` $COMPLETIONS_BRACKETS `` is now available to determine whether or not to
2016-09-01 19:48:09 -04:00
include opening brackets in Python completions
2016-09-01 20:06:59 -04:00
* `` xonsh.bat `` tries to use `pylauncher <https://www.python.org/dev/peps/pep-0397/> `_ when available.
2016-09-01 19:48:09 -04:00
**Removed:**
* `` History `` method `` show ``
* `` _hist_get_portion `` in favor of `` tools.get_portions ``
* Unused imports in proc, flake8.
**Fixed:**
* xonsh modules imported now have the __file__ attribute
2017-06-07 11:51:06 -04:00
* Context sensitive AST transformer was not adding argument names to the
2016-09-01 19:48:09 -04:00
local scope. This would then enable extraneous subprocess mode wrapping
for expressions whose leftmost name was function argument. This has been
fixed by properly adding the argument names to the scope.
* Foreign shell functions that are mapped to empty filenames no longer
2017-06-07 11:51:06 -04:00
receive aliases since they can't be found to source later.
2016-09-01 19:48:09 -04:00
* Correctly preserve arguments given to xon.sh, in case there are quoted ones.
* Environment variables in subprocess mode were not being expanded
unless they were in a sting. They are now expanded properly.
* Fixed a bug that prevented xonsh from running scripts with code caching disabled.
* Text of instructions to download missing program now does not get off and
appears in whole.
* Fix some test problems when win_unicode_console was installed on windows.
* Fixed bug that prompt string and `` $PWD `` failed to track change in actual working directory if the
invoked Python function happened to change it (e.g via `` ` os.chdir() ` `` . Fix is to update `` $PWD ``
after each command in `` ` BaseShell.default() ` `` .
* The interactive prompt now correctly handles multiline strings.
* `` cd \\<server>\<share> `` now works when $AUTO_PUSHD is set, either creating a temporary mapped drive or simply
setting UNC working directory based on registry `` DisableUNCCheck `` . However, if $AUTO_PUSHD is not set and UNC
checking is enabled (default for Windows), it issues an error message and fails. This improves on prior behavior,
which would fail to change the current working directory, but would set $PWD and prompt string to the UNC path,
creating false expectations.
* fix parsing for tuple of tuples (like `(),()` )
2016-09-01 20:06:59 -04:00
* `` sys.stdin `` , `` sys.stdout `` , `` sys.stderr `` no longer complete with
2016-09-01 19:48:09 -04:00
opening square brackets
* xonsh now properly handles syntax error messages arising from using values in inappropriate contexts (e.g., `` del 7 `` ).
2016-08-16 20:35:49 -04:00
v0.4.5
====================
**Added:**
* `` _hist_get `` that uses generators to filter and fetch
the history commands of each session.
* `` -n `` option to the show subcommand to choose
to numerate the commands.
* The `` exec `` command is now a first class alias that acts the same way as in
sh-based languages. It replaces the current process with the command and
argument that follows it. This allows xonsh to be used as a default shell
while maintaining functionality with SSH, gdb, and other third party programs
that assume the default shell supports raw `` exec command [args] `` syntax.
This feature introduces some ambiguity between exec-as-a-subprocess and
exec-as-a-function (the inescapable Python builtin). Though the two pieces of
syntax do not overlap, they perform very different operations. Please see
the xonsh FAQ for more information on trade-offs and mitigation strategies.
* `` which -v `` now calls superhelp, which will print highlighted source.
2016-09-01 20:06:59 -04:00
* Added xontribs:
2016-08-16 20:35:49 -04:00
* `z (Tracks your most used directories, based on 'frecency'.) <https://github.com/astronouth7303/xontrib-z> `_
* amalgamate.py now supports relative imports.
* `` history show `` args `` -t `` , `` -f `` , `` -T `` `` +T `` to filter commands by timestamp
* `` ensure_timestamp `` in xonsh.tools to try and convert an object to a timestamp a.k.a float
* `` $XONSH_DATETIME_FORMAT `` envvar, the default format to be used with `` datetime.datetime.strptime() ``
* `` xon.sh `` script now sets `` $LANG=C.UTF8 `` in the event that no encoding
is detected.
* amalgamate.py now properly handles `` from __future__ `` imports.
**Changed:**
* `` _hist_show `` now uses `` _hist_get `` to print out the commands.
* `` xonsh.completers `` sub-package is now fully lazy.
2016-09-01 20:06:59 -04:00
* The vox xontrib now takes flags very similar to Python's venv tool. Use
2016-08-16 20:35:49 -04:00
`` vox --help <command> `` to learn more.
* Xontribs may now define `` __all__ `` as a module top-level to limit what gets exported to the shell context
* xon.sh uses the interpreter used to install instead of the default python3.
* `` imphooks `` now checks directory access rights.
* $TITLE now changes both icon (tab) and window title
* Moved `` amalgamate_source `` outside `` build_tables ``
* Disable amalgamation on setup develop
* `` _hist_parse_args `` implementation refactor
* moved all parameter checking in `` _hist_get ``
* `` _hist_show `` to handle numeration and timestamp printing of commands
* `` xonsh.imphooks `` does not install the import hooks automatically, you now
need to explicitly call the `install_hook()` method defined in this module.
For example: `` from xonsh.imphooks import install_hook; install_hook() `` . The
`` install_hook `` method can safely be called several times. If you need
compatibility with previous versions of Xonsh you can use the following::
from xonsh import imphooks
getattr(imphooks, 'install_hook', lambda:None)()
* xonfig command now dumps more encoding related settings.
**Removed:**
2016-09-01 20:06:59 -04:00
* Anaconda Build is shutting down so we can no longer build conda development packages.
All references to these packages are removed from the documentation.
* Removed conda build recipe since the it is no longer used for Anaconda Build.
The recipe used to build xonsh on conda-forge can be found here:
2016-08-16 20:35:49 -04:00
https://github.com/conda-forge/xonsh-feedstock/blob/master/recipe/meta.yaml
**Fixed:**
* `` _zsh_hist_parser `` not parsing history files without timestamps.
* Fixed amalgamation of aliased imports that are already in `` sys.modules `` .
* Xonsh will no longer fail to start in directories where the user doesn't have
read access.
* Fixed parser error line number exception from being raised while trying to
raise a SyntaxError.
* Made pip completer more robust to when pip is not installed.
2016-09-01 20:06:59 -04:00
* Fix a startup problem on windows caused by a refactor of Prompt_toolkit.
2016-08-16 20:35:49 -04:00
https://github.com/jonathanslenders/python-prompt-toolkit/commit/a9df2a2
* `` ensure_slice `` bugfix for -1 index/slice
* Alias tab completion works again
* Version number reported by bundled PLY
* `` xonfig `` no longer breaks if PLY is externally installed and version 3.8
* LazyObject supports set union
* Fixed error with not sourcing files with `` $XONSH_ENCODING `` and
`` $XONSH_ENCODING_ERRORS `` .
* `` $IGNOREEOF `` envrionment variable now works properly in the
prompt-toolkit shell.
* Completions in `` jupyter_kernel.py `` now use updated completion framework
2016-07-20 21:42:28 -04:00
v0.4.4
====================
**Added:**
* New `` lazyobject() `` , `` lazydict() `` , and `` lazybool() `` decorators to turn
functions into lazy, global objects.
* `` vox remove `` command can remove multiple environments at once.
* Added FreeBSD support.
* Tab completion for pip python package manager.
2017-06-07 11:51:06 -04:00
* Regular expressions for environment variable matching.
2016-07-20 21:42:28 -04:00
* __contains__ method on Env
* Added news tests to enforce changelog conformity.
* A new way to add optional items to the prompt format string has been added.
Instead of relying on formatter dict items being padded with a space, now the
padding characters are specified in the format string itself, in place of the
format spec (after a `` : `` ).
For example, previously the prompt string `` {cwd}{curr_branch} $ `` would rely
on `` curr_branch `` giving its output prepended with a space for separation,
or outputting nothing if it is not applicable. Now `` curr_branch `` just
outputs a value or `` None `` , and the prompt string has to specify the
surrounding characters: `` {cwd}{curr_branch: {}} $ `` . Here the value of
`` curr_branch `` will be prepended with a space (`` {} `` is a placeholder for
the value itself). The format string after `` : `` is applied only if the value
is not `` None `` .
* `` xonsh.completers `` subpackage is now amalgamated.
* amalgamate.py will now warn if the same name is defined across multiple
different files.
* xonsh_builtins, xonsh_execer fixtures in conftest.py
* Docs on how to tweak the Windows ConHost for a better color scheme.
* Docs: how to fix Thunar's "Open Terminal Here" action.
2017-06-07 11:51:06 -04:00
* A new API class was added to Vox: `` xontrib.voxapi.Vox `` . This allows programmatic access to the virtual environment machinery for other xontribs. See the API documentation for details.
2016-07-20 21:42:28 -04:00
* History now accepts multiple slices arguments separated by spaces
**Changed:**
* amalgamate now works on Python 2 and allows relative imports.
* Top-level xonsh package now more lazy.
2017-06-07 11:51:06 -04:00
* Show conda environment name in prompt in parentheses similar what conda does.
2016-07-20 21:42:28 -04:00
* Implementation of expandvars now uses regex
* Because of the addition of "optional items" to the prompt format string, the
functions `` xonsh.environ.current_branch `` , `` xonsh.environ.env_name `` and
formatter dict items `` curr_branch `` , `` current_job `` , `` env_name `` are
no longer padded with a separator.
* many test cases to use fixtures and parametrization
* Public interface in `` xonsh.ansi_colors `` module now has `` ansi_ ``
prefix to prevent name conflicts with other parts of xonsh.
* Vox was moved to xontrib. Behaves exactly the same as before, just need to add it to your xontribs.
* is_int_as_str and is_slice_as_str are now reimplemented in EAFP style
**Deprecated:**
* yield statements (nose style) and for loops in tests
* is_int_or_slice
**Removed:**
* _is_in_env, _get_env_string functions on tools
* `` xonsh.environ.format_prompt `` has been dropped; `` partial_format_prompt ``
can be used instead.
* for loops and yield statements in test cases, unused imports
* is_int_or_slice
**Fixed:**
* Fixed bug on Windows preventing xonsh from changing the console title.
* Unrecognized `` $XONSH_COLOR_STYLE `` values don't crash terminal.
* Writing the window title will no longer accidentally answer interactive
questions, eg `` rm -i `` now works as expected.
* more matching cases for envvar reference
* Certain linux VTE terminals would not start new tabs in the previous CWD.
This may now be rectified by adding `` {vte_new_tab_cwd} `` somewhere to the
prompt.
* Unqualified usage of Unstorable in xonsh setup wizard that was causing the
wizard to crash and burn
* Bare `` except: `` was replaced with `` except Exception `` to prevent
accidentally catching utility exceptions such as KeyboardInterrupt, which
caused unexpected problems like printing out the raw $PROMPT string.
* Fixed multiple definition of `` EQUAL `` .
* Fixed multiple definition of `` pprint `` .
* Fixed multiple definition of `` pyghooks `` .
* Fixed multiple definition of `` pygments `` .
* Fixed multiple definition of `` tokenize `` .
* redundant and 'leaky' tests in nose
* Fix bug that prevented disabling $INTENSIFY_COLORS_ON_WIN in `` xonshrc ``
* `` LazyJSON `` will now hide failures to close, and instead rely on reference
counting if something goes wrong.
2017-06-07 11:51:06 -04:00
* Fixed maximum recursion error with color styles.
2016-07-20 21:42:28 -04:00
* Parser tables will no longer be generated in the current directory
by accident.
* Error messages when zsh or bash history file is not found
2016-06-30 14:52:02 -04:00
v0.4.3
====================
**Added:**
* The results of glob expressions are sorted if `` $GLOB_SORTED `` is set.
* LazyObjects will now load themselves on `` __getitem__() ``
* New tools in `` xonsh.lazyasd `` module for loading modules in background
threads.
**Changed:**
* `` GLOB_SORTED `` is enabled by default.
* Sped up loading of pygments by ~100x by loading `` pkg_resources `` in
background.
* Sped up loading of prompt-toolkit by ~2x-3x by loading `` pkg_resources ``
in background.
* `` setup.py `` will no longer git checkout to replace the version number.
Now it simply stores and reuses the original version line.
**Removed:**
* Removed the `` xonsh.built_ins.ENV `` global instance of the Env class.
**Fixed:**
* Bug with setting hist size not being settable due to lazy object loading
has been resolved.
* Minor amalgamate bug with `` import pkg.mod `` amalgamated imports.
* No longer raises an error if a directory in `` $PATH `` does not exist on
Python v3.4.
2017-06-07 11:51:06 -04:00
* Fixed a readline shell completion issue that caused by inconsistency between
2016-06-30 14:52:02 -04:00
`` $CASE_SENSITIVE_COMPLETIONS `` and readline's inputrc setting.
2016-06-26 12:25:14 -04:00
v0.4.2
====================
**Added:**
* dev versions now display a `` devN `` counter at the end and `` xonfig info ``
also displays the git sha of the current build
**Changed:**
* `prompt_toolkit` completion no longer automatically selects the first entry on first tab-press when completing multiple directories at once
**Fixed:**
* Sourcing foreign shells now allow fully capture environment variables that
contain newlines as long as they also don't contain equal signs.
* Added scripts directory to MANIFEST.in
2016-06-24 17:40:40 -04:00
v0.4.1
====================
**Fixed:**
* `` setup.py `` will only amalgamate source files if `` amalgamate.py `` is
available. This fixes issues with installing from pip.
2016-06-24 14:23:19 -04:00
v0.4.0
====================
**Added:**
* A new class, `` xonsh.tools.EnvPath `` has been added. This class implements a
`` MutableSequence `` object and overrides the `` __getitem__ `` method so that
when its entries are requested (either explicitly or implicitly), variable
and user expansion is performed, and relative paths are resolved.
`` EnvPath `` accepts objects (or lists of objects) of `` str `` , `` bytes `` or
`` pathlib.Path `` types.
* New amalgamate tool collapses modules inside of a package into a single
`` __amalgam__.py `` module. This tool glues together all of the code from the
modules in a package, finds and removes intra-package imports, makes all
non-package imports lazy, and adds hooks into the `` __init__.py `` .
This helps makes initial imports of modules fast and decreases startup time.
Packages and sub-packages must be amalgamated separately.
* New lazy and self-destructive module `` xonsh.lazyasd `` adds a suite of
classes for delayed creation of objects.
- A `` LazyObject `` won't be created until it has an attribute accessed.
- A `` LazyDict `` will load each value only when a key is accessed.
- A `` LazyBool `` will only be created when `` __bool__() `` is called.
Additionally, when fully loaded, the above objects will replace themselves
2017-06-07 11:51:06 -04:00
by name in the context that they were handed, thus dereferencing themselves.
2016-06-24 14:23:19 -04:00
This is useful for global variables that may be expensive to create,
should only be created once, and may not be used in any particular session.
* New `` xon.sh `` script added for launching xonsh from a sh environment.
This should be used if the normal `` xonsh `` script does not work for
some reason.
* Normal globbing is now available in Python mode via `` g ` ` ``
* Backticks were expanded to allow searching using arbitrary functions, via
`` @<func> ` ` ``
* `` xonsh.platform `` now has a new `` PATH_DEFAULT `` variable.
* Tab completers can now raise `` StopIteration `` to prevent consideration of
remaining completers.
* Added tab completer for the `` completer `` alias.
* New `` Block `` and `` Functor `` context managers are now available as
part of the `` xonsh.contexts `` module.
* `` Block `` provides support for turning a context body into a non-executing
2017-06-07 11:51:06 -04:00
list of string lines. This is implement via a syntax tree transformation.
2016-06-24 14:23:19 -04:00
This is useful for creating remote execution tools that seek to prevent
local execution.
* `` Functor `` is a subclass of the `` Block `` context manager that turns the
block into a callable object. The function object is available via the
`` func() `` attribute. However, the `` Functor `` instance is itself callable
and will dispatch to `` func() `` .
* New `` $VC_BRANCH_TIMEOUT `` environment variable is the time (in seconds)
of how long to spend attempting each individual version control branch
information command during `` $PROMPT `` formatting. This allows for faster
prompt resolution and faster startup times.
* New lazy methods added to CommandsCache allowing for testing and inspection
without the possibility of recomputing the cache.
* `` !(command) `` is now usefully iterable, yielding lines of stdout
* Added XonshCalledProcessError, which includes the relevant CompletedCommand.
Also handles differences between Py3.4 and 3.5 in CalledProcessError
* Tab completion of paths now includes zsh-style path expansion (subsequence
matching), toggleable with `` $SUBSEQUENCE_PATH_COMPLETION ``
* Tab completion of paths now includes "fuzzy" matches that are accurate to
within a few characters, toggleable with `` $FUZZY_PATH_COMPLETION ``
* Provide `` $XONSH_SOURCE `` for scripts in the environment variables pointing to
the currently running script's path
* Arguments '+' and '-' for the `` fg `` command (job control)
* Provide `` $XONSH_SOURCE `` for scripts in the environment variables pointing to
the currently running script's path
* `` !(command) `` is now usefully iterable, yielding lines of stdout
* Added XonshCalledProcessError, which includes the relevant CompletedCommand.
Also handles differences between Py3.4 and 3.5 in CalledProcessError
2016-06-24 14:52:14 -04:00
* XonshError and XonshCalledProcessError are now in builtins:
- `` history session ``
- `` history xonsh ``
- `` history all ``
- `` history zsh ``
- `` history bash ``
- `` __xonsh_history__.show() ``
2016-06-24 14:23:19 -04:00
* New `` pathsep_to_set() `` and `` set_to_pathsep() `` functions convert to/from
`` os.pathsep `` separated strings to a set of strings.
**Changed:**
* Changed testing framework from nose to pytest
* All `` PATH `` -like environment variables are now stored in an `` EnvPath ``
object, so that non-absolute paths or paths containing environment variables
can be resolved properly.
* In `` VI_MODE `` , the `` v `` key will enter character selection mode, not open
the editor. `` Ctrl-X Ctrl-E `` will still open an editor in any mode
2017-06-07 11:51:06 -04:00
* `` $XONSH_DEBUG `` will now suppress amalgamated imports. This usually needs to be
2016-06-24 14:23:19 -04:00
set in the calling environment or prior to *any* xonsh imports.
2017-06-07 11:51:06 -04:00
* Restructured `` xonsh.platform `` to be fully lazy.
* Restructured `` xonsh.ansi_colors `` to be fully lazy.
2016-06-24 14:23:19 -04:00
* Ensured the `` pygments `` and `` xonsh.pyghooks `` are not imported until
actually needed.
* Yacc parser is now loaded in a background thread.
* Cleaned up argument parsing in `` xonsh.main.premain `` by removing the
`` undo_args `` hack.
* Now complains on invalid arguments.
* `` Env `` now guarantees that the `` $PATH `` is available and mutable when
initialized.
* On Windows the `` PROMPT `` environment variable is reset to `$P$G` before
2016-06-24 14:52:14 -04:00
sourcing `` *.bat `` files.
2016-06-24 14:23:19 -04:00
* On Windows the `` PROMPT `` environment variable is reset to `$P$G` before starting
2017-06-07 11:51:06 -04:00
subprocesses. This prevents the unformatted xonsh `` PROMPT `` template from showing up
2016-06-24 14:23:19 -04:00
when running batch files with `` ECHO ON ` ``
* `` @() `` now passes through functions as well as strings, which allows for the
use of anonymous aliases and aliases not explicitly added to the `` aliases ``
mapping.
* Functions in `` Execer `` now take `` transform `` kwarg instead of
`` wrap_subproc `` .
* Provide `` $XONSH_SOURCE `` for scripts in the environment variables pointing to
the currently running script's path
* XonshError and XonshCalledProcessError are now in builtins
2016-06-24 14:49:34 -04:00
* `` __repr__ `` on the environment only shows a short representation of the
2016-06-24 14:23:19 -04:00
object instead of printing the whole environment dictionary
* More informative prompt when configuring foreign shells in the wizard.
* `` CommandsCache `` is now a mapping from command names to a tuple of
(executable locations, has alias flags). This enables faster lookup times.
* `` locate_bin() `` now uses the `` CommandsCache `` , rather than scanning the
`` $PATH `` itself.
* `` $PATHEXT `` is now a set, rather than a list.
* Ignore case and leading a quotes when sorting completions
**Removed:**
* The `` 'console_scripts' `` option to setuptools has been removed. It was found
to cause slowdowns of over 150 ms on every startup.
* Bash is no longer loaded by default as a foreign shell for initial
configuration. This was done to increase stock startup times. This
behaviour can be recovered by adding `` {"shell": "bash"} `` to your
`` "foreign_shells" `` in your config.json file. For more details,
see http://xon.sh/xonshconfig.html#foreign-shells
* `` ensure_git() `` and `` ensure_hg() `` decorators removed.
* `` call_hg_command() `` function removed.
**Fixed:**
* Issue where `` xonsh `` did not expand user and environment variables in
`` $PATH `` , forcing the user to add absolute paths.
2017-06-07 11:51:06 -04:00
* Fixed a problem with aliases not always being found.
2016-06-24 14:23:19 -04:00
* Fixed issue where input was directed to the last process in a pipeline,
rather than the first.
* Bug where xonfig wizard can't find ENV docs
* Fixed `` xonsh.environ.locate_binary() `` to handle PATH variable are given as a tuple.
2016-06-24 14:49:34 -04:00
* Fixed missing completions for `` cd `` and `` ` rmdir `` when directories had spaces
2016-06-24 14:23:19 -04:00
in their names.
* Bug preventing `xonsh` executable being installed on macOS.
* Strip leading space in commands passed using the "-c" switch
* Fixed xonfig wizard failing on Windows due to colon in created filename.
* Ensured that the prompt_toolkit shell functions, even without a `` completer ``
attribute.
* Fixed crash resulting from malformed `` $PROMPT `` or `` $TITLE `` .
* xonsh no longer backgrounds itself after every command on Cygwin.
* Fixed an issue about `` os.killpg() `` on Cygwin which caused xonsh to crash
occasionally
* Fix crash on startup when Bash Windows Subsystem for Linux is on the Path.
* Fixed issue with setting and signaling process groups on Linux when the first
process is a function alias and has no pid.
* Fixed `` _list_completers `` such that it does not throw a ValueError if no completer is registered.
* Fixed `` _list_completers `` such that it does not throw an AttributeError if a completer has no docstring.
* Bug that caused command line argument `` --config-path `` to be ignored.
* Bug that caused xonsh to break on startup when prompt-toolkit < 1.0.0.
2016-06-08 14:25:52 -04:00
v0.3.4
====================
2016-06-07 00:00:56 -04:00
**Changed:**
* `` $PROMPT `` from foreign shells is now ignored.
2016-06-07 20:50:13 -04:00
* `` $RC_FILES `` environment variable now stores the run control files we
attempted to load.
* Only show the prompt for the wizard if we did not attempt to load any run
control files (as opposed to if none were successfully loaded).
2017-06-07 11:51:06 -04:00
* Git and mercurial branch and dirty function refactor to improve run times.
2016-06-06 12:00:49 -04:00
2016-06-06 13:55:24 -04:00
**Fixed:**
* Fixed an issue whereby attempting to delete a literal value (e.g., `` del 7 `` )
in the prompt_toolkit shell would cause xonsh to crash.
2016-06-06 21:57:48 -04:00
* Fixed broken behavior when using `` cd .. `` to move into a nonexistent
directory.
2016-06-07 19:22:20 +01:00
* Partial workaround for Cygwin where `` pthread_sigmask `` appears to be missing
from the `` signal `` module.
2016-06-07 00:00:56 -04:00
* Fixed crash resulting from malformed `` $PROMPT `` .
2016-06-09 01:44:34 -04:00
* Fixed regression on Windows with the locate_binary() function.
The bug prevented `source-cmd` from working correctly and broke the
2017-06-07 11:51:06 -04:00
`` activate `` /`` deactivate `` aliases for the conda environments.
2016-06-07 20:50:13 -04:00
* Fixed crash resulting from errors other than syntax errors in run control
file.
2016-06-11 21:13:02 -04:00
* On Windows if bash is not on the path look in the registry for the defaults
install directory for GitForWindows.
2016-06-08 14:25:52 -04:00
2016-06-06 12:00:49 -04:00
v0.3.3
====================
2016-06-02 17:12:46 -04:00
**Added:**
* Question mark literals, `` ? `` , are now allowed as part of
subprocess argument names.
2016-06-04 15:46:02 -04:00
* IPython style visual pointer to show where syntax error was detected
2016-06-05 19:03:26 -04:00
* Pretty printing of output and syntax highlighting of input and output can now
be controlled via new environment variables `` $COLOR_INPUT `` ,
`` $COLOR_RESULTS `` , and `` $PRETTY_PRINT_RESULTS `` .
2016-05-28 19:14:45 -04:00
2016-06-10 06:35:14 -04:00
* In interactive mode, if there are stopped or background jobs, Xonsh prompts
for confirmations rather than just killing all jobs and exiting.
2016-06-02 17:12:46 -04:00
**Changed:**
2016-05-30 10:17:53 +02:00
2016-06-03 11:38:43 -04:00
* `` which `` now gives a better verbose report of where the executables are
found.
* Tab completion now uses a different interface, which allows new completers
to be implemented in Python.
* Most functions in the `` Execer `` now take an extra argument
2016-06-05 22:51:06 -04:00
`` transform `` , indicating whether the syntax tree transformations should
be applied.
2016-06-03 11:38:43 -04:00
* `` prompt_toolkit `` is now loaded lazily, decreasing load times when using
the `` readline `` shell.
* RC files are now executed directly in the appropriate context.
2016-06-05 19:05:31 -04:00
* `` _ `` is now updated by `` ![] `` , to contain the appropriate
`` CompletedCommand `` object.
2016-05-28 19:14:45 -04:00
2016-06-06 12:00:49 -04:00
2016-05-28 19:14:45 -04:00
2016-06-02 17:12:46 -04:00
**Removed:**
2016-05-30 10:17:53 +02:00
2016-06-03 11:38:43 -04:00
* Fixed bug on Windows where `` which `` did not include current directory
2016-05-28 19:14:45 -04:00
2016-06-02 17:12:46 -04:00
**Fixed:**
2016-05-30 10:20:07 +02:00
2017-06-07 11:51:06 -04:00
* Fixed crashed bash-completer when bash is not available on Windows
2016-06-04 13:38:09 -04:00
* Fixed bug on Windows where tab-completion for executables would return all files.
2016-06-05 22:51:06 -04:00
* Fixed bug on Windows which caused the bash $PROMPT variable to be used when no
no $PROMPT variable was set in .xonshrc
2016-06-03 11:38:43 -04:00
* Improved start-up times by caching information about bash completion
functions
2016-06-04 23:07:22 -04:00
* The --shell-type CLI flag now takes precedence over $SHELL_TYPE specified in
.xonshrc
2016-06-06 20:19:58 +08:00
* Fixed an issue about `` os.killpg() `` on OS X which caused xonsh crash with
2017-06-07 11:51:06 -04:00
occasionally.
2016-05-30 01:10:01 -04:00
2016-06-06 12:00:49 -04:00
2016-05-30 01:10:01 -04:00
2016-05-30 03:24:22 -04:00
v0.3.2
2016-05-30 01:10:01 -04:00
====================
2016-05-29 18:53:29 -04:00
**Fixed:**
2016-05-29 21:41:19 +02:00
2016-06-02 08:41:32 -04:00
* Fixed PermissionError when tab completions tries to lookup executables in
2016-05-29 18:53:29 -04:00
directories without read permissions.
2016-06-02 08:41:32 -04:00
* Fixed incorrect parsing of command line flags
2016-05-28 19:14:45 -04:00
2016-05-30 01:10:01 -04:00
2016-05-28 19:14:45 -04:00
v0.3.1
====================
2016-03-23 18:12:59 -04:00
**Added:**
2016-05-20 21:02:24 -05:00
* When a subprocess exits with a signal (e.g. SIGSEGV), a message is printed,
similar to Bash.
2016-05-24 23:55:07 -04:00
* Added comma literals to subproc mode.
2016-05-21 10:27:16 -04:00
* `` @$(cmd) `` has been added as a subprocess-mode operator, which replaces in
the subprocess command itself with the result of running `` cmd `` .
2016-05-25 21:38:58 -04:00
* New `` showcmd `` alias for displaying how xonsh interprets subprocess mode
commands and arguments.
2016-05-28 18:01:26 -04:00
* Added `` $DYNAMIC_CWD_WIDTH `` to allow the adjusting of the current working
directory width in the prompt.
2017-06-07 11:51:06 -04:00
* Added `` $XONSH_DEBUG `` environment variable to help with debugging.
2016-05-26 17:24:11 -04:00
* The `` ${...} `` shortcut for `` __xonsh_env__ `` now returns appropriate
2016-05-24 11:24:13 -04:00
completion options
2016-05-20 18:04:28 -04:00
2016-05-23 17:25:42 -04:00
**Changed:**
2016-05-23 12:45:38 +02:00
2016-05-23 17:25:42 -04:00
* On Windows the default bash completions files `` $BASH_COMPLETIONS `` now points
2016-05-23 12:45:38 +02:00
to the default location of the completions files used by 'Git for Windows'
2016-05-26 20:37:36 +01:00
* On Cygwin, some tweaks are applied to foreign shell subprocess calls and the
readline import, in order to avoid hangs on launch.
2016-05-20 18:04:28 -04:00
2016-05-28 19:14:45 -04:00
2016-05-23 00:01:27 -04:00
**Removed:**
2016-05-28 19:29:00 -04:00
2016-05-22 10:07:57 -04:00
* Special cased code for handling version of prompt_toolkit < v1.0.0
2016-05-20 18:04:28 -04:00
2016-05-28 19:29:00 -04:00
2016-05-21 13:39:00 -04:00
**Fixed:**
2016-05-23 11:50:30 +02:00
* Show sorted bash completions suggestions.
2016-05-23 17:25:42 -04:00
* Fix bash completions (e.g git etc.) on windows when completions files have
2016-05-22 20:12:39 +02:00
spaces in their path names
2016-05-23 17:25:42 -04:00
* Fixed a bug preventing `` source-bash `` from working on Windows
2016-05-28 16:08:48 -04:00
* Numerous improvements to job control via a nearly-complete rewrite.
* Addressed issue with finding the next break in subproc mode in context
sensitive parsing.
2016-05-25 00:17:41 -04:00
* Fixed issue with loading readline init files (inputrc) that seems to be
triggered by libedit.
2016-05-26 17:24:11 -04:00
* `` $MULTILINE_PROMPT `` now allows colors, as originally intended.
2016-05-23 00:01:27 -04:00
* Rectified install issue with Jupyter hook when installing with pyenv,
2017-06-07 11:51:06 -04:00
Jupyter install hook now respects `` --prefix `` argument.
2016-05-23 17:25:42 -04:00
* Fixed issue with the xonsh.ply subpackage not being installed.
2016-05-21 13:39:00 -04:00
* Fixed a parsing bug whereby a trailing `` & `` on a line was being ignored
(processes were unable to be started in the background)
2016-05-20 18:04:28 -04:00
2016-05-28 19:14:45 -04:00
2016-05-20 18:04:28 -04:00
v0.3.0
====================
2016-03-23 18:12:59 -04:00
**Added:**
2016-03-31 22:04:11 -04:00
* `` and `` , `` or `` , `` && `` , `` || `` have been added as subprocess logical operators,
2016-02-10 02:13:07 -05:00
by popular demand!
2016-04-10 23:38:12 -04:00
* Subprocesses may be negated with `` not `` and grouped together with parentheses.
2017-06-07 11:51:06 -04:00
* New framework for writing xonsh extensions, called `` xontribs `` .
2016-03-23 18:12:59 -04:00
* Added a new shell type `` 'none' `` , used to avoid importing `` readline `` or
`` prompt_toolkit `` when running scripts or running a single command.
2016-03-21 14:54:42 +02:00
* New: `sudo` functionality on Windows through an alias
2016-03-23 14:28:39 +01:00
* Automatically enhance colors for readability in the default terminal (cmd.exe)
on Windows. This functionality can be enabled/disabled with the
2016-04-06 08:58:06 +02:00
$INTENSIFY_COLORS_ON_WIN environment variable.
2016-03-31 16:56:39 -04:00
* Added `` Ellipsis `` lookup to `` __xonsh_env__ `` to allow environment variable checks, e.g. `` 'HOME' in ${...} ``
2016-04-06 08:58:06 +02:00
* Added an option to update `` os.environ `` every time the xonsh environment changes.
2016-04-10 07:39:25 +02:00
This is disabled by default but can be enabled by setting `` $UPDATE_OS_ENVIRON `` to
2016-04-01 21:08:06 +02:00
True.
2016-05-07 17:52:20 -04:00
* Added Windows 'cmd.exe' as a foreign shell. This gives xonsh the ability to source
Windows Batch files (.bat and .cmd). Calling `` source-cmd script.bat `` or the
alias `` source-bat script.bat `` will call the bat file and changes to the
2016-04-20 21:28:26 +02:00
environment variables will be reflected in xonsh.
2016-05-07 17:52:20 -04:00
* Added an alias for the conda environment activate/deactivate batch scripts when
2016-04-10 07:39:25 +02:00
running the Anaconda python distribution on Windows.
2016-04-20 23:02:31 +02:00
* Added a menu entry to launch xonsh when installing xonsh from a conda package
2016-04-29 11:49:43 -04:00
* Added a new `` which `` alias that supports both regular `` which `` and also searches
2016-05-15 21:01:00 +02:00
through xonsh aliases. A pure python implementation of `` which `` is used. Thanks
to Trent Mick. https://github.com/trentm/which/
2016-05-07 17:13:18 -04:00
* Added support for prompt toolkit v1.0.0.
2016-03-27 06:39:24 -04:00
* Added `` $XONSH_CACHE_SCRIPTS `` and `` $XONSH_CACHE_EVERYTHING `` environment
variables to control caching of scripts and interactive commands. These can
also be controlled by command line options `` --no-script-cache `` and
`` --cache-everything `` when starting xonsh.
2016-05-17 23:52:39 -04:00
* Added a workaround to allow ctrl-c to interrupt reverse incremental search in
the readline shell
2016-04-06 08:58:06 +02:00
2016-03-23 18:12:59 -04:00
**Changed:**
2016-03-20 13:52:40 -04:00
2016-03-23 18:12:59 -04:00
* Running scripts through xonsh (or running a single command with `` -c `` ) no
longer runs the user's rc file, unless the `` --login `` option is specified.
Also avoids loading aliases and environments from foreign shells, as well as
loading bash completions.
* rc files are now compiled and cached, to avoid re-parsing when they haven't
2016-03-27 06:39:24 -04:00
changed. Scripts are also compiled and cached, and there is the option to
cache interactive commands.
2016-04-01 16:27:45 -04:00
* Left and Right arrows in the `` prompt_toolkit `` shell now wrap in multiline
environments
2016-04-05 10:41:52 +02:00
* Regexpath matching with backticks, now returns an empty list in python mode.
2016-04-16 13:28:23 +02:00
* Pygments added as a dependency for the conda package
2016-05-07 17:13:18 -04:00
* Foreign shells now allow for setting exit-on-error commands before and after
all other commands via the `` seterrprevcmd `` and `` seterrpostcmd `` arguments.
Sensinble defaults are provided for existing shells.
2016-05-07 11:54:01 +02:00
* PLY is no longer a external dependency but is bundled in xonsh/ply. Xonsh can
2016-05-08 15:10:42 -04:00
therefore run without any external dependencies, although having prompt-toolkit
recommended.
2016-05-13 21:25:51 +01:00
* Provide better user feedback when running `` which `` in a platform that doesn't
provide it (e.g. Windows).
2016-05-19 19:07:27 -04:00
* The lexer now uses a custom tokenizer that handles regex globs in the proper
way.
2016-03-20 13:52:40 -04:00
2016-05-20 18:04:28 -04:00
2016-03-20 13:52:40 -04:00
2016-03-22 23:57:51 -04:00
**Fixed:**
* Fixed bug with loading prompt-toolkit shell < v0.57.
2016-04-10 12:13:36 -04:00
* Fixed bug with prompt-toolkit completion when the cursor is not at the end of
the line.
2017-06-07 11:51:06 -04:00
* Aliases will now evaluate environment variables and other expansions
2016-04-10 12:13:36 -04:00
at execution time rather than passing through a literal string.
2017-06-07 11:51:06 -04:00
* Fixed environment variables from os.environ not being loaded when a running
2016-04-12 09:17:21 +02:00
a script
2016-05-18 03:12:43 -04:00
* The readline shell will now load the inputrc files.
2016-05-07 17:52:20 -04:00
* Fixed bug that prevented `source-alias` from working.
* Now able to `` ^C `` the xonfig wizard on start up.
2017-06-07 11:51:06 -04:00
* Fixed deadlock on Windows when running subprocess that generates enough output
2016-05-07 17:13:18 -04:00
to fill the OS pipe buffer.
* Sourcing foreign shells will now return a non-zero exit code if the
source operation failed for some reason.
2016-05-11 23:14:47 +02:00
* Fixed PermissionError when running commands in directories without read permissions
2016-05-13 09:40:52 +01:00
* Prevent Windows fixups from overriding environment vars in static config
2016-05-13 14:31:00 -04:00
* Fixed Optional Github project status to reflect added/removed files via git_dirty_working_directory()
2016-05-13 22:13:09 +01:00
* Fixed xonsh.exe launcher on Windows, when Python install directory has a space in it
2016-05-18 09:42:36 -04:00
* Fixed `$CDPATH` to support `~` and environments variables in its items
2016-03-20 13:52:40 -04:00
2016-05-20 18:04:28 -04:00
2016-03-20 13:52:40 -04:00
2016-04-09 00:14:03 -04:00
2016-03-20 13:52:40 -04:00
v0.2.7
====================
2016-02-13 01:37:23 -05:00
**Added:**
* Added new valid `` $SHELL_TYPE `` called `` 'best' `` . This selects the best value
for the concrete shell type based on the availability on the user's machine.
2016-02-18 01:06:29 -05:00
* New environment variable `` $XONSH_COLOR_STYLE `` will set the color mapping
for all of xonsh.
2017-06-07 11:51:06 -04:00
* New `` XonshStyle `` pygments style will determine the appropriate color
2016-02-18 01:06:29 -05:00
mapping based on `` $XONSH_COLOR_STYLE `` . The associated `` xonsh_style_proxy() ``
is intended for wrapping `` XonshStyle `` when actually being used by
pygments.
* The functions `` print_color() `` and `` format_color() `` found in `` xonsh.tools ``
dispatch to the approriate shell color handling and may be used from
anywhere.
* `` xonsh.tools.HAVE_PYGMENTS `` flag now denotes if pygments is installed and
available on the users system.
2017-06-07 11:51:06 -04:00
* The `` ansi_colors `` module is now available for handling ANSI color codes.
2016-02-18 01:06:29 -05:00
* `` ? `` and `` ?? `` operator output now has colored titles, like in IPython.
* `` ?? `` will syntax highlight source code if pygments is available.
* Python mode output is now syntax highlighted if pygments is available.
2016-02-21 13:00:01 -05:00
* New `` $RIGHT_PROMPT `` environment variable for displaying right-aligned
text in prompt-toolkit shell.
2016-03-12 19:33:17 -05:00
* Added `` !(...) `` operator, which returns an object representing the result
2016-03-16 12:33:03 -04:00
of running a command. The truth value of this object is True if the
return code is equal to zero and False otherwise.
2016-03-06 21:52:54 +01:00
* Optional dependency on the win_unicode_console package to enable unicode
support in cmd.exe on Windows. This can be disabled/enabled with the
`` $WIN_UNICODE_CONSOLE `` environment variable.
2016-02-07 18:00:22 -05:00
2016-02-13 01:37:23 -05:00
**Changed:**
* Updated `` $SHELL_TYPE `` default to `` 'best' `` .
2016-02-18 01:06:29 -05:00
* Shell classes are now responsible for implementing their own color
formatting and printing.
* Prompt coloring, history diffing, and tracing uses new color handling
capabilities.
* New `` Token.Color `` token for xonsh color names, e.g. we now use
`` Token.Color.RED `` rather than `` Token.RED `` .
2016-03-16 12:33:03 -04:00
* Untracked files in git are ignored when determining if a git workdir is
is dirty. This affects the coloring of the branch label.
2016-03-08 00:35:10 -05:00
* Regular expression globbing now uses `` re.fullmatch `` instead of
`` re.match `` , and the result of an empty regex glob does not cause the
argument to be deleted.
2016-02-07 18:00:22 -05:00
2016-03-20 13:52:40 -04:00
2016-02-18 01:06:29 -05:00
**Removed:**
* The `` xonsh.tools.TERM_COLORS `` mapping has been axed, along with all
2016-02-22 23:32:02 -05:00
references to it. This may cause a problem if you were using a raw color code
in your xonshrc file from `` $FORMATTER_DICT `` . To fix, simply remove these
references.
2016-02-07 18:00:22 -05:00
2016-02-09 02:36:57 -05:00
**Fixed:**
2016-03-18 12:20:13 -04:00
* Multidimensional slicing, as in numpy, no longer throws SyntaxErrors.
2016-02-09 02:36:57 -05:00
* Some minor zsh fixes for more platforms and setups.
2016-03-06 23:38:55 -05:00
* The `` BaseShell.settitle `` method no longer has its commands captured by
`` $(...) ``
2016-02-07 18:00:22 -05:00
2016-03-20 13:52:40 -04:00
2016-02-07 18:00:22 -05:00
v0.2.6
====================
2016-02-13 01:37:23 -05:00
**Added:**
2016-01-24 12:08:50 -05:00
2016-02-13 01:37:23 -05:00
* `` trace `` alias added that enables users to turn on and off the printing
2016-02-04 21:48:59 -05:00
of source code lines prior to their execution. This is useful for debugging scripts.
* New ability to force callable alias functions to be run in the foreground, i.e.
2016-02-13 01:37:23 -05:00
the main thread from which the function was called. This is useful for debuggers
2016-02-04 21:48:59 -05:00
and profilers which may require such access. Use the `` xonsh.proc.foreground ``
decorator on an alias function to flag it. `` ForegroundProcProxy `` and
`` SimpleForegroundProcProxy `` classes have been added to support this feature.
Normally, forcing a foreground alias is not needed.
2016-01-24 12:08:50 -05:00
* Added boolean `` $RAISE_SUBPROC_ERROR `` environment variable. If true
2016-02-13 01:37:23 -05:00
and a subprocess command exits with a non-zero return code, a
2016-01-24 12:08:50 -05:00
CalledProcessError will be raised. This is useful in scripts that should
fail at the first error.
2016-01-27 18:47:17 -05:00
* If the `` setproctitle `` package is installed, the process title will be
set to `` 'xonsh' `` rather than the path to the Python interpreter.
2016-02-05 23:50:46 -05:00
* zsh foreign shell interface now supported natively in xonsh, like with Bash.
New `` source-zsh `` alias allows easy access to zsh scripts and functions.
2016-02-13 21:50:44 +03:00
* Vox virtual environment manager added.
2016-01-21 21:11:00 -05:00
2016-02-05 23:50:46 -05:00
**Changed:**
* The `` foreign_shell_data() `` keyword arguments `` envcmd `` and `` aliascmd ``
now default to `` None `` .
2016-02-05 01:31:34 -05:00
* Updated alias docs to pull in usage from the commands automatically.
2016-01-21 21:11:00 -05:00
2016-01-25 17:24:16 +02:00
**Fixed:**
2016-02-04 21:48:59 -05:00
* Hundreds of bugs related to line and column numbers have been addressed.
2016-01-25 17:24:16 +02:00
* Fixed path completion not working for absolute paths or for expanded paths on Windows.
2016-02-05 11:25:15 -05:00
* Fixed issue with hg dirty branches and $PATH.
2016-02-05 23:50:46 -05:00
* Fixed issues related to foreign shell data in files with whitespace in the names.
2016-02-13 01:37:23 -05:00
* Worked around bug in ConEmu/cmder which prevented `` get_git_branch() ``
2016-02-07 15:03:07 -05:00
from working in these terminal emulators on Windows.
2016-01-21 21:11:00 -05:00
v0.2.5
===========
2015-12-30 22:54:32 -08:00
**Added:**
2016-02-13 01:37:23 -05:00
* New configuration utility 'xonfig' which reports current system
2016-01-06 02:03:49 -08:00
setup information and creates config files through an interactive
wizard.
* Toolkit for creating wizards now available
2016-01-10 23:21:31 -05:00
* timeit and which aliases will now complete their arguments.
2016-02-13 01:37:23 -05:00
* $COMPLETIONS_MENU_ROWS environment variable controls the size of the
2015-12-30 23:00:05 -08:00
tab-completion menu in prompt-toolkit.
2016-01-06 19:04:13 -05:00
* Prompt-toolkit shell now supports true multiline input with the ability
to scroll up and down in the prompt.
2015-12-30 22:54:32 -08:00
**Changed:**
2016-01-06 02:03:49 -08:00
* The xonfig wizard will run on interactive startup if no configuration
file is found.
* BaseShell now has a singleline() method for prompting a single input.
* Environment variable docs are now auto-generated.
2016-02-13 01:37:23 -05:00
* Prompt-toolkit shell will now dynamically allocate space for the
2015-12-30 23:00:05 -08:00
tab-completion menu.
2016-01-10 19:43:57 -05:00
* Looking up nonexistent environment variables now generates an error
in Python mode, but produces a sane default value in subprocess mode.
* Environments are now considered to contain all manually-adjusted keys,
and also all keys with an associated default value.
2015-12-30 22:54:32 -08:00
**Removed:**
2016-02-13 01:37:23 -05:00
* Removed `` xonsh.ptk.shortcuts.Prompter.create_prompt_layout() `` and
2016-01-18 16:22:03 -05:00
`` xonsh.ptk.shortcuts.Prompter.create_prompt_application() `` methods
to reduce portion of xonsh that forks prompt-toolkit. This may require
users to upgrade to prompt-toolkit v0.57+.
2015-12-30 22:54:32 -08:00
**Fixed:**
2015-12-30 23:02:28 -08:00
* First prompt in the prompt-toolkit shell now allows for up and down
arrows to search through history.
2016-01-05 11:32:38 -08:00
* Made obtaining the prompt-toolkit buffer thread-safe.
2016-02-13 01:37:23 -05:00
* Now always set non-detypable environment variables when sourcing
2016-01-10 23:21:31 -05:00
foreign shells.
2016-01-14 12:01:21 -05:00
* Fixed issue with job management if a TTY existed but was not controlled
by the process, posix only.
2016-01-14 14:24:32 -05:00
* Jupyter kernel no longer times out when using foreign shells on startup.
2016-01-15 17:35:12 -05:00
* Capturing redirections, e.g. `` $(echo hello > f.txt) `` , no longer fails
with a decoding error.
2016-01-18 22:55:22 -05:00
* Evaluation in a Jupyter cell will return pformatted object.
* Jupyter with redirect uncaptured subprocs to notebook.
* Tab completion in Jupyter fixed.
2015-12-30 22:54:32 -08:00
v0.2.1 - v0.2.4
===============
You are reading the docs...but you still feel hungry.
v0.2.0
=============
**Added:**
* Rich history recording and replaying
v0.1.0
=============
**Added:**
* Naturally typed environment variables
* Inherits the environment from BASH
* Uses BASH completion for subprocess commands
* Regular expression filename globbing
* Its own PLY-based lexer and parser
* xonsh code parses into a Python AST
* You can do all the normal Python things, like arithmetic and importing
* Captured and uncaptured subprocesses
* Pipes, redirection, and non-blocking subprocess syntax support
* Help and superhelp with ? and ??
* Command aliasing
* Multiline input, unlike ed
* History matching like in IPython
* Color prompts
* Low system overhead
<v0.1.0
=============
The before times, like 65,000,000 BCE.