Next.js 15.4: Production-Ready Turbopack with 100% Integration Test Compatibility
Next.js 15.4 Launches Production-Ready Turbopack
Next.js 15.4 delivers a critical milestone for the Turbopack bundler: next build --turbopack
now passes all 8,298 official Next.js integration tests, signaling that Turbopack is no longer experimental and is ready for production use—Vercel itself is using it to power its high-traffic site (nextjs.org). This achievement not only validates Turbopack’s stability and correctness across edge cases but also sets the stage for it to become the default bundler in Next.js 16.
Developers upgrading to Next.js 15.4 benefit immediately from under-the-hood performance and stability improvements. The release focuses on:
- Production readiness: Full test coverage ensures reliability in diverse real-world applications.
- Stability fixes: Numerous bug fixes and optimizations address issues reported by early adopters.
- Smooth upgrade path: Use
npx @next/codemod@canary upgrade latest
or simplynpm install next@latest react@latest react-dom@latest
to adopt the latest version with minimal friction (nextjs.org).
Read the full release notes on the Next.js 15.4 blog.
Read Next
- July 31, 2025
TypeScript 5.9 RC: import defer, Minimal tsconfig, and Major Performance Gains
TypeScript 5.9 RC introduces deferred module loading with import defer, a lean tsconfig init, stable Node 20 module resolution, enhanced editor tooling, and key compiler optimizations.
- July 28, 2025
Docker Compose Adds LLM ‘models’ Support and Cloud Offload for Agentic Apps
Docker Compose 2.38.0 introduces top-level `models` for LLM configuration and Docker Offload for cloud-scale AI agent deployments.