-
Notifications
You must be signed in to change notification settings - Fork 0
feat(deps): update dependency inquirer to v12 (main) #70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/main-inquirer-12.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
4b28815
to
35166d2
Compare
9033e02
to
8093219
Compare
8093219
to
36e6df0
Compare
36e6df0
to
73a4aff
Compare
8d98a22
to
1032e52
Compare
97eb2fe
to
4653454
Compare
4653454
to
3396f7b
Compare
3396f7b
to
4a69ac9
Compare
4a69ac9
to
e819c79
Compare
e819c79
to
97ed09d
Compare
97ed09d
to
b318aab
Compare
b318aab
to
d68f292
Compare
89f630f
to
95be2aa
Compare
95be2aa
to
704e1a1
Compare
3e3a586
to
69d1c1f
Compare
69d1c1f
to
26644f1
Compare
26644f1
to
897104c
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
9.3.7
->12.9.1
Release Notes
SBoudrias/Inquirer.js (inquirer)
v12.9.1
Compare Source
v12.9.0
Compare Source
instructions
config to allow localizing the help tips.v12.8.2
Compare Source
indexMode: number
theme option didn't properly calculate the items indexes if separators where present in between choices.v12.8.1
Compare Source
run-aysnc
) loaded devDependencies unexpectedly. This is now fixed upstream. Rel #1791v12.8.0
Compare Source
v12.7.0
Compare Source
-
input
prompt: Newprefill
option to control if thedefault
value is editable inline or only after pressingtab.
v12.6.3
Compare Source
select
,checkbox
andsearch
prompts was fully rewritten to handle edge cases around rendering multi-line choices and pointer positioning.v12.6.2
Compare Source
v12.6.1
Compare Source
npm
. This removes non-standard version specifiers likeworkspace:*
from the public npm packages.v12.6.0
Compare Source
instructions
option allowing to customize the messages in the help tips.@inquirer/select
prompt. Also added aloop
option to control the list loop behaviour when reaching the boundaries.v12.5.2
Compare Source
v12.5.1
Compare Source
v12.5.0
Compare Source
select
): Introducetheme.indexMode
to control displaying an index prefix in front of each choice. (defaults to hidden)select
): Improve search when number keys are pressedv12.4.3
Compare Source
--frozen-intrinsics
flag.v12.4.2
Compare Source
v12.4.1
Compare Source
@types/node
as an optional peer dependency across all packages.v12.4.0
Compare Source
shortcut
config to thecheckbox
prompt. Allows to customize or disable shortcut keys for select all and invert selection.v12.3.3
Compare Source
strip-ansi
in favour of Node built-instripVTControlCharacters
util.v12.3.2
Compare Source
v12.3.1
Compare Source
v12.3.0
Compare Source
default
to be provided listing pre-checked checkboxes. This is a legacy interface brought back given this feature removal was an involuntary breaking change during thev12
release. The preferred interface is to provide thechecked
property to choices{ value: 'bar', checked: true }
.v12.2.0
Compare Source
v12.1.0
Compare Source
v12.0.1
Compare Source
v12.0.0
Compare Source
@types/node
is now only apeerDependencies
. This reduces the install size of inquirer dramatically for folks not using Typescript. It's unlikely to break your builds if you used TS already, if it does runnpm install --dev @​types/node
/yarn add --dev @​types/node
.v11.1.0
Compare Source
import type { Question, DistinctQuestion, Answers } from 'inquirer';
You should use as follow to keep the inference working properly:
v11.0.2
Compare Source
when
behaviour changed unexpectedly when returning a falsy value.v11.0.1
Compare Source
v11.0.0
Compare Source
No technical breaking changes; but we changed the style of the question
prefix
once the answer is provided. Once a question is answer, the prefix becomes a tick mark (previously it was the same?
as when the prompt is idle.)This is theme-able, and so can be overwritten to with
theme.prefix
.v10.2.2
Compare Source
filter
option not working.signal: AbortSignal
didn't work with class based prompts (OSS plugins.) Now it should work consistently with legacy style prompts.v10.2.1
Compare Source
expand
prompt being broken if a Separator was in thechoices
array.v10.2.0
Compare Source
v10.1.8
Compare Source
v10.1.7
Compare Source
v10.1.6
Compare Source
v10.1.5
Compare Source
v10.1.4
Compare Source
v10.1.3
Compare Source
v10.1.2
Compare Source
Choice
objects withoutvalue
should default to usename
as the value. Note: Please don't rely on this weird behaviour, but we fixed it since it was an unintended breaking change.v10.1.1
Compare Source
v10.1.0
Compare Source
{ type: 'search' }
prompt.v10.0.4
Compare Source
v10.0.3
Compare Source
short
on select and checkbox prompt.close
method on prompt class instances (it wasn't required.)v10.0.2
Compare Source
v10.0.1
Compare Source
v10.0.0
Compare Source
inquirer
is publishes a dual-build CJS/ESM.)@inquirer/prompt
.@inquirer/core
. Custom prompts built on[email protected]
will keep working, but should plan a migration.inquirer.ui.BottomBar
is deleted.My expectation is that this release should be a drop-in replacement for people using
inquirer.prompt()
and built-ins 🤞🏻. Please open an issue on Github if you run into issues migrating; it's a large rewrite and there might be a few sharp edges to cut! Hope you'll like this new release.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.