From ffdbc5a1b2ff864a621cfa51b24fed3385b26493 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sun, 13 Mar 2022 11:41:38 +0100 Subject: [PATCH] CHANGELOG --- CHANGELOG.rst | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index da9f07bea..9d7ec23c9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,46 @@ +fish 3.5.0 (not yet released) +==================================== + +Notable improvements and fixes +------------------------------ + +Deprecations and removed features +--------------------------------- +- Most ``string`` no longer append a newline to their input if the input didn't have one (:issue:`8473`, :issue:`3847`) +- Special support for non-standard color sequences has been removed from fish's escape sequence removal. This applies to terminals like the Data General Dasher D220 from 1984. We do not expect anyone to have ever used fish with such a terminal. (:issue:`8769`) + +Scripting improvements +---------------------- +- ``math`` can now handle underscores (``_``) as visual separators in numbers (:issue:`8611`, :issue:`8496`):: + + math 5 + 2_123_252 + +- ``math``'s ``min`` and ``max`` functions now take a variable number of arguments instead of always requiring 2 (:issue:`8644`, :issue:`8646`) . +- ``read`` is now faster as the last process in a pipeline (:issue:`8552`). + +Interactive improvements +------------------------ + +New or improved bindings +^^^^^^^^^^^^^^^^^^^^^^^^ + +Improved prompts +^^^^^^^^^^^^^^^^ + +Completions +^^^^^^^^^^^ + +Improved terminal support +^^^^^^^^^^^^^^^^^^^^^^^^^ + +Other improvements +------------------ + +For distributors +---------------- + +-------------- + fish 3.4.0 (released March 12, 2022) ====================================