Prisma’s Query Compiler (Rust‑free Prisma Client) is slated for GA in Sep 2025

Node.jsTypeScriptPrismaDevOps

Key update

Prisma has scheduled the Query Compiler—the architecture that moves query execution out of Prisma’s Rust query engine into a TypeScript query compiler with pluggable driver adapters—for general availability starting September 2025. That change makes the Prisma Client “Rust‑free” by default (no native query‑engine binaries included), and the team plans to graduate the related generator and driver‑adapter work into the mainline Prisma Client rollout.

Why it matters

This is a practical, high‑impact change for Node/TypeScript teams. Removing native binaries simplifies deployment and CI (no more platform-specific engine downloads or binary targets), drastically improves compatibility with serverless and edge environments, and makes bundling/ESM workflows far easier because the client becomes pure JS/TS. Expect smaller deployment footprints, fewer Docker build headaches, and smoother support for edge runtimes and on‑demand scaling. It also means migration/testing is necessary: the Query Compiler has its own behavioral surface (some early issues were reported while previewing), and teams should validate queries, date/time handling, and any advanced SQL edge cases before switching production workloads. If you operate serverless/edge apps or maintain multi‑target CI builds, start testing the queryCompiler + driverAdapters preview flags now and plan a staged migration once Prisma marks them GA.

Source

Read Next