Skip to content

chore(deps-dev): bump the root-dependencies group across 1 directory with 9 updates#5288

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/root-dependencies-3b08b66f84
Open

chore(deps-dev): bump the root-dependencies group across 1 directory with 9 updates#5288
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/root-dependencies-3b08b66f84

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Bumps the root-dependencies group with 9 updates in the / directory:

Package From To
@types/node 22.10.5 25.7.0
inquirer 8.2.6 13.4.3
only-allow 1.2.1 1.2.2
pre-commit 1.2.2 2.0.0
prettier 3.5.3 3.8.3
prettier-plugin-css-order 2.0.1 2.2.0
prettier-plugin-organize-imports 3.2.4 4.3.0
rimraf 6.0.1 6.1.3
tsx 4.20.3 4.21.0

Updates @types/node from 22.10.5 to 25.7.0

Commits

Updates inquirer from 8.2.6 to 13.4.3

Release notes

Sourced from inquirer's releases.

inquirer@13.4.3

  • Fix: Windows rendering bug
  • Fix: Preserve exact literal types in choices array (Typescript only)
  • Fix: Allow input default value to be of type undefined (Typescript only)
  • Bump dependencies

inquirer@13.4.2

  • Fix: some Windows terminals would freeze and not react to keypresses.

inquirer@13.4.1

  • Improve expand prompt type inferrence.

inquirer@13.4.0

  • Feat: Added a loading message while validating editor prompt input.
  • Type improvement: Better type inference with checkbox, search and expand prompts.
  • Fix: editor prompt not always properly handling editor path on windows.

inquirer@13.3.2

  • Fix broken 1.3.1 release process.

inquirer@13.2.5

What's Changed

New Contributors

Full Changelog: https://github.com/SBoudrias/Inquirer.js/compare/inquirer@13.2.2...inquirer@13.2.5

inquirer@13.2.4

... (truncated)

Commits
  • 113558c chore: Publish new release
  • f0ca377 chore: format everything with nano-staged
  • 5341ca1 chore: Bump yarn
  • cb7ffda ci: add Node.js 26 to test matrix (#2112)
  • 0401a5c fix(@​inquirer/input): allow explicit undefined for default option (#2111)
  • 40f87a8 fix: reset cursor to column 0 after prompt completes
  • b88c9a2 fix: satisfy eslint-plugin-n v18 rules
  • 697684a chore(deps-dev): Bump the linting group across 1 directory with 6 updates
  • 105c439 chore(deps-dev): Bump the build group with 3 updates (#2107)
  • a020d8a chore(deps-dev): Bump oxfmt in the formatting group (#2106)
  • Additional commits viewable in compare view

Updates only-allow from 1.2.1 to 1.2.2

Commits

Updates pre-commit from 1.2.2 to 2.0.0

Changelog

Sourced from pre-commit's changelog.

2.0.0

  • Breaking: requires Node.js 16.13 or newer. engines.node is now declared as ">=16.13.0" to match the minimum required by which@4.
  • Breaking: cross-spawn upgraded ^5^7.0.5, fixing the ReDoS vulnerability (GHSA-3xgq-45jj-v275). cross-spawn's spawnSync now returns status/signal/error instead of code; index.js was updated to match.
  • Breaking: which upgraded 1.2.x^4. The spawn-sync runtime dependency is dropped in favor of cross-spawn's built-in spawnSync.
  • Breaking: the generated .git/hooks/pre-commit wrapper is rewritten. It is now a small bash script that execs the package's hook file via an absolute path (single-line invocation instead of multi-line inline bash). Anyone parsing the wrapper file will need to adjust.
  • Breaking: hook file mode tightened from 0777 to 0755 (CIS 6.1.10).
  • Breaking: submodule installs now write to <super>/.git/modules/<sub>/hooks/pre-commit. The previous behavior silently walked up to the super-project's .git directory and installed there because the gitdir-parsing branch was unreachable. Linked worktrees (whose .git is also a file) are handled correctly too.
  • The hook now unsets GIT_LITERAL_PATHSPECS, so commits triggered from emacs/magit behave the same as on the command line (magit FAQ).
  • The hook now cds to the git root before resolving pre-commit via require.resolve, so Yarn Plug'n'Play and GUI git clients that invoke hooks with an unexpected cwd resolve dependencies correctly.
  • The hook is resilient to a missing pre-commit package: switching to a branch without node_modules (or removing the package) no longer blocks commits — it exits 0 with a warning instead of throwing a Node module-not-found stack trace.
  • Fixed handling of null close codes and signal-terminated scripts; the hook no longer treats a signal kill as success.
  • Hardened install.js gitdir parsing against missing matches and bad input; gitdir: paths are resolved relative to the directory containing the .git file (was incorrectly resolved against the package root).
  • install.js: typo fix ("backuped""backed up").
  • Dev tooling refresh: mocha 3 → 10, assume 1 → 2, dropped istanbul for nyc.

1.0.2

  • Check /usr/local/bin/node if we cannot find the binaries in the PATH.

1.0.1

  • Corrected the hook file so it doesn't attempt to run your index.js but ours instead.

1.0

  • Create symlinks instead of a copying the hook file so we can depend on modules.
  • More readable output messages.

... (truncated)

Commits

Updates prettier from 3.5.3 to 3.8.3

Release notes

Sourced from prettier's releases.

3.8.3

🔗 Changelog

3.8.2

  • Support Angular v21.2

🔗 Changelog

3.8.1

🔗 Changelog

3.8.0

  • Support Angular v21.1

diff

🔗 Release note "Prettier 3.8: Support for Angular v21.1"

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

... (truncated)

Changelog

Sourced from prettier's changelog.

3.8.3

diff

SCSS: Prevent trailing comma in if() function (#18471 by @​kovsu)

// Input
$value: if(sass(false): 1; else: -1);
// Prettier 3.8.2
$value: if(
sass(false): 1; else: -1,
);
// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

3.8.2

diff

Angular: Support Angular v21.2 (#18722, #19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@switch (foo) {
  @case (1) {}
  @default never;
}
<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&#64;" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->
@​switch (foo) {
@​case (1) {}
@​default never;
}

arrow function and instanceof expressions.

</tr></table> 

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for prettier since your current version.


Updates prettier-plugin-css-order from 2.0.1 to 2.2.0

Changelog

Sourced from prettier-plugin-css-order's changelog.

[2.2.0] - 2026-01-02

Added

[2.1.2] - 2024-04-01

Fixed

  • Bring back custom order feature introduced in 2.1.0.

[2.1.1] - 2024-03-26

Fixed

  • Revert addition of new option because it breaks usage without.

[2.1.0] - 2024-03-25

Added

  • New cssDeclarationSorterCustomOrder option to sort properties using an array in a custom order, thanks to @​SavaCool122! ✨
Commits
  • 6dce54f 2.2.0
  • 592303f Update dependencies to include Frakto sort order
  • c8a9991 Run npm pkg fix to fix repository url format
  • 360b0c7 Update actions and act on zizmor audit
  • 3ef6fbe Update css-declaration-sorter to version 7.3.0
  • 16fda3d Remove postcss dependency from usage install command
  • 0948dc8 2.1.2
  • cf4f56e Add back custom sort order option
  • b9f2b06 2.1.1
  • a18a121 Revert commit "Add custom order"
  • Additional commits viewable in compare view

Updates prettier-plugin-organize-imports from 3.2.4 to 4.3.0

Release notes

Sourced from prettier-plugin-organize-imports's releases.

4.3.0

What's Changed

Full Changelog: simonhaenisch/prettier-plugin-organize-imports@v4.2.0...v4.3.0

4.2.0

  • fix: use getDefaultCompilerOptions from vue-tsc instead of the deprecated resolveVueCompilerOptions (858cbbe)
  • feat: allow vue-tsc version 3 as peer dependency (c777cd8)
  • chore: update all dev dependencies (253d1bf)

4.1.0

Bumped the peer dependency range for vue-tsc to ^2.1.0 because there was a breaking change in its API. If you're using Vue support, upgrade both packages simultaneously, e.g. npm i -D prettier-plugin-organize-imports vue-tsc.

4.0.0

Version 4.0.0 upgrades/replaces the Volar packages used for Vue support, to use the latest vue-tsc package that's part of Volar 2. To migrate, you just have to remove @volar/vue-typescript and if you're using it, also @volar/vue-language-plugin-pug, and replace it with vue-tsc and @vue/language-plugin-pug respectively. There are no breaking changes other than this.

Thanks @​johnsoncodehk for contributing this 🎉

Commits
  • f354c0e 4.3.0
  • 98d053a chore: update dev dependencies
  • bc4d8fa feat: allow configuration of organizeImportsTypeOrder (#152)
  • ed9c19a docs: update changelog
  • 93df501 4.2.0
  • 253d1bf chore: update all dev dependencies
  • 858cbbe fix: use getDefaultCompilerOptions from vue-tsc instead of the deprecated `...
  • c777cd8 feat: allow vue-tsc 3 as peer dependency
  • e79ed64 chore(ci): remove check-types step (part of test now)
  • b7c15ad 4.1.0
  • Additional commits viewable in compare view

Updates rimraf from 6.0.1 to 6.1.3

Changelog

Sourced from rimraf's changelog.

6.1

  • Move to native fs/promises usage instead of promisifying manually.

6.0

  • Drop support for nodes before v20
  • Add --version to CLI

5.0

  • No default export, only named exports

4.4

  • Provide Dirent or Stats object as second argument to filter

4.3

  • Return boolean indicating whether the path was fully removed
  • Add filter option
  • bin: add --verbose, -v to print files as they are deleted
  • bin: add --no-verbose, -V to not print files as they are deleted
  • bin: add -i --interactive to be prompted on each deletion
  • bin: add -I --no-interactive to not be prompted on each deletion
  • 4.3.1 Fixed inappropriately following symbolic links to directories

v4.2

  • Brought back glob support, using the new and improved glob v9

v4.1

  • Improved hybrid module with no need to look at the .default dangly bit. .default preserved as a reference to rimraf for compatibility with anyone who came to rely on it in v4.0.
  • Accept and ignore -rf and -fr arguments to the bin.

v4.0

  • Remove glob dependency entirely. This library now only accepts actual file and folder names to delete.
  • Accept array of paths or single path.
  • Windows performance and reliability improved.
  • All strategies separated into explicitly exported methods.
  • Drop support for Node.js below version 14
  • rewrite in TypeScript

... (truncated)

Commits

Updates tsx from 4.20.3 to 4.21.0

Release notes

Sourced from tsx's releases.

v4.21.0

4.21.0 (2025-11-30)

Features


This release is also available on:

v4.20.6

4.20.6 (2025-09-26)

Bug Fixes

  • properly hide relaySignal from process.listeners() (#741) (710a424)

This release is also available on:

v4.20.5

4.20.5 (2025-08-24)

Bug Fixes

  • handle ambiguous packages (796053a)

This release is also available on:

v4.20.4

4.20.4 (2025-08-12)

Bug Fixes

... (truncated)

Commits
  • f6284cd ci: lock in semantic-release v24
  • 048fb62 feat: upgrade esbuild (#748)
  • 710a424 fix: properly hide relaySignal from process.listeners() (#741)
  • 20b91c4 docs: make sponsors dynamic
  • 08dcd59 chore: move vercel settings to root
  • e6d1a47 docs: obfuscate aside classname
  • de2719d style: remove unused variable
  • 13f2954 chore: upgrade docs deps
  • 0504525 chore: upgrade manten
  • 132fdd8 test: assert require.cache
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 11, 2026
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 11, 2026
@dependabot dependabot Bot changed the title chore(deps-dev): bump the root-dependencies group with 9 updates chore(deps-dev): bump the root-dependencies group across 1 directory with 9 updates May 11, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/root-dependencies-3b08b66f84 branch from 414954d to fb587cf Compare May 11, 2026 14:36
…with 9 updates

Bumps the root-dependencies group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.5` | `25.7.0` |
| [inquirer](https://github.com/SBoudrias/Inquirer.js) | `8.2.6` | `13.4.3` |
| [only-allow](https://github.com/pnpm/only-allow) | `1.2.1` | `1.2.2` |
| [pre-commit](https://github.com/observing/pre-commit) | `1.2.2` | `2.0.0` |
| [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.8.3` |
| [prettier-plugin-css-order](https://github.com/Siilwyn/prettier-plugin-css-order) | `2.0.1` | `2.2.0` |
| [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `3.2.4` | `4.3.0` |
| [rimraf](https://github.com/isaacs/rimraf) | `6.0.1` | `6.1.3` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.3` | `4.21.0` |



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

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

Updates `only-allow` from 1.2.1 to 1.2.2
- [Commits](https://github.com/pnpm/only-allow/commits)

Updates `pre-commit` from 1.2.2 to 2.0.0
- [Release notes](https://github.com/observing/pre-commit/releases)
- [Changelog](https://github.com/observing/pre-commit/blob/master/CHANGELOG.md)
- [Commits](https://github.com/observing/pre-commit/commits)

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

Updates `prettier-plugin-css-order` from 2.0.1 to 2.2.0
- [Changelog](https://github.com/Siilwyn/prettier-plugin-css-order/blob/main/changelog.md)
- [Commits](Siilwyn/prettier-plugin-css-order@v2.0.1...v2.2.0)

Updates `prettier-plugin-organize-imports` from 3.2.4 to 4.3.0
- [Release notes](https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases)
- [Changelog](https://github.com/simonhaenisch/prettier-plugin-organize-imports/blob/master/changelog.md)
- [Commits](simonhaenisch/prettier-plugin-organize-imports@v3.2.4...v4.3.0)

Updates `rimraf` from 6.0.1 to 6.1.3
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v6.0.1...v6.1.3)

Updates `tsx` from 4.20.3 to 4.21.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.3...v4.21.0)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.6.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: root-dependencies
- dependency-name: inquirer
  dependency-version: 13.4.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: root-dependencies
- dependency-name: only-allow
  dependency-version: 1.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: root-dependencies
- dependency-name: pre-commit
  dependency-version: 2.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: root-dependencies
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: root-dependencies
- dependency-name: prettier-plugin-css-order
  dependency-version: 2.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: root-dependencies
- dependency-name: prettier-plugin-organize-imports
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: root-dependencies
- dependency-name: rimraf
  dependency-version: 6.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: root-dependencies
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: root-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/root-dependencies-3b08b66f84 branch from fb587cf to 567f63e Compare May 13, 2026 09:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ci config dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code js root

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants