Skip to content

Releases: SBoudrias/Inquirer.js

inquirer@8.1.3

13 Sep 18:34
Compare
Choose a tag to compare

Bug Fixes

  • Fix password prompt appearing when doing async filtering/validation
  • User being prompted a question even though it was answered when using nested answer object format.
  • Fix extra space appearing when using custom prefix.

And bump of all dependencies.

inquirer@8.1.2

14 Jul 15:26
Compare
Choose a tag to compare
  • Fix bug on rawList prompt
  • Bump dependencies

inquirer@8.1.1

15 Jun 18:19
Compare
Choose a tag to compare

Fix: Number prompt default behavior.

inquirer@8.1.0

21 May 20:31
Compare
Choose a tag to compare

New features

  • Now display a loading spinner while asynchronously filtering or validating data.
  • inquirer.prompt() now accept a shorthand object syntax instead of an array with named prompts:
const { foo, bar } = await inquirer.prompt({
  foo: {
    message: '...',
    default: '...',
  },
  bar: {
    default: '...',
  }
}):

inquirer@8.0.1

21 May 20:11
Compare
Choose a tag to compare

Fixes

  • Fix issue with duplicate keys in expand prompt not being caught if casing didn't match
  • Fix rawlist prompt ignoring short option
  • Rollback dependencies migrated to ESM causing issue for some users

And lastly general dependency upgrade (to non-ESM versions)

inquirer@8.0.0

25 Feb 23:48
Compare
Choose a tag to compare
  • Drop support for Node 10 (through dependencies)
  • Add postfix option to the editor prompt to allow easily turning on proper syntax highlighting

inquirer@7.3.3

23 Jul 02:34
Compare
Choose a tag to compare
  • Fix to release the readline on errors
  • Security patch (lodash)

inquirer@7.3.2

13 Jul 17:14
Compare
Choose a tag to compare

Fix the loop: false option in the checkbox prompt.

inquirer@7.3.1

10 Jul 15:57
Compare
Choose a tag to compare
  • Fix the loop: false option in the list prompt.

inquirer@7.3.0

03 Jul 06:17
Compare
Choose a tag to compare
  • New option loop (boolean) for list type prompts. This prevents the list from looping when reaching the top or bottom of the selection.
  • Bug fix: multi line list type prompts
  • Core: Bumped dependencies