apps/blog/content/blog/prisma-6-8-0-release/index.mdx
Ever wish you could spin up Prisma Postgres locally in seconds without accounts or Docker? With Prisma 6.8.0, just run prisma dev and dive straight into coding. We’ve also rolled in support for VS Code’s agent mode: which you can use to prompt and run migrations, provision production databases, and more without ever leaving your IDE.
Testing your database shouldn’t depend on cloud access.
When you’re building and testing, you want instant feedback. With Prisma 6.8.0, you can now spin up Prisma Postgres locally using:
npx prisma dev
This launches a local Prisma Postgres instance, fully isolated from your cloud environment. That means:
Zero cloud dependencies! Just local, blazing-fast database development.
Visit our docs to learn how to start using Prisma Postgres locally.
Have you ever set up a database from scratch and spent more time configuring it than building the feature you actually wanted to code?
That should never be the case.
With Prisma 6.8.0, you can use VS Code agent mode and simply ask Copilot to perform Prisma CLI commands for you. That simplifies database management, making it feel as natural as sending a quick message.
Just type: “Create a database for me and store the connection string in an .env file” …and it’s done. No terminal hopping, no context switching.
Here’s what you can do right inside VS Code now:
If you’re already using the Prisma VS Code extension, you can try it out easily by:
Here’s a simple demo:
You can learn more about the VS Code agent in our docs.
You’re deep in code, writing a query, building a new model, testing out migrations. But then you pause...What’s the syntax for that one-to-many relationship again?
Context switching kills momentum.
With the Prisma for GitHub Copilot extension, you don’t have to leave your editor to find out. Just ask: “@prisma-for-github-copilot How can I cache my prisma queries?”
The answer appears right inside GitHub Copilot Chat.
It’s not just documentation, it’s real-time guidance. No browser tabs. No lost focus.
Install the Prisma for GitHub Copilot extension
With Prisma 6.8.0, native Deno support is here. If you’re working with Deno, the integration is simple:
generator client {
- provider = "prisma-client-js"
+ provider = "prisma-client"
output = "../src/generated/prisma"
+ runtime = "deno"
}
No adapters, no custom builds—just Prisma ORM, running natively in Deno. Try it out by following the step-by-step guide here.
Expanding your database to the right region makes all the difference in latency and user experience. That’s why Prisma Postgres now supports deployments in the ap-southeast-1 region—bringing faster data access across Southeast Asia.
And it wasn’t just our decision, it was yours. You voted and now Singapore is live.
<TweetEmbedComp tweets={["1920100310489747952"]} />
You can now deploy your Prisma Postgres instance in Singapore and bring your applications closer to your users.
Where should we go next? Stay tuned for the next poll and cast your vote on X and help shape the future of Prisma Postgres.
Follow us on X and vote on the next poll
We’re working to build a more powerful developer experience with Prisma 6.8.0 and beyond. From local-first database development and real-time documentation lookups to edge-ready Deno deployments, it's all designed to keep you coding, not configuring.
But we’re not stopping here and working to build more integrations and better tooling. Want to stay ahead of the curve? Follow us on X for updates, tips, and previews of what's next.
Got ideas, feedback, or just want to see what others are building? Join our Discord community to chat with fellow developers, ask questions, and be part of shaping the future of Prisma.