Migrating to Prisma 6.8.0
Version 6.8.0 introduces 1 breaking change. This guide details how to update your code.
Released: 5/15/2025
1
Breaking Changes
3
Migration Steps
5
Affected Symbols
⚠️ Check Your Code
If you use any of these symbols, you need to read this guide:
prisma devprisma-clientprisma-client-jsgenerator.runtimedatasource.urlBreaking Changes
●Issue #1
The 'deno' Preview feature has been removed from the 'prisma-client-js' generator. Users must switch to the new 'prisma-client' generator with 'runtime = "deno"'.
Migration Steps
- 1To use Deno, update your schema.prisma to use provider = 'prisma-client' and set runtime = 'deno'.
- 2To use local Prisma Postgres, run 'npx prisma dev' and update your datasource URL to the provided 'prisma+postgres://' localhost address.
- 3Update the Prisma VS Code extension to the latest version to enable AI Agent database workflows.
Release Summary
Prisma 6.8.0 introduces local development for Prisma Postgres via the 'prisma dev' command, native Deno support through a new generator, and AI-powered database workflow automation in VS Code.
Need More Details?
View the full release notes and all changes for Prisma 6.8.0.
View Full Changelog