Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps @turbo/gen from 2.5.8 to 2.6.0.

Release notes

Sourced from @​turbo/gen's releases.

Turborepo v2.6.0

What's Changed

Docs

create-turbo

eslint

Examples

Changelog

New Contributors

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Update one or more dependencies version javascript Pull requests that update Javascript code minor Increment the minor version when merged labels Nov 1, 2025
@vercel
Copy link
Contributor

vercel bot commented Nov 1, 2025

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

Project Deployment Preview Comments Updated (UTC)
next-forge Ready Ready Preview Comment Nov 23, 2025 8:46pm
next-forge-api Ready Ready Preview Comment Nov 23, 2025 8:46pm
next-forge-app Error Error Nov 23, 2025 8:46pm
next-forge-storybook Ready Ready Preview Comment Nov 23, 2025 8:46pm

@socket-security
Copy link

socket-security bot commented Nov 1, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​turbo/​gen@​2.5.8 ⏵ 2.6.199 +11008498 +2100

View full report

Copy link
Contributor

@vercel vercel bot left a comment

Choose a reason for hiding this comment

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

🔧 Build Fix:

The Vitest configuration uses the default fork-based process pool which causes intermittent EPIPE errors during test cleanup due to race conditions in child process communication. Tests pass but the build fails during teardown.

View Details
📝 Patch Details
diff --git a/apps/app/vitest.config.mts b/apps/app/vitest.config.mts
index 0866bcb..fabada1 100644
--- a/apps/app/vitest.config.mts
+++ b/apps/app/vitest.config.mts
@@ -6,6 +6,12 @@ export default defineConfig({
   plugins: [react()],
   test: {
     environment: "jsdom",
+    pool: "threads",
+    poolOptions: {
+      threads: {
+        singleThread: true,
+      },
+    },
   },
   resolve: {
     alias: {

Analysis

Vitest EPIPE error during test cleanup causes intermittent build failures

What fails: Vitest test runner fails intermittently with EPIPE (broken pipe) error during child process cleanup, causing the build to fail even when all tests pass

How to reproduce:

cd apps/app && pnpm test

Result:

✓ __tests__/sign-in.test.tsx (1 test) 21ms
✓ __tests__/sign-up.test.tsx (1 test) 25ms

Test Files  2 passed (2)
     Tests  2 passed (2)

Error: write EPIPE
    at ChildProcess.target._send (node:internal/child_process:877:20)
    at ForksPoolWorker.send (...vitest/dist/chunks/cli-api.D24RdiHp.js:6559:13)
    [... stack trace continues]
  errno: -32,
  code: 'EPIPE',
  syscall: 'write'

The error occurs intermittently during test cleanup when Vitest tries to communicate with child processes that have already terminated.

Bumps [@turbo/gen](https://github.com/vercel/turborepo/tree/HEAD/packages/turbo-gen) from 2.5.8 to 2.6.0.
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](https://github.com/vercel/turborepo/commits/v2.6.0/packages/turbo-gen)

---
updated-dependencies:
- dependency-name: "@turbo/gen"
  dependency-version: 2.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Update one or more dependencies version javascript Pull requests that update Javascript code minor Increment the minor version when merged

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant