Prisma Client is an auto-generated, type-safe and modern JavaScript/TypeScript ORM for Node.js that's tailored to your data. Supports PostgreSQL, CockroachDB, MySQL, MariaDB, SQL Server, SQLite & MongoDB databases.
Last release 2 days ago
25 Aug 2026
Ships fairly regularly
a new release about every 1 weeks
Nearly every release is documented
notes for 60 of the last 60 stable releases
3 versions withdrawn
withdrawn after publishing
7 years old
10652 releases · first in 2020
Release timeline
10652 releases since 2020Releases
- 6.9.0-dev.3628 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.3528 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.3428 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.3328 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.3228 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.3128 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.3027 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2927 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2827 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2727 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2626 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2523 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2423 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2323 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2222 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2122 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.2022 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1922 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1821 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1721 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1621 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1521 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1421 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1321 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1220 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1120 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.1020 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.919 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.819 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.719 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.619 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.519 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.416 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.316 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.215 May 2025pre-release
Nothing published for this version
- 6.9.0-dev.115 May 2025pre-release
Nothing published for this version
- 6.8.216 May 2025
Release notes
Open source →Today, we are issuing the 6.8.2 patch release. It fully resolves an issue with the
prisma initandprisma devcommands for some Windows users who were still facing problems after the previous incomplete fix in version 6.8.1.Fixes:
- https://github.com/prisma/prisma/issues/27195
- 6.8.2-dev.116 May 2025pre-release
Nothing published for this version
- 6.8.115 May 2025
Release notes
Open source →Today, we are issuing the 6.8.1 patch release. It fixes an issue with the
prisma initandprisma devcommands on Windows.Fixes
- https://github.com/prisma/prisma/issues/27192
- 6.8.015 May 2025
Release notes
Open source →Today, we are excited to share the
6.8.0stable release 🎉🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release.
Highlights
Local development with Prisma Postgres via
prisma dev(Early Access)In this release, we're releasing a way to develop against Prisma Postgres locally — no Docker required!
To get started, run the new
prisma devcommand:npx prisma dev # starts a local Prisma Postgres serverThis command spins up a local Prisma Postgres instance and prints the connection URL that you'll need to set as the
urlof yourdatasourceblock to point to a local Prisma Postgres instance. It looks similar to this:datasource db { provider = "postgresql" url = "prisma+postgres://localhost:51213/?api_key=ey..." }You can then run migrations and execute queries against this local Prisma Postgres instance as with any remote one. Note that you need to keep the
prisma devprocess running in order to interact with the local Prisma Postgres instance.📚 Learn more in the docs.
Native Deno support in
prisma-clientgenerator (Preview)In this release, we're removing the
denoPreview feature from theprisma-client-jsgenerator. If you want to use Prisma ORM with Deno, you can now do so with the newprisma-clientgenerator:generator client { provider = "prisma-client" output = "../src/generated/prisma" runtime = "deno" }📚 Learn more in the docs.
VS Code Agent Mode: AI support with your database workflows
Have you tried agent mode in VS Code already?
"The agent acts as an autonomous pair programmer that performs multi-step coding tasks at your command, such as analyzing your codebase, proposing file edits, and running terminal commands."
As of this release, your agent is capable of supporting you with your database workflows more than ever! If you're using VS Code and have the Prisma VS Code extension installed, your agent now is able to help you with your database workflows, such as:
- checking the status of your migrations (e.g. telling you if migrations haven't been applied)
- creating and running schema migrations for you
- authenticating you with the Prisma Console
- provisioning new Prisma Postgres instances so you can start coding right away
All you need to do is make sure you're using the latest version of Prisma's VS Code extension and your agent is ready to go 🚀
📚 Learn more in the docs.
Other news
You voted, we acted: New Singapore region for Prisma Postgres
We recently ran a poll where we asked you which region you'd like to see next for Prisma Postgres. The majority vote went to Asia Pacific (Singapore), so as of today, you're able to spin up new Prisma Postgres instances in the
ap-southeast-1region.We're not stopping here — keep an eye out on X for another poll asking for your favorite regions that we should add!
- 6.8.0-integration-engines-6-8-0-38-integration-pglite-compat-c424c85ee697d2d2ad1beff6959dfcc3206cb8f1.212 May 2025pre-release
Nothing published for this version
- 6.8.0-integration-engines-6-8-0-38-integration-pglite-compat-c424c85ee697d2d2ad1beff6959dfcc3206cb8f1.112 May 2025pre-release
Nothing published for this version
- 6.8.0-integration-engines-6-8-0-25-push-mkywrssuzzlv-862a731f64150f675a47c6dddbc494a2edea95b7.17 May 2025pre-release
Nothing published for this version
- 6.8.0-integration-engines-6-8-0-24-push-mkywrssuzzlv-f27b8115c67c55739c1dbd42d9e287ddc3d504a1.17 May 2025pre-release
Nothing published for this version
- 6.8.0-integration-engines-6-8-0-23-push-mkywrssuzzlv-62a6a6a85d532f55737fe7a490abf04695b951ab.17 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.5115 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4914 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4814 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4714 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4613 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4513 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4413 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4313 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4213 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4113 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.4013 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.3913 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.3812 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.3712 May 2025pre-release
Nothing published for this version
- 6.8.0-dev.3612 May 2025pre-release
Nothing published for this version