That would be helpful.
The new syntax is unclear to me, and I'm not understanding why you deprecated the old clear/concise syntax.
Consider a raspberry pi where you login as user 'pi' and sudo your commends:
old:
-k -u pi --sudo
new:
-k -u pi -b --become-user=root --become-method=sudo
Or do your defaults mean that the new way would just be:
-k -u pi -b
(in which case, what value was replacing a nice and clear/concise --sudo with a cryptic -b where we need to know the defaults for which user and method) ?