Open greenkeeper[bot] opened 6 years ago
After pinning to 2.12.2 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.
Your tests are still failing with this version. Compare the changes đ¨
The new version differs by 16 commits.
de4af3a
version bump 2.14.0
445e80e
Merge pull request #761 from mojavelinux/register-on-version-once
ba6592f
only register the option:version event once
f5abcdb
Merge pull request #728 from sorohan/master
06451e3
Add missing semi-colons for linting.
92d6e49
Check if argv is set in array, instead of checking falsey
f44fa3b
Add test for empty option on command
d5ac793
Merge pull request #753 from mojavelinux/issue-560-version-option
38f41bf
Merge pull request #760 from mojavelinux/enable-eqeqeq-rule
cdb7a95
enable eqeqeq rule
4c9b4b8
resolves #754 add linter configuration to project
37359ee
resolves #560 respect custom name for version option
e5d8f04
Merge pull request #752 from mojavelinux/document-version-flag
9cee324
document how to override the version flag
447ce8f
Merge pull request #751 from mojavelinux/options-for-command
There are 16 commits in total.
See the full diff
Your tests are still failing with this version. Compare the changes đ¨
Your tests are still failing with this version. Compare the changes đ¨
The new version differs by 7 commits.
d8404f8
Merge pull request #775 from abetomo/version_bump_2.15.0
cb6f680
version bump 2.15.0
5c880fc
Merge pull request #772 from cheapsteak/patch-2
956b9e5
Update downloads badge to point to graph of downloads
c92ca1d
Merge pull request #711 from cravler/args_description
1d52048
Merge branch 'master' into args_description
f226259
Arguments description
See the full diff
Your tests are still failing with this version. Compare the changes đ¨
fix #777
Released with npm@5.6.0
Your tests are still failing with this version. Compare the changes đ¨
The new version differs by 17 commits.
4cc348b
Merge pull request #822 from abetomo/version_bump_2.16.0
8db14db
version bump 2.16.0
1f9354f
Remove Makefile and test/run
(#821)
3f4f5ca
Make 'npm test' run on Windows (#820)
3b8e519
Merge pull request #807 from styfle/patch-1
77ffd4f
Merge pull request #814 from DanielRuf/chore/cache-node-modules
6889693
chore: cache node_modules
ff2f618
Merge pull request #813 from DanielRuf/chore/remove-nodejs-4-add-nodejs-10
d5c1d7d
chore: remove Node.js 4 (EOL), add Node.js 10
c05ed98
Merge pull request #812 from yausername/fixReadme
55ff22f
fixed typo in readme
2415089
Add badge to display install size
89edef0
Fix types (#804)
001d560
Update eslint to resolve vulnerabilities in lodash
988d09b
Merge pull request #791 from yausername/master
There are 17 commits in total.
See the full diff
Your tests are still failing with this version. Compare the changes đ¨
Your tests are still failing with this version. Compare the changes đ¨
Your tests are still failing with this version. Compare the changes đ¨
The new version differs by 5 commits.
54b7f14
version bump 2.18.0
713db77
Standardize help output (#853)
af17996
chmod 644 travis.yml
8bcc493
Merge pull request #849 from KillWolfVlad/feature/executeSubCommand-tsnode
bf47dcc
add support for execute typescript subcommand via ts-node
See the full diff
dependency
commander was updated from 2.18.0
to 2.19.0
.Your tests are still failing with this version. Compare changes
The new version differs by 6 commits.
78b7dbd
version bump 2.19.0
6aafa20
prefixed error messages with "error:"
6c0c1f6
removed newline above and below errors
b6549f2
removed indentation from errors
2c20e91
removed newline after options and commands headers
4c294c1
Fix to change default value to string
See the full diff
dependency
commander was updated from 2.19.0
to 2.20.0
.Your tests are still failing with this version. Compare changes
The new version differs by 18 commits.
3e8bf54
Merge pull request #946 from abetomo/version_bump_2.20.0
1ffcbef
version bump 2.20.0
50922d8
Merge pull request #935 from MarshallOfSound/fix-deep-sym-link-resolution
994d24d
fix: resolve symbol links until their are no more symbolic links
291fc04
Merge pull request #930 from kira1928/update-index.d.ts
a469137
some more fix.
a679949
Refine variable name. Use strict type definition instead of
e31bb8a
Update index.d.ts
4542306
Merge pull request #924 from ForJing/patch-1
77bb580
Update Readme.md
68545af
Remove --save option as it isn't required anymore
82d0d0a
fix url :construction:
cec57f5
Add link to the license file :+1:
d240081
Update Readme.md
03f7d38
Added example of receiving args from options
There are 18 commits in total.
See the full diff
dependency
commander was updated from 2.20.0
to 3.0.0
.Your tests are still failing with this version. Compare changes
.command('clone', 'clone description', { executableFile: 'myClone' })
.command
to contrast action handler vs git-style executable. (#938 #990).command
. (#938 #990)-p 80
can also be supplied as -p80
node --harmony myCommand.js clone
.version
(#963)
program.version('0.0.1', '-v, --vers', 'output the current version')
.helpOption(flags, description)
routine to customise help flags and description (#963)
.helpOption('-e, --HELP', 'read more information')
--foo
and --no-foo
--no-foo
on cli now emits option:no-foo
(previously option:foo
)--no-foo
after defining --foo
leaves the default value unchanged (previously set it to false)node --inspect myCommand.js clone
The custom event for a negated option like --no-foo
is option:no-foo
(previously option:foo
).
program
.option('--no-foo')
.on('option:no-foo', () => {
console.log('removing foo');
});
When using TypeScript, adding a command does not allow an explicit undefined
for an unwanted executable description (e.g. for a command with an action handler).
program
.command('action1', undefined, { noHelp: true }) // No longer valid
.command('action2', { noHelp: true }) // Correct
The new version differs by 104 commits.
3b0127b
update Readme_zh-CN to v3.0.0 and modify some old translation problems
bfcd39a
Set release date for 3.0.0
d1469c0
Bump version for release
41d0bdb
Add explicit breaking notes (#1006)
5b1b2fe
Add links for issues (so work for direct viewing of CHANGELOG)
fb56370
Add Tidelift links (#1004)
f743bf4
Expand changelog for prerelease
e5bce2f
Add #987 to CHANGELOG
a9503bb
Allow boolean default for flag option (#987)
55e88dc
Add missing changes to v3.0.0 changelog
fb00b0e
Merge branch 'master' into release/3.0.0
831d52f
Merge pull request #999 from shadowspawn/feature/specifyExecutableFile
a59e90f
Merge pull request #998 from shadowspawn/feature/develop
6d68637
Increment inspector port for spawned subcommands (#991)
facd66f
Add debugging note with issue for mixed action/executable
There are 104 commits in total.
See the full diff
dependency
commander was updated from 3.0.0
to 3.0.1
.Your tests are still failing with this version. Compare changes
executableFile
in CommandOptions (#1028)const
rather than var
in README (#1026)The new version differs by 17 commits.
4312302
3.0.1
7cf3ee7
Add date for 3.0.1
3286dc7
Update CHANGELOG for 3.0.1 (#1029)
4c34d0e
Add definition for executableFile CommandOption (#1028)
1298a79
Merge pull request #1026 from abetomo/unify_readme_code_examples_with_const
e9c24fe
Unify readme code examples with 'const'
3b3d3b5
Change CHANGELOG format for next release, and add pending changes (#1022)
c0e7651
Merge pull request #1021 from shadowspawn/feature/update-dependencies
7d88c96
Update devDependencies
3e89cc9
Merge pull request #1018 from nazieb/develop
bd8be00
fix showing help for sub commands with custom executableFile
8b8d6e6
Merge branch 'master' into develop
fea94a9
Move CONTRIBUTING and add PULL_REQUEST_TEMPLATE (#1017)
b939242
Add Chinese translation for .name and .usage section
b19b58e
Add TOC and some lint
There are 17 commits in total.
See the full diff
dependency
commander was updated from 3.0.1
to 3.0.2
.Your tests are still failing with this version. Compare changes
dependency
commander was updated from 3.0.2
to 4.0.0
.Your tests are still failing with this version. Compare changes
.exitOverride()
 allows override of calls to process.exit
 for additional error handling and to keep program running (#1040).requiredOptions()
(#1071)command:*
event to include unknown argumentscustomFds
option from call to child_process.spawn
(#1052)The new version differs by 49 commits.
f0315b8
Prepare for 4.0.0
0a626bb
Updates to CHANGELOG
41c6985
Switch from class to class-like to include all types in commander namespace
08a5f02
Add full width colon in Chinese introducing languages
dad5c1a
Add translation links
c1c1db6
Update Tidelift description to use enterprise wording
7fa903f
Remove translated english text, and add new TOC items
8b656f9
add requiredOption and exitOverride for Chinese Readme
2ef5401
Merge pull request #1082 from shadowspawn/feature/engines_node6
3fd7913
Explicitly require node 6, so hopefully get a warning on install if there is an older version of node.
a98f35a
Add 'pull_request' to GitHub Actions trigger (#1076)
e9929fb
4.0.0-1
82fd44a
Add .requiredOption to CHANGELOG
7f9edba
Add .requiredOption() for mandatory options (#1071)
57e9d98
Examples: use "require" that works from git repo, and lint. (#1072)
There are 49 commits in total.
See the full diff
dependency
commander was updated from 4.0.0
to 4.0.1
.Your tests are still failing with this version. Compare changes
The new version differs by 5 commits.
5083e14
Merge pull request #1094 from shadowspawn/release/4.0.1
b38f262
Bump version for 4.0.1
88d1341
Update CHANGELOG for 4.0.1
36082ba
Check for missing required options after check for displaying help
6bfc580
Adding migration tips to match manual additions on GitHub release notes
See the full diff
dependency
commander was updated from 4.1.0
to 4.1.1
.Your tests are still failing with this version. Compare changes
.action()
should include Promise for async ([#1157])The new version differs by 47 commits.
d5186ba
Bump version to 4.1.1
37e9428
Add 4.1.1 to CHANGELOG
e5f316f
Use npm ci
with CI (#1164)
cb54d5f
fix(ts): action can be an async function (#1157)
6791884
Merge branch 'master' into develop
f31d757
Add FUNDING file for enabling GitHub Sponsor on repo
d9627f5
Merge pull request #1147 from shadowspawn/feature/changelog-lint
32c26df
Use consistent list character in markdown
4092956
Merge branch 'master' into develop
82f5157
Fix diff order for 4.1 link
7a480a7
Add missing diff link for 4.1.0
e45ae5a
Merge pull request #1136 from shadowspawn/feature/update-examples
d97aaaa
Add missing diff link for 4.1.0
8e1cdf5
Merge pull request #1142 from tj/develop
1c66935
add zh-CN translation for parseAsync
There are 47 commits in total.
See the full diff
dependency
commander was updated from 4.1.1
to 5.0.0
.Your tests are still failing with this version. Compare changes
.addCommand()
for adding a separately configured command ([#764] [#1149]).addHelpCommand()
([#1149])-a -b -p 80
can be written as -abp80
) ([#1145]).parseOption()
includes short flag and long flag expansions ([#1145]).helpInformation()
returns help text as a string, previously a private routine ([#1169]).parse()
implicitly uses process.argv
if arguments not specified ([#1172]).parse()
arguments "from", if not following node conventions ([#512] [#1172])commands
property of Command
([#1184])program
property ([#1195])createCommand
factory method to simplify subclassing ([#1191])command:*
for executable subcommands ([#809] [#1149]).args
contains command arguments with just recognised options removed ([#1032] [#1138]).option()
([#1119]).allowUnknownOption()
([#802] [#1138])
.args
-ab
or --foo=bar
) ([#1145]).parseOptions()
([#1138])
args
in returned result renamed operands
and does not include anything after first unknown optionunknown
in returned result has arguments after first unknown option including operands, not just options and values.on('command:*', callback)
and other command events passed (changed) results from .parseOptions
, i.e. operands and unknown ([#1138])this
rather than Command
([#1180]).parseAsync
returns Promise<this>
to be consistent with .parse()
([#1180])@types/node
([#1146])normalize
(the functionality has been integrated into parseOptions
) ([#1145])parseExpectedArgs
is now private ([#1149])If you use .on('command:*')
or more complicated tests to detect an unrecognised subcommand, you may be able to delete the code and rely on the default behaviour.
If you use program.args
or more complicated tests to detect a missing subcommand, you may be able to delete the code and rely on the default behaviour.
If you use .command('*')
to add a default command, you may be be able to switch to isDefault:true
with a named command.
The new version differs by 53 commits.
2aad525
Update dependencies (#1214)
f86d878
Add cli keyword (#1213)
83af0fd
Prepare for 5.0.0 (#1211)
f14df07
Add eslint settings for TypeScript (#1205)
95e0d19
5.0.0-4
bd5a49e
Add factory to CHANGELOG
8c3dd6f
createCommand factory routine (#1191)
3c9f33f
Say we support LTS, so do not need to update when node changes (#1204)
3cf8cff
Expand typescript checks (#1198)
a3f453f
5.0.0-3
87bfca6
Add CHANGELOG entries for 5.0.0-3
1757564
Use a tidier global command (#1200)
0a50bd6
Add program to exports (#1195)
77e511f
Enable TypeScript checking of javascript, and resolve or suppress errors (#1194)
2491c76
URLEncode several chinese toc link
There are 53 commits in total.
See the full diff
Version 2.13.0 of commander was just published.
This version is covered by your current version range and after updating it in your project the build failed.
commander is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.
Status Details
- â **continuous-integration/travis-ci/push** The Travis CI build could not complete due to an error [Details](https://travis-ci.org/leizongmin/js-bright/builds/327562419?utm_source=github_status&utm_medium=notification)Release Notes
v2.13.0Commits
The new version differs by 8 commits.
291fbaa
Merge pull request #748 from abetomo/version_bump_2.13.0
63f1ee9
version bump 2.13.0
f13ee18
Do not print default for --no-
ff712f1
remove trailing spaces in command help
fefda77
Merge pull request #713 from sveinburne/feature/enhanced-typedefs
d812171
Merge pull request #723 from abetomo/add_nodejs_version_to_ci_yml
498ce71
Update CI's Node.js to LTS and latest version
965188f
typedefs: Command and Option types added to commander namespace
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donât help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper Bot :palm_tree: