Next.js 15.4: Turbopack production builds validated and Next.js 16 previewed
Key update
Next.js 15.4 (July 14, 2025) advances Turbopack from fast-dev tooling to production-grade builds: next build --turbopack now passes the full integration test suite (all 8,298 tests) and Turbopack is being used to power vercel.com. The release also publishes an early preview of Next.js 16, which formalizes Turbopack builds for production (beta), unified caching primitives (cacheComponents), router optimizations, and a set of experimental flags you can enable today.
Why it matters
This is one of the clearest signals yet that a Rust-based bundler can replace legacy JS bundlers in large production sites: teams should expect significantly faster build times and more scalable dev tooling on large monorepos and CI pipelines once Turbopack’s production chunking and final bundling optimizations land. Practically, that means you should plan to: validate next build --turbopack in a dedicated CI job for a representative app, measure end-to-end build and deploy times, and test runtime behavior (especially third-party plugins and edge/Node runtimes). Because Next.js 16 will also deprecate older Node versions and introduce caching and prerendering changes, coordinate infra (Node versions, caching layers, and CD/CI caches) before flipping defaults. If you rely on custom bundler plugins or uncommon Next.js config options, treat this as an integration project rather than a drop-in swap — expect to iterate on config, watch for production chunking fixes called out by the team, and use the canary channel or feature flags to stage changes.
Source
Read Next
AWS CDK splits the CLI from the Construct Library (independent releases & new CLI repo)
August 31, 2025AWS announced the CDK CLI and the CDK Construct Library will be released independently and the CLI is moving to a new repository — this changes how you version, install, and automate CDK in CI.
Bun adds Bun.SQL — a zero‑dependency unified SQL client (MySQL, PostgreSQL, SQLite)
August 30, 2025Bun v1.2.21 (Aug 25, 2025) introduces Bun.SQL: a single, zero‑dependency SQL client that supports MySQL/MariaDB (Zig driver), PostgreSQL and SQLite with a consistent tagged‑template API.
pnpm 10.12 (v10.12.1) adds an experimental global virtual store for near‑instant local installs
August 29, 2025pnpm 10.12 introduces a central, graph-hashed virtual store that lets multiple projects reuse exact dependency graphs, dramatically speeding up local installs on warm caches and improving monorepo workflows.