-
Notifications
You must be signed in to change notification settings - Fork 67
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
fix(deps): update tools & commanders (major) #524
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/major-tools-and-commanders
base: master
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 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
0416618
to
77d79ad
Compare
88b65b8
to
4c420d6
Compare
6706d6e
to
557ff3c
Compare
557ff3c
to
8c67e8b
Compare
9aee72a
to
7368bf0
Compare
7368bf0
to
80c0321
Compare
31c9b54
to
31f51f9
Compare
ab77e27
to
3548bff
Compare
3548bff
to
748f54e
Compare
748f54e
to
f81d008
Compare
f81d008
to
4154be4
Compare
4154be4
to
48184ee
Compare
c7585ce
to
89d57cd
Compare
6b546f3
to
8e9a6f4
Compare
5ed9360
to
b6c5fe1
Compare
50782bf
to
ab7e661
Compare
5174186
to
83494ed
Compare
14a6146
to
e6dc888
Compare
d49d2d1
to
df6c53e
Compare
df6c53e
to
c16fc82
Compare
dc13919
to
ad0d740
Compare
ad0d740
to
d35fddd
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:
4.1.2
->5.4.1
11.0.0
->13.1.0
2.3.1
->4.1.0
5.0.0
->6.1.0
9.0.0
->11.1.0
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
chalk/chalk (chalk)
v5.4.1
Compare Source
navigator
not definedReferenceError
(#642)4ebb62d
v5.4.0
Compare Source
CIRCLECI
environments to return level 3 color supportf838120
v5.3.0
Compare Source
sideEffects
field to package.json5aafc0a
29b8569
v5.2.0
Compare Source
7443e9f
7443e9f
7443e9f
7443e9f
v5.1.2
Compare Source
a34bcf6
v5.1.1
Compare Source
6e0df05
v5.1.0
Compare Source
d7d7571
v5.0.1
Compare Source
main
field to package.json for backwards compatibility with some developer tools85f7e96
v5.0.0
Compare Source
Breaking
fa16f4e
chalk.Instance
→Chalk
chalk.supportsColor
→supportsColor
chalk.stderr
→chalkStderr
chalk.stderr.supportsColor
→supportsColorStderr
.keyword()
,.hsl()
,.hsv()
,.hwb()
, and.ansi()
coloring methods (#433)4cf2e40
color-convert
package.chalk-template
(#524)c987c61
Improvements
04fdbd6
overline
style (#433)4cf2e40
0fba91b
tj/commander.js (commander)
v13.1.0
Compare Source
Added
.option('--ws, --workspace')
([#2312])v13.0.0
Compare Source
Added
.parse()
with default settings ([#2299]).saveStateBeforeParse()
and.restoreStateBeforeParse()
for use by subclasses ([#2299])styleTitle()
to add color to help using.configureHelp()
or Help subclass ([#2251]).configureOutput()
forgetOutHasColors()
,getErrHasColors()
, andstripColor()
([#2251])minWidthToWrap
([#2251])displayWidth()
,boxWrap()
,preformatted()
et al ([#2251])Changed
-
([#2270]).parse()
ifstoreOptionsAsProperties: true
([#2299])this
in parameters for action handler callback ([#2197])Deleted
Help.wrap()
refactored intoformatItem()
andboxWrap()
([#2251])Migration Tips
Excess command-arguments
It is now an error for the user to specify more command-arguments than are expected. (
allowExcessArguments
is now false by default.)Old code:
Now shows an error:
You can declare the expected arguments. The help will then be more accurate too. Note that declaring
new arguments will change what is passed to the action handler.
Or you could suppress the error, useful for minimising changes in legacy code.
Stricter option flag parsing
Commander now throws an error for option flag combinations that are not supported.
In particular, a short flag with multiple characters is now an error.
A short option has a single character:
Or from Commander 13.1 you can have an extra long flag instead of a short flag to allow a more memorable shortcut for the full name:
v12.1.0
Compare Source
Added
node --eval
andnode --print
when call.parse()
with no arguments ([#2164])Changed
node:
([#2170])Removed
v12.0.0
Compare Source
Added
.addHelpOption()
as another way of configuring built-in help option ([#2006]).helpCommand()
for configuring built-in help command ([#2087])Fixed
passThroughOptions
constraints when using.addCommand
and throw if parent command does not have.enablePositionalOptions()
enabled ([#1937])Changed
.storeOptionsAsProperties()
after setting an option value ([#1928])@api private
with documented@private
([#1949]).addHelpCommand()
now takes a Command (passing string or boolean still works as before but deprecated) ([#2087])Deprecated
.addHelpCommand()
passing string or boolean (use.helpCommand()
or pass a Command) ([#2087])Removed
program
export instead) ([#2017])Migration Tips
global program
If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new
Command
).option and command clashes
A couple of configuration problems now throw an error, which will pick up issues in existing programs:
v11.1.0
Compare Source
Fixed
OptionValueSource
to allow any string, to match supported use of custom sources ([#1983])Command.version()
can also be used as getter ([#1982])Commands.executableDir()
, for when not configured ([#1965])Added
registeredArguments
property onCommand
with the array of definedArgument
(likeCommand.options
forOption
) ([#2010])envVar
,presetArg
([#2019])argChoices
,defaultValue
,defaultValueDescription
([#2019])Changed
Deprecated
Command._args
was private anyway, but now available asregisteredArguments
([#2010])kelektiv/node-cron (cron)
v4.1.0
Compare Source
✨ Features
♻️ Chores
v4.0.0
Compare Source
⚠ Breaking changes
📦 Code Refactoring
♻️ Chores
v3.5.0
Compare Source
✨ Features
⚙️ Continuous Integrations
♻️ Chores
v3.4.0
Compare Source
✨ Features
📚 Documentation
♻️ Chores
v3.3.2
Compare Source
🐛 Bug Fixes
⚙️ Continuous Integrations
♻️ Chores
v3.3.1
Compare Source
🐛 Bug Fixes
v3.3.0
Compare Source
✨ Features
⚙️ Continuous Integrations
♻️ Chores
v3.2.1
Compare Source
🛠 Builds
v3.2.0
Compare Source
✨ Features
⚙️ Continuous Integrations
11bd719
(#879) (0287c69)39370e3
(#889) (0f7a3aa)♻️ Chores
v3.1.9
Compare Source
🛠 Builds
📚 Documentation
⚙️ Continuous Integrations
♻️ Chores
v3.1.8
Compare Source
🛠 Builds
⚙️ Continuous Integrations
♻️ Chores
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 is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.