Prisma’s Query Compiler (Rust‑free Prisma Client) is slated for GA in Sep 2025
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
Node.js v25 scheduled for 2025‑10‑15 — semver‑major release imminent
September 30, 2025Node.js v25 is scheduled for October 15, 2025 (commit cutoff 2025‑09‑15). Teams should run CI against the new major, validate native modules, and prepare canary deployments.
Azure Functions Proxies: community support ends 2025‑09‑30 — migrate off Proxies now
September 29, 2025Azure announced Azure Functions Proxies will be unsupported after 2025‑09‑30; teams still using Proxies must inventory and migrate to a supported API surface (APIM, Front Door, or a lightweight reverse proxy) immediately.
NodeShield: runtime SBOM enforcement (CBOM) for Node.js limits supply‑chain attacks with negligible overhead
September 28, 2025A new paper introduces NodeShield, a runtime enforcement system that uses SBOMs extended with per‑dependency capabilities (CBOM) to prevent supply‑chain abuses in Node.js with ~98% effectiveness and <1ms overhead.