Skip to content
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

chore(deps): bump the npm group across 1 directory with 7 updates #83

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 3, 2025

Bumps the npm group with 7 updates in the / directory:

Package From To
commander 12.1.0 13.0.0
nw 0.93.0 0.94.0
nw-builder 4.13.1 4.13.8
@types/chrome 0.0.284 0.0.289
@types/node 22.9.3 22.10.4
selenium-webdriver 4.26.0 4.27.0
vitest 2.1.5 2.1.8

Updates commander from 12.1.0 to 13.0.0

Release notes

Sourced from commander's releases.

v13.0.0

Added

  • support multiple calls to .parse() with default settings (#2299)
  • add .saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses (#2299)
  • style routines like styleTitle() to add color to help using .configureHelp() or Help subclass (#2251)
  • color related support in .configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor() (#2251)
  • Help property for minWidthToWrap (#2251)
  • Help methods for displayWidth(), boxWrap(), preformatted() et al (#2251)

Changed

  • Breaking: excess command-arguments cause an error by default, see migration tips (#2223)
  • Breaking: throw during Option construction for unsupported option flags, like multiple characters after single - (#2270)
  • Breaking: throw on multiple calls to .parse() if storeOptionsAsProperties: true (#2299)
  • TypeScript: include implicit this in parameters for action handler callback (#2197)

Deleted

  • Breaking: Help.wrap() refactored into formatItem() and boxWrap() (#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:

program.option('-p, --port <number>', 'port number');
program.action((options) => {
  console.log(program.args);
});

Now shows an error:

$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.

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.

program.option('-p, --port <number>', 'port number');
program.argument('[args...]', 'remote command and arguments'); // expecting zero or more arguments
program.action((args, options) => {
</tr></table> 

... (truncated)

Changelog

Sourced from commander's changelog.

[13.0.0] (2024-12-30)

Added

  • support multiple calls to .parse() with default settings (#2299)
  • add .saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses (#2299)
  • style routines like styleTitle() to add color to help using .configureHelp() or Help subclass (#2251)
  • color related support in .configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor() (#2251)
  • Help property for minWidthToWrap (#2251)
  • Help methods for displayWidth(), boxWrap(), preformatted() et al (#2251)

Changed

  • Breaking: excess command-arguments cause an error by default, see migration tips (#2223)
  • Breaking: throw during Option construction for unsupported option flags, like multiple characters after single - (#2270)
  • Breaking: throw on multiple calls to .parse() if storeOptionsAsProperties: true (#2299)
  • TypeScript: include implicit this in parameters for action handler callback (#2197)

Deleted

  • Breaking: Help.wrap() refactored into formatItem() and boxWrap() (#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:

program.option('-p, --port <number>', 'port number');
program.action((options) => {
  console.log(program.args);
});

Now shows an error:

$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.

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.

program.option('-p, --port <number>', 'port number');
program.argument('[args...]', 'remote command and arguments'); // expecting zero or more arguments
</tr></table> 

... (truncated)

Commits

Updates nw from 0.93.0 to 0.94.0

Commits

Updates nw-builder from 4.13.1 to 4.13.8

Release notes

Sourced from nw-builder's releases.

v4.13.8

4.13.8 (2025-01-01)

Bug Fixes

Chores

  • deps: bump the npm group across 1 directory with 11 updates (#1332) (b9b96ff)
  • docs: clarify CJS usage (d673459), closes #1331
  • docs: clarify non-usage of srcDir in CLi interface (1b61bd1), closes #1330
  • docs: fix CJS import usage example (5f323df), closes #1331
  • test: download latest NW.js version for Linux demo app (8c09908), closes #1324

v4.13.7

4.13.7 (2024-11-28)

Bug Fixes

  • get: use \s+ to split lines containing shasum info (64f5709), closes #1317

v4.13.6

4.13.6 (2024-11-26)

Bug Fixes

  • bld: fs.promises.copyFile -> fs.promises.cp (c1909c7)

v4.13.5

4.13.5 (2024-11-26)

Bug Fixes

  • util: validate windows options.app.* iff defined (8a65a6d)

v4.13.4

4.13.4 (2024-11-26)

Bug Fixes

  • util: validate options.app.company iff defined (a273e23)

v4.13.3

... (truncated)

Changelog

Sourced from nw-builder's changelog.

4.13.8 (2025-01-01)

Bug Fixes

Chores

  • deps: bump the npm group across 1 directory with 11 updates (#1332) (b9b96ff)
  • docs: clarify CJS usage (d673459), closes #1331
  • docs: clarify non-usage of srcDir in CLi interface (1b61bd1), closes #1330
  • docs: fix CJS import usage example (5f323df), closes #1331
  • test: download latest NW.js version for Linux demo app (8c09908), closes #1324

4.13.7 (2024-11-28)

Bug Fixes

  • get: use \s+ to split lines containing shasum info (64f5709), closes #1317

4.13.6 (2024-11-26)

Bug Fixes

  • bld: fs.promises.copyFile -> fs.promises.cp (c1909c7)

4.13.5 (2024-11-26)

Bug Fixes

  • util: validate windows options.app.* iff defined (8a65a6d)

4.13.4 (2024-11-26)

Bug Fixes

  • util: validate options.app.company iff defined (a273e23)

4.13.3 (2024-11-25)

Bug Fixes

  • bld: correct fs.promises.copyFile function call (63fd422)

... (truncated)

Commits
  • ce71ec8 chore(main): release 4.13.8 (#1325)
  • b9b96ff chore(deps): bump the npm group across 1 directory with 11 updates (#1332)
  • 5f323df chore(docs): fix CJS import usage example
  • 1b61bd1 chore(docs): clarify non-usage of srcDir in CLi interface
  • d673459 chore(docs): clarify CJS usage
  • 580668f fix(bld): await archiver.finalize (#1333)
  • 8c09908 chore(test): download latest NW.js version for Linux demo app
  • c047055 chore(main): release 4.13.7 (#1318)
  • 64f5709 fix(get): use \s+ to split lines containing shasum info
  • 5d84eea chore(main): release 4.13.6 (#1315)
  • Additional commits viewable in compare view

Updates @types/chrome from 0.0.284 to 0.0.289

Commits

Updates @types/node from 22.9.3 to 22.10.4

Commits

Updates selenium-webdriver from 4.26.0 to 4.27.0

Release notes

Sourced from selenium-webdriver's releases.

Selenium 4.27.0

Detailed Changelogs by Component

Java     |     Python     |     DotNet     |     Ruby     |     JavaScript     |     IEDriver

What's Changed

... (truncated)

Commits
  • d6e718d [build] Prepare for release of Selenium 4.27.0 (#14780)
  • 4b7d174 [rb] Downgrade steep to 1.5.2 to avoid issues on windows based pipelines (#14...
  • e2e9ac5 [py] Deprecate CDP methods on Firefox (#14787)
  • 99ee404 [java] search windows by name without recursion #14782
  • e9c09a2 [rb] Deprecate CDP methods on Firefox (#14763)
  • b1828bf [py]: replace dead battery imghdr with filetype (#14771)
  • e2b33c6 [dotnet] Address warnings for Firefox devtool depreciations (#14786)
  • 0954cca [dotnet] Modernize exception handling in tests via assert that throws (#14776)
  • 60e3171 [java] close the running Server in unittests if a retry is needed
  • 192b2d5 [grid] avoid starting a session which will be disposed after start
  • Additional commits viewable in compare view

Updates vitest from 2.1.5 to 2.1.8

Release notes

Sourced from vitest's releases.

v2.1.8

   🐞 Bug Fixes

    View changes on GitHub

v2.1.7

   🐞 Bug Fixes

  • Revert support for Vite 6  -  by @​sheremet-va (fbe5c)
    • This introduced some breaking changes (vitest-dev/vitest#6992). We will enable support for it later. In the meantime, you can still use pnpm.overrides or yarn resolutions to override the vite version in the vitest package - the APIs are compatible.
    View changes on GitHub

v2.1.6

🚀 Features

  • Support Vite 6
    View changes on GitHub
Commits

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.


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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [commander](https://github.com/tj/commander.js) | `12.1.0` | `13.0.0` |
| [nw](https://github.com/nwjs/npm-installer) | `0.93.0` | `0.94.0` |
| [nw-builder](https://github.com/nwutils/nw-builder) | `4.13.1` | `4.13.8` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.284` | `0.0.289` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.9.3` | `22.10.4` |
| [selenium-webdriver](https://github.com/SeleniumHQ/selenium) | `4.26.0` | `4.27.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.5` | `2.1.8` |



Updates `commander` from 12.1.0 to 13.0.0
- [Release notes](https://github.com/tj/commander.js/releases)
- [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md)
- [Commits](tj/commander.js@v12.1.0...v13.0.0)

Updates `nw` from 0.93.0 to 0.94.0
- [Changelog](https://github.com/nwjs/npm-installer/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nwjs/npm-installer/commits)

Updates `nw-builder` from 4.13.1 to 4.13.8
- [Release notes](https://github.com/nwutils/nw-builder/releases)
- [Changelog](https://github.com/nwutils/nw-builder/blob/main/CHANGELOG.md)
- [Commits](nwutils/nw-builder@v4.13.1...v4.13.8)

Updates `@types/chrome` from 0.0.284 to 0.0.289
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome)

Updates `@types/node` from 22.9.3 to 22.10.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `selenium-webdriver` from 4.26.0 to 4.27.0
- [Release notes](https://github.com/SeleniumHQ/selenium/releases)
- [Commits](SeleniumHQ/selenium@selenium-4.26.0...selenium-4.27.0)

Updates `vitest` from 2.1.5 to 2.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.8/packages/vitest)

---
updated-dependencies:
- dependency-name: commander
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: nw
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: nw-builder
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/chrome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: selenium-webdriver
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 3, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 6, 2025

Superseded by #84.

@dependabot dependabot bot closed this Jan 6, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-fbf2f2e97c branch January 6, 2025 00:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants