From: Peter Krempa Date: Wed, 15 May 2024 06:59:18 +0000 (+0200) Subject: NEWS: Mention '--help' bug in virsh and virt-admin X-Git-Tag: v10.4.0-rc1~56 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0fea7a103a57d3599e9841924c2678b7a7b0f794;p=thirdparty%2Flibvirt.git NEWS: Mention '--help' bug in virsh and virt-admin Signed-off-by: Peter Krempa Reviewed-by: Martin Kletzander --- diff --git a/NEWS.rst b/NEWS.rst index bca18e8c43..b6985980ba 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -37,6 +37,21 @@ v10.4.0 (unreleased) * **Bug fixes** + * virsh/virt-admin: Fix ``--help`` option for all commands + + A bug introduced in `v10.3.0 (2024-05-02)`_ caused that the attempt to print + help for any command by using the ``--help`` option in ``virsh`` and + ``virt-admin`` would print:: + + $ virsh list --help + error: command 'list' doesn't support option --help + + instead of the help output. A workaround for the affected version is to use + the help command:: + + $ virsh help list + + v10.3.0 (2024-05-02) ====================