CHANGELOG

This commit is contained in:
Fabian Boehm 2022-08-09 20:01:20 +02:00
parent b89249de98
commit d7b82618ec

View file

@ -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
------------------------