Today, we are issuing a 6.11.1 patch release.
Bug fixes
-
In Prisma ORM version 6.11.0, we shipped a bug fix for Prisma that allows using Prisma Postgres with direct TCP connections with Prisma Driver Adapters. This fix required refactoring the Prisma Client initialization logic, and while several test cases were added, an edge case was missing, causing #27569.
Namely, using@prisma/client
with@prisma/extension-accelerate
on aprisma+postgres://...
connection string, while generating the Prisma Client definitions viaprisma generate
, resulted in aPrismaClientInitializationError
.This is now fixed, so we highly recommend upgrading to version 6.11.1.
Reminder: when using Prisma Accelerate, we highly encourage you to generate your Prisma Client definitions via
prisma generate --no-engine
. -
We've fixed an issue that would occur when using arrays as aggregation fields with the query compiler. These queries would fail with a confusing data mapping error. They should now work as expected.