• Sign in with Vercel now generally available

    Sign in with Vercel OG DarkSign in with Vercel OG Dark

    Sign in with Vercel is now generally available, enabling developers to add Vercel as a sign-in method to their apps and projects.

    You can create an app, configure its scopes, and start setting up sign-in directly from the Vercel dashboard, without having to manage users or sign-in methods yourself.

    Built on OAuth and OpenID, Sign in with Vercel allows you to:

    • Sign users in to your apps and projects with their existing Vercel account.

    • Fetch the user’s info, such as their name, email, and avatar.

    • Receive ID tokens, access tokens, and refresh tokens for interacting with Vercel.

    Take a look at our example app to get started.

  • Node.js 24 LTS is now generally available for builds and functions

    Node.js version 24 is now available as a runtime for builds and functions using Node.

    To use version 24, go to Project Settings -> Build and Deployment -> Node.js Version and select 24.x. This is also the default version for new projects.

    This new version's highlights:

    • V8 Engine Upgrade: Node.js 24 ships with the V8 JavaScript engine version 13.6, bringing performance enhancements and new JavaScript features such as Float16Array and Error.isError

    • Global URLPattern API: Simpler URL routing and matching without the need for external libraries or complex regular expressions

    • Undici v7: The built-in fetch API benefits from faster HTTP performance, improved HTTP/2 & HTTP/3 support, and more efficient connection handling

    • npm v11: It comes with an updated version of npm, improving the compatibility with modern JavaScript packages

    The current version used is 24.11.0 and will be automatically updated, with only the major version version (24.x) being guaranteed.

    Read our Node.js runtime documentation to learn more.

  • FLUX.2 Pro image model is now available on Vercel AI Gateway

    You can now access the newest image model FLUX.2 Pro from Black Forest Labs via Vercel's AI Gateway with no other provider accounts required.

    FLUX.2 Pro is a newly trained base model designed for advanced visual intelligence, offering higher-resolution outputs (up to 4MP), improved knowledge of the real world, and precise control over lighting and spatial composition. It introduces multi-reference input, enhanced character and product consistency, exact color matching, and expanded control options compared to the FLUX.1 models.

    FLUX.2 Pro differs fundamentally from the other models with image generation capability currently available in AI Gateway. This model is a pure image-focused rectified-flow transformer model, in contrast with the multimodal LLMs already integrated. To use this model, set model to bfl/flux-2-pro in the AI SDK. This model supports generateImage.

    import { experimental_generateImage as generateImage } from 'ai';
    const result = await generateImage({
    model: 'bfl/flux-2-pro',
    prompt:
    `Render a turquoise throated puffleg hummingbird
    resting on a branch covered with dew at sunrise.`,
    size: '1024x1024',
    });

    AI Gateway provides a unified API for calling models, tracking usage and cost, and configuring retries, failover, and performance optimizations for higher-than-provider uptime. It includes built-in observability, Bring Your Own Key support, and intelligent provider routing with automatic retries.

    Read the docs for more detailed examples on how to use FLUX.2 Pro with the AI SDK and OpenAI-compatible API, view the AI Gateway model leaderboard, or try these models directly in the model playground.

    AI Gateway: Track top AI models by usage

    The AI Gateway model leaderboard ranks the most used models over time by total token volume across all traffic through the Gateway. Updates regularly.

    View the leaderboard

  • Convex joins the Vercel Marketplace

    Vercel + Convex - DarkVercel + Convex - Dark

    Convex is now available on the Vercel Marketplace, giving developers an easy way to add a real-time backend to any Vercel project. You can create and connect a Convex project directly from the Vercel dashboard and get a fully configured backend without manual setup.

    With the new integration, you can:

    • Provision a Convex project directly from Vercel dashboard

    • Manage accounts and billing in one place

    • Get real-time data sync with built-in caching and consistency

    • Use Convex’s data model and functions alongside Vercel’s full developer workflow

    Install Convex from the Marketplace and start building with a fully connected backend in just a few clicks.

    +2

    Hedi Z, Tony P, Dima V, Marc B

  • Shai-Hulud 2.0 Supply Chain Compromise

    Multiple npm packages from various web services were compromised through account takeover/developer compromise. A malicious actor was able to add a stealthy loader to the package.json file that locates the Bun runtime, silently installs, then executes a malicious script.

    Our investigation has shown that no Vercel environment was impacted and we are notifying a small set of customers with affected builds.

    Link to headingImpact to Vercel Customers

    Vercel has taken immediate steps to address this for our customers. As an initial step, we reset the cache for projects that pulled in any of the vulnerable packages while we continue to investigate whether any loaders successfully ran.

    • As of this publication, no Vercel-managed systems or internal build processes have been impacted.

    • Preliminary analysis identified a limited set of Vercel customer builds referencing the compromised packages.

    • Impacted customers are being contacted directly with detailed mitigation steps.

    We will continue to issue updates throughout our investigation.

    Aaron Brown

  • You can now configure advanced sampling rules for Vercel Drains

    Advanced Sampling Rules DarkAdvanced Sampling Rules Dark

    You can now configure advanced sampling rules when exporting data to a third-party observability tool when using Vercel Drains.

    Advanced sampling rules allow you to configure sampling rates for specific environments and path prefixes, providing more granular control over cost management.

    Vercel Drains is available to Pro and Enterprise teams. Advanced sampling rules can be configured on drains exporting logs or traces.

    Try it out or learn more about Vercel Drains.