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

fix(deps): update all dependencies #3974

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Feb 10, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@types/chai (source) ^4.3.4 -> ^5.0.0 age adoption passing confidence devDependencies major
@types/express (source) ^4.17.17 -> ^5.0.0 age adoption passing confidence devDependencies major
@types/node (source) ^20.0.0 -> ^22.0.0 age adoption passing confidence devDependencies major 22.13.4 (+4)
chai (source) ^4.5.0 -> ^5.0.0 age adoption passing confidence devDependencies major 5.2.0
commander ^12.0.0 -> ^13.0.0 age adoption passing confidence dependencies major
eslint (source) ^8.57.0 -> ^9.0.0 age adoption passing confidence devDependencies major 9.20.1 (+1)
eslint (source) ^8.57.0 -> ^9.0.0 age adoption passing confidence dependencies major 9.20.1 (+1)
eslint-config-prettier ^9.0.0 -> ^10.0.0 age adoption passing confidence devDependencies major
eslint-plugin-n ^14.0.0 -> ^17.0.0 age adoption passing confidence devDependencies major
firebase-admin (source) ^12.0.0 -> ^13.0.0 age adoption passing confidence dependencies major 13.1.0
googleapis ^143.0.0 -> ^144.0.0 age adoption passing confidence dependencies major
got ^11.5.0 -> ^14.0.0 age adoption passing confidence devDependencies major 14.4.6
got ^11.5.0 -> ^14.0.0 age adoption passing confidence dependencies major 14.4.6
gts ^5.0.0 -> ^6.0.0 age adoption passing confidence devDependencies major
gts 5.3.0 -> 6.0.2 age adoption passing confidence devDependencies major
mathjs (source) ^13.0.0 -> ^14.0.0 age adoption passing confidence dependencies major 14.2.1
mocha (source) ^10.2.0 -> ^11.0.0 age adoption passing confidence devDependencies major
mocha (source) ^10.0.0 -> ^11.0.0 age adoption passing confidence devDependencies major
mocha (source) ^10.7.0 -> ^11.0.0 age adoption passing confidence devDependencies major
mocha (source) ^10.4.0 -> ^11.0.0 age adoption passing confidence devDependencies major
mocha (source) ^10.1.0 -> ^11.0.0 age adoption passing confidence devDependencies major
mocha (source) ^10.0.0 -> ^11.0.0 age adoption passing confidence dependencies major
nanoid ^3.3.7 -> ^5.0.0 age adoption passing confidence devDependencies major 5.1.0
node (source) 20.x -> 22.x age adoption passing confidence engines major v22.14.0
node (source) 20.x.x -> 22.x age adoption passing confidence engines major v22.14.0
node 20-alpine -> 22-alpine age adoption passing confidence final major 22.14.0
node 20-slim -> 22-slim age adoption passing confidence final major 22.14.0 (+1)
puppeteer (source) ^23.0.0 -> ^24.0.0 age adoption passing confidence devDependencies major 24.2.1 (+1)
sinon (source) ^18.0.0 -> ^19.0.0 age adoption passing confidence dependencies major
sinon (source) ^18.0.0 -> ^19.0.0 age adoption passing confidence devDependencies major
uuid ^10.0.0 -> ^11.0.0 age adoption passing confidence devDependencies major

Release Notes

chaijs/chai (chai)

v5.1.2

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.1.1...v5.1.2

v5.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: chaijs/chai@v5.1.0...v5.1.1

v5.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: chaijs/chai@v5.0.3...v5.1.0

v5.0.3

Compare Source

Fix bad v5.0.2 publish.

Full Changelog: chaijs/chai@v5.0.2...v5.0.3

v5.0.2

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.0.1...v5.0.2

v5.0.0

Compare Source

BREAKING CHANGES

  • Chai now only supports EcmaScript Modules (ESM). This means your tests will need to either have import {...} from 'chai' or import('chai'). require('chai') will cause failures in nodejs. If you're using ESM and seeing failures, it may be due to a bundler or transpiler which is incorrectly converting import statements into require calls.
  • Dropped support for Internet Explorer.
  • Dropped support for NodeJS < 18.
  • Minimum supported browsers are now Firefox 100, Safari 14.1, Chrome 100, Edge 100. Support for browsers prior to these versions is "best effort" (bug reports on older browsers will be assessed individually and may be marked as wontfix).

What's Changed

New Contributors

Full Changelog: chaijs/chai@4.3.1...v5.0.0

tj/commander.js (commander)

v13.1.0

Compare Source

Added
  • support a pair of long option flags to allow a memorable shortened flag, like .option('--ws, --workspace') ([#​2312])

v13.0.0

Compare Source

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) => {
  console.log(args);
});

Or you could suppress the error, useful for minimising changes in legacy code.

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

v9.19.0

Compare Source

v9.18.0

Compare Source

v9.17.0

Compare Source

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

v9.15.0

Compare Source

v9.14.0

Compare Source

v9.13.0

Compare Source

v9.12.0

Compare Source

Features

Bug Fixes

Documentation

  • ecbd522 docs: Mention code explorer (#​18978) (Nicholas C. Zakas)
  • 7ea4ecc docs: Clarifying the Use of Meta Objects (#​18697) (Amaresh S M)
  • d3e4b2e docs: Clarify how to exclude .js files (#​18976) (Milos Djermanovic)
  • 57232ff docs: Mention plugin-kit in language docs (#​18973) (Nicholas C. Zakas)
  • b80ed00 docs: Update README (GitHub Actions Bot)
  • cb69ab3 docs: Update README (GitHub Actions Bot)
  • 7fb0d95 docs: Update README (GitHub Actions Bot)
  • 493348a docs: Update README (GitHub Actions Bot)
  • 87a582c docs: fix typo in id-match rule (#​18944) (Jay)

Chores

v9.11.1

Compare Source

v9.11.0

Compare Source

Features

  • ec30c73 feat: add "eslint/universal" to export Linter (#​18883) (唯然)
  • c591da6 feat: Add language to types (#​18917) (Nicholas C. Zakas)
  • 492eb8f feat: limit the name given to ImportSpecifier in id-length (#​18861) (Tanuj Kanti)
  • 19c6856 feat: Add no-useless-constructor suggestion (#​18799) (Jordan Thomson)
  • a48f8c2 feat: add type FormatterFunction, update LoadedFormatter (#​18872) (Francesco Trotta)

Bug Fixes

  • 5e5f39b fix: add missing types for no-restricted-exports rule (#​18914) (Kristóf Poduszló)
  • 8f630eb fix: add missing types for no-param-reassign options (#​18906) (Kristóf Poduszló)
  • d715781 fix: add missing types for no-extra-boolean-cast options (#​18902) (Kristóf Poduszló)
  • 2de5742 fix: add missing types for no-misleading-character-class options (#​18905) (Kristóf Poduszló)
  • c153084 fix: add missing types for no-implicit-coercion options (#​18903) (Kristóf Poduszló)
  • fa11b2e fix: add missing types for no-empty-function options (#​18901) (Kristóf Poduszló)
  • a0deed1 fix: add missing types for camelcase options (#​18897) (Kristóf Poduszló)

Documentation

  • e4e5709 docs: correct prefer-object-has-own type definition comment (#​18924) (Nitin Kumar)
  • 91cbd18 docs: add unicode abbreviations in no-irregular-whitespace rule (#​18894) (Alix Royere)
  • 59cfc0f docs: clarify resultsMeta in LoadedFormatter type (#​18881) (Milos Djermanovic)
  • adcc50d docs: Update README (GitHub Actions Bot)
  • 4edac1a docs: Update README (GitHub Actions Bot)

Build Related

  • 959d360 build: Support updates to previous major versions (#​18871) (Milos Djermanovic)

Chores

v9.10.0

Compare Source

[v9.9.1](https://redirect.github.com/eslint/esl


Configuration

📅 Schedule: Branch creation - "after 11am every 3 weeks on Monday" (UTC), 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested review from a team as code owners February 10, 2025 11:12
@dpebot
Copy link
Contributor

dpebot commented Feb 10, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. actions:force-run labels Feb 10, 2025
@product-auto-label product-auto-label bot added samples Issues that are directly related to samples. api: aiplatform Issues related to the AI Platform API. api: appengine Issues related to the App Engine Admin API API. api: auth api: automl Issues related to the AutoML API. labels Feb 10, 2025
@product-auto-label product-auto-label bot added api: batch Issues related to the Batch API. api: cloudasset Issues related to the Cloud Asset Inventory API. api: cloudsql Issues related to the Cloud SQL for MySQL API. api: language Issues related to the Cloud Natural Language API API. asset: pattern DEE Asset tagging - Pattern. labels Feb 10, 2025
@dpebot
Copy link
Contributor

dpebot commented Feb 14, 2025

/gcbrun

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
actions:force-run api: aiplatform Issues related to the AI Platform API. api: appengine Issues related to the App Engine Admin API API. api: auth api: automl Issues related to the AutoML API. api: batch Issues related to the Batch API. api: cloudasset Issues related to the Cloud Asset Inventory API. api: cloudsql Issues related to the Cloud SQL for MySQL API. api: language Issues related to the Cloud Natural Language API API. asset: pattern DEE Asset tagging - Pattern. kokoro:force-run Add this label to force Kokoro to re-run the tests. major samples Issues that are directly related to samples.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants