From cdd929ff33258779e25ea25af627ced175e682bc Mon Sep 17 00:00:00 2001 From: Ravi Dondaputi Date: Mon, 11 Mar 2024 17:09:18 +0530 Subject: [PATCH] doc: migration-guide-3.7: Add wifi shell connect cmd info Make note of the modifications done to Wi-Fi connect command in Wi-Fi shell. Signed-off-by: Ravi Dondaputi --- doc/releases/migration-guide-3.7.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/releases/migration-guide-3.7.rst b/doc/releases/migration-guide-3.7.rst index b1be808035..ab7ff0ef78 100644 --- a/doc/releases/migration-guide-3.7.rst +++ b/doc/releases/migration-guide-3.7.rst @@ -185,6 +185,14 @@ Networking used to read the inner IPv4/IPv6 packets in an IP tunnel. This incoming tunnel read is now implemented in `recv` callback. (:github:`70549`) +* Modified the ``wifi connect`` command to use key-value format for the arguments. In the + previous implementation, we were identifying an option using its position in the argument string. + This made it difficult to deal with optional arguments or extending the support + for other options. Having this key-value format makes it easier to extend the options that + can be passed to the connect command. + ``wifi -h`` will give more information about the usage of connect command. + (:github:`70024`) + Other Subsystems ****************