Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps turbo from 2.5.8 to 2.6.0.

Release notes

Sourced from turbo's releases.

Turborepo v2.6.0

What's Changed

Docs

create-turbo

eslint

Examples

Changelog

New Contributors

... (truncated)

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 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)

@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

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:45pm
next-forge-api Ready Ready Preview Comment Nov 23, 2025 8:45pm
next-forge-app Error Error Nov 23, 2025 8:45pm
next-forge-storybook Ready Ready Preview Comment Nov 23, 2025 8:45pm

@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
Updatedturbo@​2.5.8 ⏵ 2.6.11001008696100

View full report

Copy link

@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 Next.js 16 route handler requires a second context parameter but the getFlags function signature only accepts a request parameter, causing a TypeScript compilation error.

View Details
📝 Patch Details
diff --git a/apps/app/app/.well-known/vercel/flags/route.ts b/apps/app/app/.well-known/vercel/flags/route.ts
index fc37fc3..4283f91 100644
--- a/apps/app/app/.well-known/vercel/flags/route.ts
+++ b/apps/app/app/.well-known/vercel/flags/route.ts
@@ -1,3 +1,3 @@
 import { getFlags } from "@repo/feature-flags/access";
 
-export const GET = getFlags;
+export const GET = (request: any, _context?: any): Promise<Response> => getFlags(request);

Analysis

Next.js 16 route handler signature incompatibility causes TypeScript compilation failure

What fails: TypeScript compiler fails on apps/app/app/.well-known/vercel/flags/route.ts due to Next.js 16.0.0 route handler signature change

How to reproduce:

cd apps/app && pnpm run build

Result:

Type error: Type 'typeof import("/vercel/path0/apps/app/app/.well-known/vercel/flags/route")' does not satisfy the constraint 'RouteHandlerConfig<"/.well-known/vercel/flags">'.
  Types of property 'GET' are incompatible.
    Type '(request: NextRequest) => Promise<NextResponse<null> | NextResponse<ApiData>>' is not assignable to type '(request: NextRequest, context: { params: Promise<{}>; }) => void | Response | Promise<void | Response>'.

Bumps [turbo](https://github.com/vercel/turborepo) 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](vercel/turborepo@v2.5.8...v2.6.0)

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

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 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