diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 329c4158b..7475960c5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,40 @@ Xonsh Change Log .. current developments +v0.19.2 +==================== + +**Added:** + +* env: add ``$XONSH_PROMPT_CURSOR_SHAPE`` for configuring prompt cursor shape. +* env: Added XONSH_CONFIG_DIR, XONSH_DATA_DIR and XONSH_CACHE_DIR. +* SIGHUP will now be forwarded to child processes when received by the main xonsh process. + This matches the behavior of other shells e.g. bash. +* Documented the fact that the ``on_postcommand`` event only fires in interactive mode. +* history: Added and documented `--session-id` parameter for `history pull` command. +* history-json: Implemented `history pull` for JSON history backend. + +**Fixed:** + +* Running a subcommand in an event handler will no longer block xonsh from exiting. +* history: Prevented `history pull` command from adding consecutive duplicates to propmter history. +* prompt toolkit: Fixed autosuggest sometimes not updating when up-arrow is pressed (#5787). +* Subprocess-based completions like + `xontrib-fish-completer `_ + no longer append a space if the single available completion ends with + a directory separator. This is consistent with the behavior of the + default completer. + +**Authors:** + +* anki-code +* jfmontanaro +* Artur Manuel +* Đỗ Trung Nguyên +* Łukasz Langa + + + v0.19.1 ==================== diff --git a/news/config-cursor-shape.rst b/news/config-cursor-shape.rst deleted file mode 100644 index c183577b8..000000000 --- a/news/config-cursor-shape.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* env: add ``$XONSH_PROMPT_CURSOR_SHAPE`` for configuring prompt cursor shape. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/configurable-xonsh-dirs.rst b/news/configurable-xonsh-dirs.rst deleted file mode 100644 index 96305e001..000000000 --- a/news/configurable-xonsh-dirs.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* env: Added XONSH_CONFIG_DIR, XONSH_DATA_DIR and XONSH_CACHE_DIR. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/hup-propagation.rst b/news/hup-propagation.rst deleted file mode 100644 index f42deb761..000000000 --- a/news/hup-propagation.rst +++ /dev/null @@ -1,25 +0,0 @@ -**Added:** - -* SIGHUP will now be forwarded to child processes when received by the main xonsh process. - This matches the behavior of other shells e.g. bash. -* Documented the fact that the ``on_postcommand`` event only fires in interactive mode. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Running a subcommand in an event handler will no longer block xonsh from exiting. - -**Security:** - -* diff --git a/news/json-history-pull.rst b/news/json-history-pull.rst deleted file mode 100644 index e3c04bf28..000000000 --- a/news/json-history-pull.rst +++ /dev/null @@ -1,24 +0,0 @@ -**Added:** - -* history: Added and documented `--session-id` parameter for `history pull` command. -* history-json: Implemented `history pull` for JSON history backend. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* history: Prevented `history pull` command from adding consecutive duplicates to propmter history. - -**Security:** - -* diff --git a/news/ptk-history-combining.rst b/news/ptk-history-combining.rst deleted file mode 100644 index cea98a196..000000000 --- a/news/ptk-history-combining.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* prompt toolkit: Fixed autosuggest sometimes not updating when up-arrow is pressed (#5787). - -**Security:** - -* diff --git a/news/subprocess-completions-dir-spaces.rst b/news/subprocess-completions-dir-spaces.rst deleted file mode 100644 index eebb28791..000000000 --- a/news/subprocess-completions-dir-spaces.rst +++ /dev/null @@ -1,27 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Subprocess-based completions like - `xontrib-fish-completer `_ - no longer append a space if the single available completion ends with - a directory separator. This is consistent with the behavior of the - default completer. - -**Security:** - -*