Prisma ORM v6.17.0: Prisma Postgres works with any tool
Prisma ORM v6.17.0: Prisma Postgres works with any tool
Previously, the only way to connect to Prisma Postgres was using Prisma ORM. That combination is great because it gives you connection pooling, global caching and overall an amazing DX.
That being said, preferences may vary and some developers prefer to use plain SQL or lower-level query builders in their applications. As of this release, these ways for connecting to Prisma Postgres are now officially Generally Available (GA) and can be used in your production apps!
You can now connect to Prisma Postgres using Drizzle, Kysely, TypeORM, psql, or any other Postgres-compatible library, database migration tools like Atlas or interfaces like DBeaver, Postico, and more.

📊 New usage metrics available in Console Dashboard
The Dashboard in Prisma Console now gives you a clear, at-a-glance view of Prisma Postgres usage so you can make faster, smarter decisions.
Here’s what’s new:
- Key metrics
- Estimated upcoming invoice
- Total storage used
- Total DBs
- Overall usage
- Cumulative operations
- Operations per day
🐛 Bug fixes and improvements in Prisma ORM v6.17.0
Prisma ORM v6.17.0 comes with a lot of bug fixes and improvements:
- Added support for Entra ID (ActiveDirectory) authentication parameters for the MS SQL Server driver adapter. For example, you can use the
configobject to configure DefaultAzureCredential: Learn more in this PR.
import { PrismaMssql } from '@prisma/adapter-mssql'
import { PrismaClient } from '@prisma/client'
const config = {
server: 'localhost',
port: 1433,
database: 'mydb',
authentication: {
type: 'azure-active-directory-default',
},
options: {
encrypt: true,
},
}
const adapter = new PrismaMssql(config)
const prisma = new PrismaClient({ adapter })- Relaxed the support package range for
@opentelemetry/instrumentationto be compatible with">=0.52.0 <1". Learn more in this PR. - Added Codex CLI detection, ensuring dangerous Prisma operations are not executed by Codex without explicit user consent. Learn more in this PR.
- Fixed JSON column handling when using a MariaDB database. Learn more in this PR.
- Restored the original behaviour of group-by aggregations where they would refer to columns with explicit table names which fixes a regression that would result in ambiguous column errors. Learn more in this PR.
We are working hard on the upcoming Prisma v7 release! If you’re curious, you can learn more and start preparing for the future of Prisma ORM here.
🏢 Enterprise support
Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.
With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.