Skip to content

v1.6

Choose a tag to compare

@github-actions github-actions released this 28 May 05:30
· 7 commits to main since this release
fix(win): single-quote api_key in YAML to prevent parse errors

Double-quoted YAML strings interpret backslash escapes; if the API key
contains characters like \x the parser throws 'did not find expected
hexadecimal number' (line 23 of config.yml).

Single-quoted YAML strings are literal — only ' needs escaping (doubled).
Added _yaml_str() helper to wrap any value safely.