Skip to content

build: bump the dependencies group across 1 directory with 6 updates#52

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-dd8f6d7a02
Open

build: bump the dependencies group across 1 directory with 6 updates#52
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-dd8f6d7a02

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps the dependencies group with 6 updates in the / directory:

Package From To
@biomejs/biome 2.3.13 2.4.10
@types/node 25.2.0 25.5.0
@vercel/node 5.5.28 5.6.24
psn-api 2.17.0 2.18.0
typescript 5.9.3 6.0.2
vercel 50.9.6 50.38.2

Updates @biomejs/biome from 2.3.13 to 2.4.10

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.10

2.4.10

Patch Changes

  • #8838 f3a6a6b Thanks @​baeseokjae! - Added new lint nursery rule noImpliedEval.

    The rule detects implied eval() usage through functions like setTimeout, setInterval, and setImmediate when called with string arguments.

    // Invalid
    setTimeout("alert('Hello');", 100);
    // Valid
    setTimeout(() => alert("Hello"), 100);

  • #9320 93c3b6c Thanks @​taberoajorge! - Fixed #7664: noUnusedVariables no longer reports false positives for TypeScript namespace declarations that participate in declaration merging with an exported or used value declaration (const, function, or class) of the same name. The reverse direction is also handled: a value declaration merged with an exported namespace is no longer flagged.

  • #9630 1dd4a56 Thanks @​raashish1601! - Fixed #9629: noNegationElse now keeps ternary branch comments attached to the correct branch when applying its fixer.

  • #9216 04243b0 Thanks @​FrederickStempfle! - Fixed #9061: noProcessEnv now also detects process.env when process is imported from the "process" or "node:process" modules.

    Previously, only the global process object was flagged:

    import process from "node:process";
    // This was not flagged, but now it is:
    console.log(process.env.NODE_ENV);
  • #9692 61b7ec5 Thanks @​mkosei! - Fixed Svelte #each destructuring parsing and formatting for nested patterns such as [key, { a, b }].

  • #9627 06a0f35 Thanks @​ematipico! - Fixed #191: Improved the performance of how the Biome Language Server pulls code actions and diagnostics.

    Before, code actions were pulled and computed all at once in one request. This approach couldn't work in big files, and caused Biome to stale and have CPU usage spikes up to 100%.

    Now, code actions are pulled and computed lazily, and Biome won't choke anymore in big files.

  • #9643 5bfee36 Thanks @​dyc3! - Fixed #9347: useVueValidVBind no longer reports valid object bindings like v-bind="props".

  • #9627 06a0f35 Thanks @​ematipico! - Fixed assist diagnostics being invisible when using --diagnostic-level=error. Enforced assist violations (e.g. useSortedKeys) were filtered out before being promoted to errors, causing biome check to incorrectly return success.

  • #9695 9856a87 Thanks @​dyc3! - Added the new nursery rule noUnsafePlusOperands, which reports + and += operations that use object-like, symbol, unknown, or never operands, or that mix number with bigint.

  • #9627 06a0f35 Thanks @​ematipico! - Fixed duplicate parse errors in check and ci output. When a file had syntax errors, the same parse error was printed twice and the error count was inflated.

  • #9627 06a0f35 Thanks @​ematipico! - Improved the performance of the commands lint and check when they are called with --write.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.10

Patch Changes

  • #8838 f3a6a6b Thanks @​baeseokjae! - Added new lint nursery rule noImpliedEval.

    The rule detects implied eval() usage through functions like setTimeout, setInterval, and setImmediate when called with string arguments.

    // Invalid
    setTimeout("alert('Hello');", 100);
    // Valid
    setTimeout(() => alert("Hello"), 100);

  • #9320 93c3b6c Thanks @​taberoajorge! - Fixed #7664: noUnusedVariables no longer reports false positives for TypeScript namespace declarations that participate in declaration merging with an exported or used value declaration (const, function, or class) of the same name. The reverse direction is also handled: a value declaration merged with an exported namespace is no longer flagged.

  • #9630 1dd4a56 Thanks @​raashish1601! - Fixed #9629: noNegationElse now keeps ternary branch comments attached to the correct branch when applying its fixer.

  • #9216 04243b0 Thanks @​FrederickStempfle! - Fixed #9061: noProcessEnv now also detects process.env when process is imported from the "process" or "node:process" modules.

    Previously, only the global process object was flagged:

    import process from "node:process";
    // This was not flagged, but now it is:
    console.log(process.env.NODE_ENV);
  • #9692 61b7ec5 Thanks @​mkosei! - Fixed Svelte #each destructuring parsing and formatting for nested patterns such as [key, { a, b }].

  • #9627 06a0f35 Thanks @​ematipico! - Fixed #191: Improved the performance of how the Biome Language Server pulls code actions and diagnostics.

    Before, code actions were pulled and computed all at once in one request. This approach couldn't work in big files, and caused Biome to stale and have CPU usage spikes up to 100%.

    Now, code actions are pulled and computed lazily, and Biome won't choke anymore in big files.

  • #9643 5bfee36 Thanks @​dyc3! - Fixed #9347: useVueValidVBind no longer reports valid object bindings like v-bind="props".

  • #9627 06a0f35 Thanks @​ematipico! - Fixed assist diagnostics being invisible when using --diagnostic-level=error. Enforced assist violations (e.g. useSortedKeys) were filtered out before being promoted to errors, causing biome check to incorrectly return success.

  • #9695 9856a87 Thanks @​dyc3! - Added the new nursery rule noUnsafePlusOperands, which reports + and += operations that use object-like, symbol, unknown, or never operands, or that mix number with bigint.

  • #9627 06a0f35 Thanks @​ematipico! - Fixed duplicate parse errors in check and ci output. When a file had syntax errors, the same parse error was printed twice and the error count was inflated.

  • #9627 06a0f35 Thanks @​ematipico! - Improved the performance of the commands lint and check when they are called with --write.

  • #9627 06a0f35 Thanks @​ematipico! - Fixed --diagnostic-level not fully filtering diagnostics. Setting --diagnostic-level=error now correctly excludes warnings and infos from both the output and the summary counts.

... (truncated)

Commits

Updates @types/node from 25.2.0 to 25.5.0

Commits

Updates @vercel/node from 5.5.28 to 5.6.24

Release notes

Sourced from @​vercel/node's releases.

@​vercel/node@​5.6.24

Patch Changes

@​vercel/node@​5.6.23

Patch Changes

@​vercel/node@​5.6.22

Patch Changes

@​vercel/node@​5.6.21

Patch Changes

@​vercel/node@​5.6.20

Patch Changes

Changelog

Sourced from @​vercel/node's changelog.

5.6.24

Patch Changes

5.6.23

Patch Changes

5.6.22

Patch Changes

5.6.21

Patch Changes

5.6.20

Patch Changes

5.6.19

Patch Changes

5.6.18

Patch Changes

  • Update @​vercel/nft to 1.4.0 across packages (#15626)

... (truncated)

Commits

Updates psn-api from 2.17.0 to 2.18.0

Release notes

Sourced from psn-api's releases.

v2.18.0

2.18.0 (2026-03-04)

Features

  • user: add getUserBlockedAccountIds function to retrieve blocked users ids (#232) (4f01eba)
Commits
  • 938abf9 ci: fix more stuff
  • 2da815e ci: use trusted publishing
  • 4f01eba feat(user): add getUserBlockedAccountIds function to retrieve blocked users i...
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for psn-api since your current version.


Updates typescript from 5.9.3 to 6.0.2

Release notes

Sourced from typescript's releases.

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits

Updates vercel from 50.9.6 to 50.38.2

Release notes

Sourced from vercel's releases.

vercel@50.38.2

Patch Changes

  • Start user fetch earlier (#15760)

  • Fix update checker running after vercel build on Vercel by reading env vars before CLI internals can unset them (#15804)

  • Updated dependencies [c98a02d87276f41b1580b78d37f9f671fd9d1f12]:

    • @​vercel/build-utils@​13.12.2
    • @​vercel/backends@​0.0.55
    • @​vercel/elysia@​0.1.57
    • @​vercel/express@​0.1.67
    • @​vercel/fastify@​0.1.60
    • @​vercel/go@​3.4.7
    • @​vercel/h3@​0.1.66
    • @​vercel/hono@​0.2.60
    • @​vercel/hydrogen@​1.3.6
    • @​vercel/koa@​0.1.40
    • @​vercel/nestjs@​0.2.61
    • @​vercel/next@​4.16.4
    • @​vercel/node@​5.6.24
    • @​vercel/python@​6.29.0
    • @​vercel/redwood@​2.4.12
    • @​vercel/remix-builder@​5.7.2
    • @​vercel/ruby@​2.3.2
    • @​vercel/rust@​1.0.6
    • @​vercel/static-build@​2.9.8

vercel@50.38.1

Patch Changes

  • Improve vercel microfrontends create-group non-interactive behavior by allowing free-tier-safe flows with explicit flags, while still blocking non-interactive execution when the action would impact billing. Add support for repeatable --project-route=<project>=<route> to configure non-default project routes without prompts. (#15785)

vercel@50.38.0

Minor Changes

  • Simplify and streamline python builder logic (#15696)

  • [services] Check vercel.ts also in hasExperimentalServicesConfig (#15736)

  • Fix django static file serving for manifest storage backends. (#15709)

Patch Changes

  • Add more diagnostic trace spans to CLI build command (#15759)

  • Emit Claude Code plugin hint to stderr when running inside Claude Code (#15728)

  • Add routing rules reference to the Vercel CLI skill (#15774)

... (truncated)

Changelog

Sourced from vercel's changelog.

50.38.2

Patch Changes

  • Start user fetch earlier (#15760)

  • Fix update checker running after vercel build on Vercel by reading env vars before CLI internals can unset them (#15804)

  • Updated dependencies [c98a02d87276f41b1580b78d37f9f671fd9d1f12]:

    • @​vercel/build-utils@​13.12.2
    • @​vercel/backends@​0.0.55
    • @​vercel/elysia@​0.1.57
    • @​vercel/express@​0.1.67
    • @​vercel/fastify@​0.1.60
    • @​vercel/go@​3.4.7
    • @​vercel/h3@​0.1.66
    • @​vercel/hono@​0.2.60
    • @​vercel/hydrogen@​1.3.6
    • @​vercel/koa@​0.1.40
    • @​vercel/nestjs@​0.2.61
    • @​vercel/next@​4.16.4
    • @​vercel/node@​5.6.24
    • @​vercel/python@​6.29.0
    • @​vercel/redwood@​2.4.12
    • @​vercel/remix-builder@​5.7.2
    • @​vercel/ruby@​2.3.2
    • @​vercel/rust@​1.0.6
    • @​vercel/static-build@​2.9.8

50.38.1

Patch Changes

  • Improve vercel microfrontends create-group non-interactive behavior by allowing free-tier-safe flows with explicit flags, while still blocking non-interactive execution when the action would impact billing. Add support for repeatable --project-route=<project>=<route> to configure non-default project routes without prompts. (#15785)

50.38.0

Minor Changes

  • Simplify and streamline python builder logic (#15696)

  • [services] Check vercel.ts also in hasExperimentalServicesConfig (#15736)

  • Fix django static file serving for manifest storage backends. (#15709)

Patch Changes

  • Add more diagnostic trace spans to CLI build command (#15759)

  • Emit Claude Code plugin hint to stderr when running inside Claude Code (#15728)

... (truncated)

Commits
  • 789f5e2 Version Packages (#15803)
  • 26156e7 [cli] Read shouldCheckForUpdates env vars at startup (#15804)
  • 2967e05 [cli] Start getUser call sooner to speed up CLI commands (#15760)
  • 7df9c4a Fix flaky vercel-json-configuration-overrides test (#15797)
  • 17f5008 Version Packages (#15798)
  • 2a0c964 [microfrontends] allow non interactive creation of MFE group if within free t...
  • 08f9905 Version Packages (#15742)
  • 8a9f4c2 [test] Remove storybook detect-projects test for deleted example (#15796)
  • 0671d2d [cli] Add --group-by project/region to vc usage (#15777)
  • 463921d Suppress warning message about implicit public/**/* builders not matching (...
  • 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 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 dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.13` | `2.4.10` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.2.0` | `25.5.0` |
| [@vercel/node](https://github.com/vercel/vercel/tree/HEAD/packages/node) | `5.5.28` | `5.6.24` |
| [psn-api](https://github.com/achievements-app/psn-api) | `2.17.0` | `2.18.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` |
| [vercel](https://github.com/vercel/vercel/tree/HEAD/packages/cli) | `50.9.6` | `50.38.2` |



Updates `@biomejs/biome` from 2.3.13 to 2.4.10
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.10/packages/@biomejs/biome)

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

Updates `@vercel/node` from 5.5.28 to 5.6.24
- [Release notes](https://github.com/vercel/vercel/releases)
- [Changelog](https://github.com/vercel/vercel/blob/main/packages/node/CHANGELOG.md)
- [Commits](https://github.com/vercel/vercel/commits/@vercel/node@5.6.24/packages/node)

Updates `psn-api` from 2.17.0 to 2.18.0
- [Release notes](https://github.com/achievements-app/psn-api/releases)
- [Commits](achievements-app/psn-api@v2.17.0...v2.18.0)

Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `vercel` from 50.9.6 to 50.38.2
- [Release notes](https://github.com/vercel/vercel/releases)
- [Changelog](https://github.com/vercel/vercel/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/vercel/vercel/commits/vercel@50.38.2/packages/cli)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vercel/node"
  dependency-version: 5.6.24
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: psn-api
  dependency-version: 2.18.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: vercel
  dependency-version: 50.38.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 1, 2026
@dependabot dependabot bot requested a review from sutne as a code owner April 1, 2026 21:09
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 1, 2026
@vercel
Copy link
Copy Markdown

vercel bot commented Apr 1, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
personal-api Ready Ready Preview, Comment Apr 1, 2026 9:10pm

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