Skip to content

chore(deps): bump @prisma/client from 5.13.0 to 6.6.0 #2626

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: app
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 21, 2025

Bumps @prisma/client from 5.13.0 to 6.6.0.

Release notes

Sourced from @​prisma/client's releases.

6.6.0

Today, we are excited to share the 6.6.0 stable release 🎉 This version comes packed with exciting features, we can't wait to see what you're going to build with it! Read our announcement blog post for more details: Prisma ORM 6.6.0: ESM Support, D1 Migrations & MCP Server

🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release. 🌟

Highlights

ESM support with more flexible prisma-client generator (Early Access)

We are excited to introduce a new prisma-client generator that's more flexible, comes with ESM support and removes any magic behaviours that may cause friction with the current prisma-client-js generator.

Note: The prisma-client generator is currently in Early Access and will likely have some breaking changes in the next releases.

Here are the main differences:

  • Requires an output path; no “magic” generation into node_modules any more
  • Supports ESM and CommonJS via the moduleFormat field
  • Outputs plain TypeScript that's bundled just like the rest of your application code

Here's how you can use the new prisma-client generator in your Prisma schema:

// prisma/schema.prisma
generator client {
  provider     = "prisma-client"           // no `-js` at the end
  output       = "../src/generated/prisma" // `output` is required
  moduleFormat = "esm"                     // or `"cjs"` for CommonJS
}

In your application, you can then import the PrismaClient constructor (and anything else) from the generated folder:

// src/index.ts
import { PrismaClient } from './generated/prisma/client'

⚠️ Important: We recommend that you add the output path to .gitignore so that the query engine that's part of the generated Prisma Client is kept out of version control:

# .gitignore
./src/generated/prisma

📚 Learn more in the docs.

Cloudflare D1 & Turso/LibSQL migrations (Early Access)

Cloudflare D1 and Turso are popular database providers that are both based on SQLite. While you can query them using the respective driver adapter for D1 or Turso, previous versions of Prisma ORM weren't able to make schema changes against these databases.

... (truncated)

Commits
  • 45263ab feat(migrate): integrate general improvements on @prisma/schema-engine-wasm...
  • 3ef10b6 chore(deps): update engines to 6.6.0-52.30389eb8d83fe5c09a7d1d1648e7d5ab7438d...
  • 5b51bea chore(deps): update engines to 6.6.0-51.febd1ffa43a7b889647e64817771658dbc24d...
  • ed95131 chore(deps): update engines to 6.6.0-50.b44a0316a6417eddf2f94758d84556d063136...
  • 81925ac chore(deps): update engines to 6.6.0-49.6d9919036f1a9c347de172190cd6165a54bc3...
  • 00d77dd chore(deps): update engines to 6.6.0-47.4a9d50e6898ac0428d7dfd6aad4bd98fddb12...
  • 0178266 fix(client): resolve type error in tests using dev builds (#26812)
  • fd334fe fix(client): revert cwd change in BinaryEngine (#26802)
  • 3017c51 chore(deps): update engines to 6.6.0-46.dc2c1279f201ab67d96815a69b3a831a2f89c...
  • f470a65 feat(generator-ts): generate typescript source code (#26779)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 21, 2025
@dependabot dependabot bot requested a review from dsinghvi as a code owner April 21, 2025 07:31
Copy link

vercel bot commented Apr 21, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
dev.ferndocs.com ✅ Ready (Inspect) Visit Preview Apr 23, 2025 5:40pm
fern-dashboard ✅ Ready (Inspect) Visit Preview Apr 23, 2025 5:40pm
fern-dashboard-dev ✅ Ready (Inspect) Visit Preview Apr 23, 2025 5:40pm
2 Skipped Deployments
Name Status Preview Updated (UTC)
prod-assets.ferndocs.com ⬜️ Skipped (Inspect) Apr 23, 2025 5:40pm
prod.ferndocs.com ⬜️ Skipped (Inspect) Apr 23, 2025 5:40pm

@davidkonigsberg
Copy link
Collaborator

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 23, 2025

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@davidkonigsberg
Copy link
Collaborator

@dependabot recreate

Bumps [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) from 5.13.0 to 6.6.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/6.6.0/packages/client)

---
updated-dependencies:
- dependency-name: "@prisma/client"
  dependency-version: 6.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant