Skip to content

build(deps-dev): bump @types/node from 20.19.37 to 25.5.0#92

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/types/node-25.5.0
Open

build(deps-dev): bump @types/node from 20.19.37 to 25.5.0#92
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/types/node-25.5.0

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 25, 2026

Bumps @types/node from 20.19.37 to 25.5.0.

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by cubic

Upgrade @types/node to 25.5.0 across the repo to use the latest Node.js type definitions. Dev-only change with no runtime impact; updated pnpm-lock.yaml accordingly.

Written for commit 2d792e2. Summary will update on new commits.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 25, 2026
@vercel
Copy link

vercel bot commented Mar 25, 2026

Deployment failed with the following error:

Resource is limited - try again in 24 hours (more than 100, code: "api-deployments-free-per-day").

Learn More: https://vercel.com/mediabubble?upgradeToPro=build-rate-limit

Copy link

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3 issues found across 7 files

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name="apps/client-dashboard/package.json">

<violation number="1" location="apps/client-dashboard/package.json:74">
P2: Keep `@types/node` aligned with the minimum supported Node runtime; bumping to Node 25 typings makes Node 25-only APIs typecheck in a package that still claims Node 20+ support.</violation>
</file>

<file name="apps/admin-dashboard/package.json">

<violation number="1" location="apps/admin-dashboard/package.json:46">
P2: This type bump no longer matches the app's minimum supported runtime. `@types/node@25` exposes Node 25-only APIs, so TypeScript can stop catching code that would fail on Node 20.</violation>
</file>

<file name="packages/db/package.json">

<violation number="1" location="packages/db/package.json:42">
P2: Keep `@types/node` on the supported runtime major. Using Node 25 type definitions in a package that supports Node 20+ can let newer Node APIs typecheck even though they are unavailable on supported runtimes.</violation>
</file>

Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.

"@types/jest": "^30.0.0",
"@types/negotiator": "^0.6.4",
"@types/node": "^20.19.33",
"@types/node": "^25.5.0",
Copy link

@cubic-dev-ai cubic-dev-ai bot Mar 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Keep @types/node aligned with the minimum supported Node runtime; bumping to Node 25 typings makes Node 25-only APIs typecheck in a package that still claims Node 20+ support.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/client-dashboard/package.json, line 74:

<comment>Keep `@types/node` aligned with the minimum supported Node runtime; bumping to Node 25 typings makes Node 25-only APIs typecheck in a package that still claims Node 20+ support.</comment>

<file context>
@@ -71,7 +71,7 @@
     "@types/jest": "^30.0.0",
     "@types/negotiator": "^0.6.4",
-    "@types/node": "^20.19.33",
+    "@types/node": "^25.5.0",
     "@types/nodemailer": "^6.4.23",
     "@types/qrcode": "^1.5.6",
</file context>
Suggested change
"@types/node": "^25.5.0",
"@types/node": "^20.19.33",
Fix with Cubic

"@types/jest": "^30.0.0",
"@types/negotiator": "^0.6.4",
"@types/node": "^20.19.33",
"@types/node": "^25.5.0",
Copy link

@cubic-dev-ai cubic-dev-ai bot Mar 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: This type bump no longer matches the app's minimum supported runtime. @types/node@25 exposes Node 25-only APIs, so TypeScript can stop catching code that would fail on Node 20.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/admin-dashboard/package.json, line 46:

<comment>This type bump no longer matches the app's minimum supported runtime. `@types/node@25` exposes Node 25-only APIs, so TypeScript can stop catching code that would fail on Node 20.</comment>

<file context>
@@ -43,7 +43,7 @@
     "@types/jest": "^30.0.0",
     "@types/negotiator": "^0.6.4",
-    "@types/node": "^20.19.33",
+    "@types/node": "^25.5.0",
     "@types/react": "^18.3.28",
     "@types/react-dom": "^18.3.7",
</file context>
Suggested change
"@types/node": "^25.5.0",
"@types/node": "^20.19.33",
Fix with Cubic

"@gate-access/config": "workspace:*",
"@types/faker": "^5.5.3",
"@types/node": "^20.19.33",
"@types/node": "^25.5.0",
Copy link

@cubic-dev-ai cubic-dev-ai bot Mar 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Keep @types/node on the supported runtime major. Using Node 25 type definitions in a package that supports Node 20+ can let newer Node APIs typecheck even though they are unavailable on supported runtimes.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At packages/db/package.json, line 42:

<comment>Keep `@types/node` on the supported runtime major. Using Node 25 type definitions in a package that supports Node 20+ can let newer Node APIs typecheck even though they are unavailable on supported runtimes.</comment>

<file context>
@@ -39,7 +39,7 @@
     "@gate-access/config": "workspace:*",
     "@types/faker": "^5.5.3",
-    "@types/node": "^20.19.33",
+    "@types/node": "^25.5.0",
     "@types/pg": "^8.18.0",
     "faker": "^5.5.3",
</file context>
Suggested change
"@types/node": "^25.5.0",
"@types/node": "^20.19.33",
Fix with Cubic

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/types/node-25.5.0 branch from 2d792e2 to e1faf1b Compare March 26, 2026 01:06
@vercel
Copy link

vercel bot commented Mar 26, 2026

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

Project Deployment Actions Updated (UTC)
gateflow-admin-dashboard Error Error Mar 26, 2026 11:01am
gateflow-client-dashboard Ready Ready Preview, Comment Mar 26, 2026 11:01am
gateflow-marketing Ready Ready Preview, Comment Mar 26, 2026 11:01am
gateflow-resident-portal Ready Ready Preview, Comment Mar 26, 2026 11:01am

@github-actions
Copy link

github-actions bot commented Mar 26, 2026

📦 Affected Packages

  • @gate-access/db (Prisma + schema)
  • admin-dashboard (Next.js app)
  • client-dashboard (Next.js app)
  • marketing (Next.js site)

Diff: +3204 / -9214 lines

Auto-generated by pr-labels.yml

@github-actions github-actions bot added the size/S Small change (11–50 lines) label Mar 26, 2026
@github-actions
Copy link

github-actions bot commented Mar 26, 2026

Lighthouse CI — Marketing Site

Category 📱 Mobile 🖥 Desktop
Performance 🔴 64/100 🔴 68/100
Accessibility 🟡 94/100 🟡 94/100
Best Practices 🟢 96/100 🟢 96/100
SEO 🟡 92/100 🟡 92/100

Core Web Vitals (Mobile)
LCP: 15846ms | FCP: 4101ms | TBT: 66ms | CLS: 0.000

Plan: pagespeed_100 — Target: 100/100 all categories
Thresholds in .lighthouserc.js

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

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
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 size/S Small change (11–50 lines)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants