From d7b82618ec4c5b75b57d97c380ed5d78fd4e81a0 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Tue, 9 Aug 2022 20:01:20 +0200 Subject: [PATCH] CHANGELOG --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c507a7ef3..cf4583bfc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,6 +13,8 @@ Scripting improvements - ``argparse`` can now be used without option specifications, to allow using --min-args, --max-args or for commands that take no options (but might in future) (:issue:`9006`). - ``set --show`` now shows when a variable was inherited from fish's parent process, which should help with debugging (:issue:`9029`). - ``path`` gained a new ``mtime`` command to print the modification time stamp for files. This can be used e.g. to handle cache file ages (:issue:`9057`). +- ``string repeat`` no longer allocates the entire output at once, instead using chunks. This needs less memory and has less of a delay with long strings. Also it was possible to make fish crash by making it allocate more memory than the system had. (:issue:`9124`) +- The read limit is now restored to the default when $fish_read_limit is unset (:issue:`9129`). Interactive improvements ------------------------