···11----
22-"@clack/prompts": minor
33----
44-55-Updates default formatter of `note()` to note dim lines anymore
66-77-If you want the old behavior, provide a `format()` function:
88-99-```diff
1010-import { note } from '@clack/prompts';
1111-+import { styleText } from 'node:util';
1212-1313-note(
1414- 'You can edit the file src/index.jsx',
1515- 'Next steps.'
1616-+ { format: (text) => styleText('dim', text) }
1717-);
1818-```
-5
.changeset/calm-feet-lead.md
···11----
22-"@clack/prompts": minor
33----
44-55-Add keyboard instruction footers to `select`, `multiselect`, and `groupMultiselect` in the active state, matching autocomplete. No option — always shown.
-5
.changeset/password-empty-submit.md
···11----
22-"@clack/core": patch
33----
44-55-Fix `password` prompt resolving to `undefined` on empty submit. It now normalizes an empty submission to `""`, matching the `text` prompt behavior and the documented `Promise<string | symbol>` return type.
-10
.changeset/ten-vans-stand.md
···11----
22-"@clack/core": patch
33----
44-55-fix: only submit multi-line prompt when double-return happens at end of input.
66-77-Also fixes two minor things:
88-99-- Initial value is used as initial user input for multi-line prompts
1010-- Cursor is placed at the end when there is initial input
+13
packages/core/CHANGELOG.md
···11# @clack/core
2233+## 1.4.2
44+55+### Patch Changes
66+77+- [#561](https://github.com/bombshell-dev/clack/pull/561) [`2f2b52f`](https://github.com/bombshell-dev/clack/commit/2f2b52f77cbfa9af618c6d929249ab8395fc37a1) Thanks [@avallete](https://github.com/avallete)! - Fix `password` prompt resolving to `undefined` on empty submit. It now normalizes an empty submission to `""`, matching the `text` prompt behavior and the documented `Promise<string | symbol>` return type.
88+99+- [#569](https://github.com/bombshell-dev/clack/pull/569) [`e1b6ee7`](https://github.com/bombshell-dev/clack/commit/e1b6ee71a76e17a3c33ba7ee6e5fb34e886233bb) Thanks [@43081j](https://github.com/43081j)! - fix: only submit multi-line prompt when double-return happens at end of input.
1010+1111+ Also fixes two minor things:
1212+1313+ - Initial value is used as initial user input for multi-line prompts
1414+ - Cursor is placed at the end when there is initial input
1515+316## 1.4.1
417518### Patch Changes