Skip to content

ssh2-config 0.7.1

Choose a tag to compare

@veeso veeso released this 26 Apr 16:28
· 6 commits to main since this release

0.7.1

Released on 2026-04-26

Fixed

  • parser: preserve quoted spans with whitespace across multiple args (#52)

    Previously, tokenize_line only handled a single fully-quoted argument; multi-argument
    lines split on whitespace and broke quoted values containing spaces (e.g. SetEnv
    TEST="Test 2"). Introduce split_args_respecting_quotes to walk chars with quote-state,
    keeping quoted spans intact and preserving backslash escapes verbatim. Single fully-
    quoted args continue to be stripped and unescaped for backward compatibility.