dequelabs / axe-cli

[Deprecated] A command-line interface for the aXe accessibility testing engine
Mozilla Public License 2.0
430 stars 44 forks source link

chore(deps): bump commander from 2.20.0 to 3.0.1 #117

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps commander from 2.20.0 to 3.0.1.

Release notes *Sourced from [commander's releases](https://github.com/tj/commander.js/releases).* > ## 3.0.1 > ### Added > > * .name and .usage to README ([#1010](https://github-redirect.dependabot.com/tj/commander.js/issues/1010)) > * Table of Contents to README ([#1010](https://github-redirect.dependabot.com/tj/commander.js/issues/1010)) > * TypeScript definition for `executableFile` in CommandOptions ([#1028](https://github-redirect.dependabot.com/tj/commander.js/issues/1028)) > > ### Changed > > * consistently use `const` rather than `var` in README ([#1026](https://github-redirect.dependabot.com/tj/commander.js/issues/1026)) > > ### Fixed > > * help for sub commands with custom executableFile ([#1018](https://github-redirect.dependabot.com/tj/commander.js/issues/1018)) > > ## v3.0.0 > * Add option to specify executable file name ([#999](https://github-redirect.dependabot.com/tj/commander.js/issues/999)) > * e.g. `.command('clone', 'clone description', { executableFile: 'myClone' })` > * Change docs for `.command` to contrast action handler vs git-style executable. ([#938](https://github-redirect.dependabot.com/tj/commander.js/issues/938) [#990](https://github-redirect.dependabot.com/tj/commander.js/issues/990)) > * **Breaking** Change TypeScript to use overloaded function for `.command`. ([#938](https://github-redirect.dependabot.com/tj/commander.js/issues/938) [#990](https://github-redirect.dependabot.com/tj/commander.js/issues/990)) > * Change to use straight quotes around strings in error messages (like 'this' instead of `this') ([#915](https://github-redirect.dependabot.com/tj/commander.js/issues/915)) > * Add TypeScript "reference types" for node ([#974](https://github-redirect.dependabot.com/tj/commander.js/issues/974)) > * Add support for hyphen as an option argument in subcommands ([#697](https://github-redirect.dependabot.com/tj/commander.js/issues/697)) > * Add support for a short option flag and its value to be concatenated for action handler subcommands ([#599](https://github-redirect.dependabot.com/tj/commander.js/issues/599)) > * e.g. `-p 80` can also be supplied as `-p80` > * Add executable arguments to spawn in win32, for git-style executables ([#611](https://github-redirect.dependabot.com/tj/commander.js/issues/611)) > * e.g. `node --harmony myCommand.js clone` > * Add parent command as prefix of subcommand in help ([#980](https://github-redirect.dependabot.com/tj/commander.js/issues/980)) > * Add optional custom description to `.version` ([#963](https://github-redirect.dependabot.com/tj/commander.js/issues/963)) > * e.g. `program.version('0.0.1', '-v, --vers', 'output the current version')` > * Add `.helpOption(flags, description)` routine to customise help flags and description ([#963](https://github-redirect.dependabot.com/tj/commander.js/issues/963)) > * e.g. `.helpOption('-e, --HELP', 'read more information')` > * Fix behavior of --no-* options ([#795](https://github-redirect.dependabot.com/tj/commander.js/issues/795)) > * can now define both `--foo` and `--no-foo` > * **Breaking** custom event listeners: `--no-foo` on cli now emits `option:no-foo` (previously `option:foo`) > * **Breaking** default value: defining `--no-foo` after defining `--foo` leaves the default value unchanged (previously set it to false) > * allow boolean default value, such as from environment ([#987](https://github-redirect.dependabot.com/tj/commander.js/issues/987)) > * Increment inspector port for spawned subcommands ([#991](https://github-redirect.dependabot.com/tj/commander.js/issues/991)) > * e.g. `node --inspect myCommand.js clone` > > Example Breaking Changes > ------------------------ > > The custom event for a negated option like `--no-foo` is `option:no-foo` (previously `option:foo`). > > ```js > program > .option('--no-foo') > .on('option:no-foo', () => { > console.log('removing foo'); > ... (truncated)
Changelog *Sourced from [commander's changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md).* > ## [3.0.1] (2019-08-30) > > ### Added > > * .name and .usage to README ([#1010](https://github-redirect.dependabot.com/tj/commander.js/issues/1010)) > * Table of Contents to README ([#1010](https://github-redirect.dependabot.com/tj/commander.js/issues/1010)) > * TypeScript definition for `executableFile` in CommandOptions ([#1028](https://github-redirect.dependabot.com/tj/commander.js/issues/1028)) > > ### Changed > > * consistently use `const` rather than `var` in README ([#1026](https://github-redirect.dependabot.com/tj/commander.js/issues/1026)) > > ### Fixed > > * help for sub commands with custom executableFile ([#1018](https://github-redirect.dependabot.com/tj/commander.js/issues/1018)) > > 3.0.0 / 2019-08-08 > ================= > > * Add option to specify executable file name ([#999](https://github-redirect.dependabot.com/tj/commander.js/issues/999)) > * e.g. `.command('clone', 'clone description', { executableFile: 'myClone' })` > * Change docs for `.command` to contrast action handler vs git-style executable. ([#938](https://github-redirect.dependabot.com/tj/commander.js/issues/938) [#990](https://github-redirect.dependabot.com/tj/commander.js/issues/990)) > * **Breaking** Change TypeScript to use overloaded function for `.command`. ([#938](https://github-redirect.dependabot.com/tj/commander.js/issues/938) [#990](https://github-redirect.dependabot.com/tj/commander.js/issues/990)) > * Change to use straight quotes around strings in error messages (like 'this' instead of `this') ([#915](https://github-redirect.dependabot.com/tj/commander.js/issues/915)) > * Add TypeScript "reference types" for node ([#974](https://github-redirect.dependabot.com/tj/commander.js/issues/974)) > * Add support for hyphen as an option argument in subcommands ([#697](https://github-redirect.dependabot.com/tj/commander.js/issues/697)) > * Add support for a short option flag and its value to be concatenated for action handler subcommands ([#599](https://github-redirect.dependabot.com/tj/commander.js/issues/599)) > * e.g. `-p 80` can also be supplied as `-p80` > * Add executable arguments to spawn in win32, for git-style executables ([#611](https://github-redirect.dependabot.com/tj/commander.js/issues/611)) > * e.g. `node --harmony myCommand.js clone` > * Add parent command as prefix of subcommand in help ([#980](https://github-redirect.dependabot.com/tj/commander.js/issues/980)) > * Add optional custom description to `.version` ([#963](https://github-redirect.dependabot.com/tj/commander.js/issues/963)) > * e.g. `program.version('0.0.1', '-v, --vers', 'output the current version')` > * Add `.helpOption(flags, description)` routine to customise help flags and description ([#963](https://github-redirect.dependabot.com/tj/commander.js/issues/963)) > * e.g. `.helpOption('-e, --HELP', 'read more information')` > * Fix behavior of --no-* options ([#795](https://github-redirect.dependabot.com/tj/commander.js/issues/795)) > * can now define both `--foo` and `--no-foo` > * **Breaking** custom event listeners: `--no-foo` on cli now emits `option:no-foo` (previously `option:foo`) > * **Breaking** default value: defining `--no-foo` after defining `--foo` leaves the default value unchanged (previously set it to false) > * allow boolean default value, such as from environment ([#987](https://github-redirect.dependabot.com/tj/commander.js/issues/987)) > * Increment inspector port for spawned subcommands ([#991](https://github-redirect.dependabot.com/tj/commander.js/issues/991)) > * e.g. `node --inspect myCommand.js clone` > > Example Breaking Changes > ------------------------ > > The custom event for a negated option like `--no-foo` is `option:no-foo` (previously `option:foo`). > > ```js > program > ... (truncated)
Commits - [`4312302`](https://github.com/tj/commander.js/commit/43123022cae2f01cc4cffe3eb44b5275e857a6d2) 3.0.1 - [`7cf3ee7`](https://github.com/tj/commander.js/commit/7cf3ee7438c4d4de42272354428be0f5a5e9df9d) Add date for 3.0.1 - [`3286dc7`](https://github.com/tj/commander.js/commit/3286dc7c4bd481b517a987cc690d47b994369cef) Update CHANGELOG for 3.0.1 ([#1029](https://github-redirect.dependabot.com/tj/commander.js/issues/1029)) - [`4c34d0e`](https://github.com/tj/commander.js/commit/4c34d0e3c5ff00b92d0a1c591db5bad4569c0be3) Add definition for executableFile CommandOption ([#1028](https://github-redirect.dependabot.com/tj/commander.js/issues/1028)) - [`1298a79`](https://github.com/tj/commander.js/commit/1298a7947c00c42c8c021ac6d5fd1343ff320a7f) Merge pull request [#1026](https://github-redirect.dependabot.com/tj/commander.js/issues/1026) from abetomo/unify_readme_code_examples_with_const - [`e9c24fe`](https://github.com/tj/commander.js/commit/e9c24fefbcd80ccd796dab26c64d8117b35c825d) Unify readme code examples with 'const' - [`3b3d3b5`](https://github.com/tj/commander.js/commit/3b3d3b56e52b4e254a3a58572dc3f2688e114901) Change CHANGELOG format for next release, and add pending changes ([#1022](https://github-redirect.dependabot.com/tj/commander.js/issues/1022)) - [`c0e7651`](https://github.com/tj/commander.js/commit/c0e765177379d3d4efd16aa112d499820df23316) Merge pull request [#1021](https://github-redirect.dependabot.com/tj/commander.js/issues/1021) from shadowspawn/feature/update-dependencies - [`7d88c96`](https://github.com/tj/commander.js/commit/7d88c967fb6554835ef4617e1cb1f062ef0c4cbe) Update devDependencies - [`3e89cc9`](https://github.com/tj/commander.js/commit/3e89cc948638dde896ff3c66ab7ac4f258de1fea) Merge pull request [#1018](https://github-redirect.dependabot.com/tj/commander.js/issues/1018) from nazieb/develop - Additional commits viewable in [compare view](https://github.com/tj/commander.js/compare/v2.20.0...v3.0.1)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.
CLAassistant commented 5 years ago

CLA assistant check
Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

dependabot-preview[bot] commented 5 years ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.