Changelog

denoland/deno · · 1 commit

Bash completions now generate valid newlines

Deno fixes a bash completion bug that emitted escaped newlines, and adds a regression test to keep the script valid.

Bash completions fixed to emit real newlines (taljeonc8401c5)

The CLI completion generator no longer writes \n escapes into the bash script; it now emits actual newline characters in the subcommand case entries and fallback branch. This fixes invalid completion output for bash users and is backed by a new regression test.

Other misc changes

  • None