Prisma ORM v6.11.0: embed Prisma Studio in your React apps
Prisma ORM v6.11.0: embed Prisma Studio in your React apps
If you’re using Prisma Postgres (yourself or by offering it to your own users), you can now embed Prisma Studio to offer an amazing data editing experience via the @prisma/studio-core npm package.
![Studio-component[LIGHT]@4x.png](/_next/image?url=%2Fchangelog%2Fimage-d2c35b8243dd6f86ff9a353d5bb64ad79510920f-2836x981-png-Studio-component-LIGHT-4x.png&w=3840&q=75&dpl=dpl_A6CMQj4kBa1BHkt1GkBdC1UMuM3y)
Check out the demo site to see how Studio can be integrated in a React app with Vite and Hono.
🚀 Prisma ORM v6.11.0 release: No Rust engines for MySQL, Neon & CockroachDB in Preview
We just released Prisma ORM v6.11.0 and are excited to move the “Rust-free version of Prisma ORM” into Preview for our remaining first-class databases: MySQL/MariaDB, Neon and CockroachDB.
If you want to try this, you can configure your generator like this:
generator client {
provider = "prisma-client-js" // or `prisma-client`
previewFeatures = ["queryCompiler", "driverAdapters"]
output = "../generated/prisma"
}No more hassle with query engines, binary targets and an even smoother experience in serverless and edge environments! Learn more about using this version of Prisma ORM with your favorite DB in the docs.
🌏 New region for Prisma Postgres: Frankfurt (eu-central-1)
We keep expanding Prisma Postgres availability across the globe! After having added San Francisco just a few weeks ago, we’re now adding Frankfurt based on another poll we ran on X. Here are all the regions where you can spin up Prisma Postgres instances today:
eu-central-1: Frankfurt (new!)eu-west-3: Parisus-west-1: San Franciscous-east-1: North Virginiaap-northeast-1: Tokyoap-southeast-1: Singapore
Keep an eye on our X account to take part in the poll and vote for the next availability zone of Prisma Postgres!
⚡ Connecting to Prisma Postgres with any tool is now faster
We recently enabled the option to connect to Prisma Postgres with any tool via direct connections. In this release, we have reduced the connection latency so your first request is now even faster.
💰 Predict your Prisma Postgres bill with our new Pricing Calculator
Prisma Postgres comes with a pricing model that seems too simple to be true: You're charged based on operations—not CPU, compute hours or any other resource-based metrics.

While it's simple, it may feel unfamiliar because it's so different from existing pricing models. To understand how much you'd pay for Prisma Postgres running your app, you can now use our Pricing Calculator. Put in the predicted storage and number of operations to see how much you’ll be charged on each plan.
⏹️ Stop and remove local Prisma Postgres instances via CLI
You can start a local Prisma Postgres instance using the prisma dev --name mydb command or via the Prisma VS Code extension UI. If you start a local instance via the Prisma CLI, you can simply kill the process to stop the instance. However, when you start instances via the VS Code extension UI, you could also only stop them via the UI—not via the CLI.
This changes in this release: You can now also stop local Prisma Postgres instances and remove them from your file system via the Prisma CLI:
prisma dev stop <globs>: Stops one or more local Prisma Postgres instancesprisma dev rm <globs>: Removes one or more local Prisma Postgres instances from your file system
Learn more about these new commands in the docs.
👨🚀 More from the Prismasphere
Prisma Postgres now available for all Postgres templates in Vercel Marketplace
On vercel.com/templates, you can find lots of one-click-deploy application templates! We worked with the Vercel team to get Prisma Postgres working with all templates requiring a PostgreSQL database, for example:
- Next.js SaaS Starter with Drizzle ORM
- Postgres SvelteKit Starter with Postgres.js
- Next.js + PostgreSQL Auth Starter with Drizzle ORM
- … and a lot more
Optimizing Postgres for Global Apps
This article is a technical deep dive into low-level Postgres, written by our Staff Software Engineer Tyler Benfield. It unveils how we modernized the 25 year old PostgreSQL protocol and built a database that’s optimized for serverless deployments, multi-region applications, and modern network architectures.
How Bucket Uses Prisma ORM to Make Shipping Feature Releases Faster
Discover how Bucket, a fast-growing feature management platform, uses Prisma ORM to simplify complex relational queries and accelerate feature releases. Learn how their lean team delivers high-quality features faster while managing evolving database needs with ease.
Ready-to-run examples for new prisma-client generator
Our new prisma-client generator is more flexible, provides more control about the generated code, works with various JS runtimes and comes with ESM support out-of-the-box.
To make it easier for you to try it out, we created a few ready-to-run example projects so you can see the new generator in action: