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

Bump the all-dependencies group in /cli with 24 updates #277

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2025

Bumps the all-dependencies group in /cli with 24 updates:

Package From To
@actions/core 1.10.1 1.11.1
ajv 8.16.0 8.17.1
commander 12.1.0 13.1.0
compare-versions 6.1.0 6.1.1
deepmerge-ts 7.0.3 7.1.5
express 4.19.2 4.21.2
inquirer 9.3.2 12.4.2
marked 13.0.1 15.0.7
portfinder 1.0.32 1.0.33
@trivago/prettier-plugin-sort-imports 4.3.0 5.2.2
@types/express 4.17.21 5.0.0
@types/node 20.14.9 22.13.8
@vercel/ncc 0.38.1 0.38.3
esbuild 0.22.0 0.25.0
eslint 9.6.0 9.21.0
eslint-config-prettier 9.1.0 10.0.2
eslint-plugin-github 5.0.1 5.1.8
eslint-plugin-jest 28.6.0 28.11.0
husky 9.0.11 9.1.7
lint-staged 15.2.7 15.4.3
nodemon 3.1.4 3.1.9
prettier 3.3.2 3.5.2
ts-jest 29.1.5 29.2.6
typescript 5.5.3 5.8.2

Updates @actions/core from 1.10.1 to 1.11.1

Changelog

Sourced from @​actions/core's changelog.

1.11.1

  • Fix uses of crypto.randomUUID on Node 18 and earlier #1842

1.11.0

  • Add platform info utilities #1551
  • Remove dependency on uuid package #1824
Commits

Updates ajv from 8.16.0 to 8.17.1

Release notes

Sourced from ajv's releases.

v8.17.1

What's Changed

Full Changelog: ajv-validator/ajv@v8.17.0...v8.17.1

Plus everything in 8.17.0 which failed to release

The only functional change is to switch from uri-js (which is no longer supported), to fast-uri. This is the second attempt and the team on fast-uri have been really helpful addressing the issues we found last time.

Revert "Revert fast-uri change (ajv-validator/ajv#2444)" by @​gurgunday in ajv-validator/ajv#2448 fix: ignore new eslint error for @​typescript-eslint/no-extraneous-class by @​jasoniangreen in ajv-validator/ajv#2455 docs: clarify behaviour of addVocabulary by @​jasoniangreen in ajv-validator/ajv#2454 docs: refactor to improve legibility by @​blottn in ajv-validator/ajv#2432 Fix grammatical typo in managing-schemas.md by @​wetneb in ajv-validator/ajv#2305 docs: Fix broken strict-mode link by @​alexanderjsx in ajv-validator/ajv#2459 feat: add test for encoded refs and bump fast-uri by @​jasoniangreen in ajv-validator/ajv#2449 fix: changes for @​typescript-eslint/array-type rule by @​jasoniangreen in ajv-validator/ajv#2467 fixes ajv-validator/ajv#2217 - clarify custom keyword naming by @​jasoniangreen in ajv-validator/ajv#2457

v8.17.0

What's Changed

The only functional change is to switch from uri-js (which is no longer supported), to fast-uri. This is the second attempt and the team on fast-uri have been really helpful addressing the issues we found last time.

New Contributors

Full Changelog: ajv-validator/ajv@v8.16.0...v8.17.0

Commits

Updates commander from 12.1.0 to 13.1.0

Release notes

Sourced from commander's releases.

v13.1.0

Added

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

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.

... (truncated)

Changelog

Sourced from commander's changelog.

[13.1.0] (2025-01-21)

Added

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

[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)
    • note: support for dual long option flags added in Commander 13.1
  • 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.

... (truncated)

Commits

Updates compare-versions from 6.1.0 to 6.1.1

Changelog

Sourced from compare-versions's changelog.

6.1.1 - 2024-07-13

  • Fix ESM module browser support by appending .js extension to imports.
Commits

Updates deepmerge-ts from 7.0.3 to 7.1.5

Release notes

Sourced from deepmerge-ts's releases.

v7.1.5

7.1.5 (2025-02-23)

Bug Fixes

  • improve type merging of nested optional properties (#530) (349fd14)

v7.1.4

7.1.4 (2025-01-23)

Bug Fixes

  • apply filtering to types when selecting a leaf node (#526) (6d85163), closes #524

v7.1.3

7.1.3 (2024-10-08)

v7.1.2

7.1.2 (2024-10-08)

Performance Improvements

v7.1.1

7.1.1 (2024-10-04)

Performance Improvements

  • add explicit return type to speed up types (8e1ff6d)

v7.1.0

7.1.0 (2024-07-20)

Features

Changelog

Sourced from deepmerge-ts's changelog.

7.1.5 (2025-02-23)

Bug Fixes

  • improve type merging of nested optional properties (#530) (349fd14)

7.1.4 (2025-01-23)

Bug Fixes

  • apply filtering to types when selecting a leaf node (#526) (6d85163), closes #524

7.1.3 (2024-10-08)

7.1.2 (2024-10-08)

Performance Improvements

7.1.1 (2024-10-04)

Performance Improvements

  • add explicit return type to speed up types (8e1ff6d)

7.1.0 (2024-07-20)

Features

Commits

Updates express from 4.19.2 to 4.21.2

Release notes

Sourced from express's releases.

4.21.2

What's Changed

Full Changelog: expressjs/express@4.21.1...4.21.2

4.21.1

What's Changed

Full Changelog: expressjs/express@4.21.0...4.21.1

4.21.0

What's Changed

New Contributors

Full Changelog: expressjs/express@4.20.0...4.21.0

4.20.0

What's Changed

Important

  • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect

Other Changes

... (truncated)

Changelog

Sourced from express's changelog.

4.21.2 / 2024-11-06

4.21.1 / 2024-10-08

4.21.0 / 2024-09-11

4.20.0 / 2024-09-10

  • deps: [email protected]
    • Remove link renderization in html while redirecting
  • deps: [email protected]
    • Remove link renderization in html while redirecting
  • deps: [email protected]
    • add depth option to customize the depth level in the parser
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect
  • deps: [email protected]
    • Adds support for named matching groups in the routes using a regex
    • Adds backtracking protection to parameters without regexes defined
  • deps: encodeurl@~2.0.0
    • Removes encoding of \, |, and ^ to align better with URL spec
  • Deprecate passing options.maxAge and options.expires to res.clearCookie
    • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
Commits
Maintainer changes

This version was pushed to npm by jonchurch, a new releaser for express since your current version.


Updates inquirer from 9.3.2 to 12.4.2

Release notes

Sourced from inquirer's releases.

[email protected]

  • Mark @types/node as an optional peer dependency across all packages.

[email protected]

  • Added new shortcut config to the checkbox prompt. Allows to customize or disable shortcut keys for select all and invert selection.

[email protected]

[email protected]

  • Checkbox prompt: re-added support for an array of default to be provided listing pre-checked checkboxes. This is a legacy interface brought back given this feature removal was an involuntary breaking change during the v12 release. The preferred interface is to provide the checked property to choices { value: 'bar', checked: true }.

[email protected]

  • @types/node is now only a peerDependencies. This reduces the install size of inquirer dramatically for folks not using Typescript. It's unlikely to break your builds if you used TS already, if it does run npm install --dev @types/node/yarn add --dev @types/node.

[email protected]

  • Now exports base utility Typescript types: import type { Question, DistinctQuestion, Answers } from 'inquirer';

You should use as follow to keep the inference working properly:

const questions = [
    { ... }
] as const satisfies Question[];
// If you're not using inquirer plugins, `Question` could alternatively be replaced by `DistinctQuestion` for stricter checks.

[email protected]

  • Fix #1555: when behaviour changed unexpectedly when returning a falsy value.

[email protected]

No technical breaking changes; but we changed the style of the question prefix once the answer is provided. Once a question is answer, the prefix becomes a tick mark (previously it was the same ? as when the prompt is idle.)

This is theme-able, and so can be overwritten to with theme.prefix.

[email protected]

  • Fix the filter option not working.
  • The signal: AbortSignal didn't work with class based prompts (OSS plugins.) Now it should work consistently with legacy style prompts.

[email protected]

  • Fix expand prompt being broken if a Separator was in the choices array.

[email protected]

  • Includes various fixes & new features to the different built-in prompts
  • Fix: Major rework of the Typescript types. Hoping to reduce the amount of finicky type errors (or wrong types) you might've ran into.

[email protected]

  • Fix broken backward compatibility issues with v9. Choice objects without value should default to use name as the value. Note: Please don't rely on this weird behaviour, but we fixed it since it was an unintended breaking change.

[email protected]

... (truncated)

Commits
  • 27c8859 Publish
  • c6ecd42 Chore: Bump dependencies
  • 2f94923 Chore: Remove Warp sponsorship
  • 7ce36cc Chore(deps-dev): Bump vitest in the npm_and_yarn group (#1671)
  • 8320f69 Chore(deps-dev): Bump @​vitest/coverage-v8 from 3.0.4 to 3.0.5 (#1666)
  • cadcc37 Chore(deps-dev): Bump @​types/node from 22.13.0 to 22.13.1 (#1670)
  • 95bd983 Chore(deps-dev): Bump eslint from 9.19.0 to 9.20.0 (#1669)
  • fb24d0a Chore(deps-dev): Bump typescript-eslint from 8.22.0 to 8.23.0 (#1668)
  • 979e8dd Chore(deps-dev): Bump globby from 14.0.2 to 14.1.0 (#1667)
  • b2709b8 Publish
  • Additional commits viewable in compare view

Updates marked from 13.0.1 to 15.0.7

Release notes

Sourced from marked's releases.

v15.0.7

15.0.7 (2025-02-10)

Bug Fixes

v15.0.6

15.0.6 (2025-01-06)

Bug Fixes

  • fix strikethrough inside strong and em to follow gfm (#3577) (7712a53)

v15.0.5

15.0.5 (2025-01-02)

Bug Fixes

  • allow strikethrough inside strong and em to follow gfm (#3569) (8a01658)

v15.0.4

15.0.4 (2024-12-15)

Bug Fixes

v15.0.3

15.0.3 (2024-11-29)

Bug Fixes

  • update punctuation regex syntax to fix babel mistaken transpile (#3547) (9b988c4)

v15.0.2

15.0.2 (2024-11-20)

Bug Fixes

  • update punctuation regex syntax for compatibility (#3540) (fd015f1)

v15.0.1

15.0.1 (2024-11-18)

... (truncated)

Commits
  • bf4952f chore: fix pkg repository (#3613)
  • 2b99692 chore(release): 15.0.7 [skip ci]
  • 9ae87de fix: fix table rendered as heading (#3612)
  • a1113e0 chore: Update dingus.js import json (#3611)
  • eb61090 chore(deps-dev): Bump rollup from 4.32.0 to 4.34.1 (#3606)
  • 00576d2 chore(deps-dev): Bump @​markedjs/eslint-config from 1.0.9 to 1.0.10 (#3605)
  • 570450c chore(deps-dev): Bump eslint from 9.18.0 to 9.19.0 (#3600)
  • 5fccfb2 chore(deps-dev): Bump rollup from 4.31.0 to 4.32.0 (#3601)
  • b114f21 chore(deps-dev): Bump undici from 6.19.7 to 6.21.1 (#3596)
  • 29cf001 chore(deps-dev): Bump rollup from 4.30.1 to 4.31.0 (#3595)
  • Additional commits viewable in compare view

Updates portfinder from 1.0.32 to 1.0.33

Release notes

Sourced from portfinder's releases.

v1.0.33

What's Changed

New Contributors

Full Changelog: http-party/node-portfinder@v1.0.32...v1.0.33

Commits
  • 1d8fb46 Release v1.0.33
  • ed9ad94 Merge pull request #145 from MasterOdin/feat-set-base-path
  • d2b81e6 Merge branch 'master' into feat-set-base-path
  • c87abaf Merge pull request #148 from MasterOdin/patch-1
  • b70f227 Merge pull request #146 from MasterOdin/feat-getPortsPromise
  • e137308 Merge pull request #152 from http-party/eriktrom-add-new-node-support-to-ci-2
  • 0bc7f72 Add CI support for node 20.x and 22.x
  • d708601 Merge pull request #151 from http-party/eriktrom-ci-yml-fix-mac-os
  • 0d2730b Update ci.yml to exclude macOS for old versions of node
  • 17107f4 Merge pull request #149 from Pwndrian/resolve-on-close
  • Additional commits viewable in compare view

Updates @trivago/prettier-plugin-sort-imports from 4.3.0 to 5.2.2

Release notes

Sourced from @​trivago/prettier-plugin-sort-imports's releases.

v5.2.2

Full Changelog: trivago/prettier-plugin-sort-imports@v5.2.1...v5.2.2

v5.2.1

What's Changed

New Contributors

Full Changelog: trivago/prettier-plugin-sort-imports@v5.2.0...v5.2.1

v5.2.0

What's Changed

Full Changelog: trivago/prettier-plugin-sort-imports@v5.1.0...v5.2.0

v5.1.0

What's Changed

Full Changelog: trivago/prettier-plugin-sort-imports@v5.0.1...v5.1.0

v5.0.1

Full Changelog: trivago/prettier-plugin-sort-imports@v5.0.0...v5.0.1

v5.0.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from @​trivago/prettier-plugin-sort-imports's changelog.

5.2.2

5.2.1

5.2.0

Bumps the all-dependencies group in /cli with 24 updates:

| Package | From | To |
| --- | --- | --- |
| [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `1.10.1` | `1.11.1` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.16.0` | `8.17.1` |
| [commander](https://github.com/tj/commander.js) | `12.1.0` | `13.1.0` |
| [compare-versions](https://github.com/omichelsen/compare-versions) | `6.1.0` | `6.1.1` |
| [deepmerge-ts](https://github.com/RebeccaStevens/deepmerge-ts) | `7.0.3` | `7.1.5` |
| [express](https://github.com/expressjs/express) | `4.19.2` | `4.21.2` |
| [inquirer](https://github.com/SBoudrias/Inquirer.js) | `9.3.2` | `12.4.2` |
| [marked](https://github.com/markedjs/marked) | `13.0.1` | `15.0.7` |
| [portfinder](https://github.com/http-party/node-portfinder) | `1.0.32` | `1.0.33` |
| [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) | `4.3.0` | `5.2.2` |
| [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express) | `4.17.21` | `5.0.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.14.9` | `22.13.8` |
| [@vercel/ncc](https://github.com/vercel/ncc) | `0.38.1` | `0.38.3` |
| [esbuild](https://github.com/evanw/esbuild) | `0.22.0` | `0.25.0` |
| [eslint](https://github.com/eslint/eslint) | `9.6.0` | `9.21.0` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.1.0` | `10.0.2` |
| [eslint-plugin-github](https://github.com/github/eslint-plugin-github) | `5.0.1` | `5.1.8` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.6.0` | `28.11.0` |
| [husky](https://github.com/typicode/husky) | `9.0.11` | `9.1.7` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.7` | `15.4.3` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.4` | `3.1.9` |
| [prettier](https://github.com/prettier/prettier) | `3.3.2` | `3.5.2` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.5` | `29.2.6` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.3` | `5.8.2` |


Updates `@actions/core` from 1.10.1 to 1.11.1
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

Updates `ajv` from 8.16.0 to 8.17.1
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.16.0...v8.17.1)

Updates `commander` from 12.1.0 to 13.1.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.1.0)

Updates `compare-versions` from 6.1.0 to 6.1.1
- [Changelog](https://github.com/omichelsen/compare-versions/blob/main/CHANGELOG.md)
- [Commits](omichelsen/compare-versions@v6.1.0...v6.1.1)

Updates `deepmerge-ts` from 7.0.3 to 7.1.5
- [Release notes](https://github.com/RebeccaStevens/deepmerge-ts/releases)
- [Changelog](https://github.com/RebeccaStevens/deepmerge-ts/blob/main/CHANGELOG.md)
- [Commits](RebeccaStevens/deepmerge-ts@v7.0.3...v7.1.5)

Updates `express` from 4.19.2 to 4.21.2
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/4.21.2/History.md)
- [Commits](expressjs/express@4.19.2...4.21.2)

Updates `inquirer` from 9.3.2 to 12.4.2
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/[email protected]@12.4.2)

Updates `marked` from 13.0.1 to 15.0.7
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)
- [Commits](markedjs/marked@v13.0.1...v15.0.7)

Updates `portfinder` from 1.0.32 to 1.0.33
- [Release notes](https://github.com/http-party/node-portfinder/releases)
- [Commits](http-party/node-portfinder@v1.0.32...v1.0.33)

Updates `@trivago/prettier-plugin-sort-imports` from 4.3.0 to 5.2.2
- [Release notes](https://github.com/trivago/prettier-plugin-sort-imports/releases)
- [Changelog](https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md)
- [Commits](trivago/prettier-plugin-sort-imports@v4.3.0...v5.2.2)

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

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

Updates `@vercel/ncc` from 0.38.1 to 0.38.3
- [Release notes](https://github.com/vercel/ncc/releases)
- [Commits](vercel/ncc@0.38.1...0.38.3)

Updates `esbuild` from 0.22.0 to 0.25.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.22.0...v0.25.0)

Updates `eslint` from 9.6.0 to 9.21.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.6.0...v9.21.0)

Updates `eslint-config-prettier` from 9.1.0 to 10.0.2
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.1.0...v10.0.2)

Updates `eslint-plugin-github` from 5.0.1 to 5.1.8
- [Release notes](https://github.com/github/eslint-plugin-github/releases)
- [Commits](github/eslint-plugin-github@v5.0.1...v5.1.8)

Updates `eslint-plugin-jest` from 28.6.0 to 28.11.0
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.6.0...v28.11.0)

Updates `husky` from 9.0.11 to 9.1.7
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.11...v9.1.7)

Updates `lint-staged` from 15.2.7 to 15.4.3
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.7...v15.4.3)

Updates `nodemon` from 3.1.4 to 3.1.9
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.1.4...v3.1.9)

Updates `prettier` from 3.3.2 to 3.5.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.2...3.5.2)

Updates `ts-jest` from 29.1.5 to 29.2.6
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.1.5...v29.2.6)

Updates `typescript` from 5.5.3 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.3...v5.8.2)

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ajv
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: commander
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: compare-versions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: deepmerge-ts
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: express
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: inquirer
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: marked
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: portfinder
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@trivago/prettier-plugin-sort-imports"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@types/express"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@vercel/ncc"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: eslint-plugin-github
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: eslint-plugin-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: nodemon
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

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 Mar 1, 2025
Copy link

vercel bot commented Mar 1, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 1, 2025 11:26pm

Copy link

stoat-app bot commented Mar 1, 2025

Easy and customizable dashboards for your build system. Learn more about Stoat ↗︎

Chart

Package Size
Runner Memory Usage

Job Runtime

job runtime chart

debug

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