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 8 updates #91

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
commander 12.1.0 13.0.0
nw 0.93.0 0.94.1
nw-builder 4.13.1 4.13.8
@types/chrome 0.0.284 0.0.297
@types/node 22.9.3 22.10.7
selenium-webdriver 4.26.0 4.27.0
@types/selenium-webdriver 4.1.27 4.1.28
vitest 2.1.5 3.0.1

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.1

Changelog

Sourced from nw's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

Unreleased

[0.94.1-1]

Added

  • Set allowExcessArguments to true in commander 6bcbfec

[0.91.0]

Changed

  • Move tests to seperate directory bd3fabb

Removed

  • Uninstall patch-package package 5b6cc97

[0.90.0-1]

Added

[0.88.0-5]

Changed

  • Coerce version prerelease type to string 992aa86

[0.88.0-4]

Changed

  • Detect build flavor during run mode. b4dbb64

[0.88.0-3]

Added

  • Get file path to NW.js directory. 5b37b6d

[0.88.0-2]

... (truncated)

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.297

Commits

Updates @types/node from 22.9.3 to 22.10.7

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 @types/selenium-webdriver from 4.1.27 to 4.1.28

Commits

Updates vitest from 2.1.5 to 3.0.1

Release notes

Sourced from vitest's releases.

v3.0.1

   🐞 Bug Fixes

    View changes on GitHub

v3.0.0

Vitest 3 is here! There are a few breaking changes, but we expect the migration to be smooth. This release page lists all changes made to the project during the beta. For the migration guide, please refer to the documentation.

   🚨 Breaking Changes

   🚀 Features

... (truncated)

Commits
  • 56c5018 chore: release v3.0.1
  • 755ecdf Revert "fix: re-apply default conditions if using vite 6 or later (#7071)" (#...
  • 537fa5e fix(deps): update all non-major dependencies (#7147)
  • 01600e0 chore: release v3.0.0
  • 84287fc fix: re-apply default conditions if using vite 6 or later (#7071)
  • b526896 fix(coverage)!: always exclude test files (#7254)
  • 1c2b210 fix(api): don't report events during vitest list (#7257)
  • 80ce0e1 feat(api): add onBrowserInit event (#7255)
  • 003c0be fix(watch): don't indicate exit when no matching files (#7246)
  • 1e7915b fix(browser): add instance validation to resolve coverage error (#7231)
  • Additional commits viewable in compare view

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 8 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.1` |
| [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.297` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.9.3` | `22.10.7` |
| [selenium-webdriver](https://github.com/SeleniumHQ/selenium) | `4.26.0` | `4.27.0` |
| [@types/selenium-webdriver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/selenium-webdriver) | `4.1.27` | `4.1.28` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.5` | `3.0.1` |



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.1
- [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.297
- [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.7
- [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 `@types/selenium-webdriver` from 4.1.27 to 4.1.28
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/selenium-webdriver)

Updates `vitest` from 2.1.5 to 3.0.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.1/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: "@types/selenium-webdriver"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-major
  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 17, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 20, 2025

Superseded by #92.

@dependabot dependabot bot closed this Jan 20, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-d922c9d0e6 branch January 20, 2025 00:14
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