diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4a5219f29..36fc984b7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,39 @@ Xonsh Change Log .. current developments +v0.9.27 +==================== + +**Added:** + +* Add new internal command "disown" to remove background jobs from the shell's job list +* Python3.9 issues with subscriptor forms fixed. +* added `xontrib-cd`_ +* Added **xontrib-history-encrypt** - new history backend that encrypt the xonsh shell commands history to prevent leaking sensitive data. If you like the idea give a star to the repository https://github.com/anki-code/xontrib-history-encrypt + +**Changed:** + +* New awesome landing on https://xon.sh - feel free to share and tweet! +* History files (json, sqlite) now have 600 (rw only for user) permission by default. +* PTK(python-prompt-toolkit) is no longer vendored with xonsh. + +**Fixed:** + +* Fixed a bug where "cd" and "rmdir" would return non-directory completions +* SQLite History Backend: show message instead of exiting when disk is full. + +**Authors:** + +* Gil Forsyth +* anki-code +* Noortheen Raja +* Tejasvi S Tomar +* Evgeny +* Adam Schwalm +* Nate Simon + + + v0.9.26 ==================== diff --git a/news/awesome_landing.rst b/news/awesome_landing.rst deleted file mode 100644 index 98bbd2382..000000000 --- a/news/awesome_landing.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* New awesome landing on https://xon.sh - feel free to share and tweet! - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/chmod_history_file.rst b/news/chmod_history_file.rst deleted file mode 100644 index cc65d815f..000000000 --- a/news/chmod_history_file.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* History files (json, sqlite) now have 600 (rw only for user) permission by default. - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/fix-cd-rmdir-completions.rst b/news/fix-cd-rmdir-completions.rst deleted file mode 100644 index 746a0b3ee..000000000 --- a/news/fix-cd-rmdir-completions.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Fixed a bug where "cd" and "rmdir" would return non-directory completions - -**Security:** - -* diff --git a/news/job-ctrl-disown.rst b/news/job-ctrl-disown.rst deleted file mode 100644 index 4c540a4dd..000000000 --- a/news/job-ctrl-disown.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Add new internal command "disown" to remove background jobs from the shell's job list - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/ptk-vendoring-removed.rst b/news/ptk-vendoring-removed.rst deleted file mode 100644 index 17cf78ebe..000000000 --- a/news/ptk-vendoring-removed.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* PTK(python-prompt-toolkit) is no longer vendored with xonsh. - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/py39-support.rst b/news/py39-support.rst deleted file mode 100644 index c96c8fca3..000000000 --- a/news/py39-support.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Python3.9 issues with subscriptor forms fixed. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/sqlite_disk_full_fix.rst b/news/sqlite_disk_full_fix.rst deleted file mode 100644 index e1f050419..000000000 --- a/news/sqlite_disk_full_fix.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* SQLite History Backend: show message instead of exiting when disk is full. - -**Security:** - -* diff --git a/news/xontrib-cd.rst b/news/xontrib-cd.rst deleted file mode 100644 index cf183e9bc..000000000 --- a/news/xontrib-cd.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* added `xontrib-cd`_ - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/xontrib-history-encrypt.rst b/news/xontrib-history-encrypt.rst deleted file mode 100644 index bd5ecc6ab..000000000 --- a/news/xontrib-history-encrypt.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Added **xontrib-history-encrypt** - new history backend that encrypt the xonsh shell commands history to prevent leaking sensitive data. If you like the idea give a star to the repository https://github.com/anki-code/xontrib-history-encrypt - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -*