This repository was archived by the owner on Apr 15, 2025. It is now read-only.
v0.6.3
What's Changed
This release is a patch release to fix incompatibilities between the documented MongoDB Prisma Schema and our version. In v3.10.0 Prisma made some breaking changes to MongoDB schemas, for example:
- Replacing
@default(dbgenerated())with@default(auto()) - Replacing
@db.Array(ObjectId)with@db.ObjectId
This caused some confusion as following an official Prisma guide in their documentation resulted in an error (#326).
Bug Fixes
- Disable raw queries for MongoDB as they are not officially supported yet (#324)