**Unpublished due to backward compatibility issue**
1.2.3
- Fix bug with `editor` prompt 442
1.2.0
- Checkbox prompt now support `a` and `i` keys to trigger select all and invert selection. - `editor` prompt is now non blocking. - errors thrown in `filter` functions are now surfaced to the user.
1.1.3
- Fix bug where options passed to Inquirer were mutated.
1.1.2
- Fix list prompts being re-render each time enter key was pressed. (395)
1.1.1
- Correctly ignore validation on list prompts. (previously the function would be run and throw an exception)
Instead of validation, you can: 1. Pass a function as `choices` so you can filter out invalid choices 2. If you want the end user to see all choices, then make the invalid choice `Separators`. That way, they'll be seen, but won't be selectable.