An open index of dependabot pull requests across open source projects.

Bump prisma from 4.16.2 to 6.9.0

Closed
Number: #20
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 2
Created: June 09, 2025 at 02:37 AM UTC
(3 months ago)
Updated: June 23, 2025 at 01:42 AM UTC
(3 months ago)
Closed: June 23, 2025 at 01:42 AM UTC
(3 months ago)
Time to Close: 14 days
Labels:
dependencies javascript
Description:

Bumps prisma from 4.16.2 to 6.9.0.

Release notes

Sourced from prisma's releases.

6.9.0

Today, we are excited to share the 6.9.0 stable release 🎉 

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

Highlights

Prisma ORM without Rust engines for PostgreSQL & SQLite (Preview)

If you've been excited about our work of removing the Rust engines from Prisma ORM but hesitated trying it out because it was in an Early Access (EA) phase, now is a great time for you to get your hands on the Rust-free Prisma ORM version.

This major architectural change has moved from EA into Preview in this release, meaning there are no more know major issues. If you want to try it out, add the queryCompiler and driverAdapters preview feature flags to your generator, install the driver adapter for your database, and get going:

generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["queryCompiler", "driverAdapters"]
  output          = "../generated/prisma"
}

Now run prisma generate to re-generate Prisma Client. If you didn't use a driver adapter before, you'll need to install, e.g. the one for PostgreSQL:

npm install @prisma/adapter-pg

Once installed, you can instantiate PrismaClient as follows:

import { PrismaClient } from './generated/prisma'
import { PrismaPg } from '@prisma/adapter-pg'

const adapter = new PrismaPg({ connectionString: env.DATABASE_URL }) const prisma = new PrismaClient({ adapter })

No more hassle with query engines, binary targets and an even smoother experience in serverless and edge environments!

📚 Learn more in the docs.

Major improvements for local Prisma Postgres (Preview)

In the last release, we enabled you to spin up a Prisma Postgres instance locally via the new prisma dev command. Local Prisma Postgres uses PGlite under the hood and gives you an identical experience as you get with a remote Prisma Postgres instance.

This release brings major improvements to this feature:

  • Persists your databases across prisma dev invocations.
  • Enables you to have multiple local Prisma Postgres instances running at the same time.
  • Running prisma init now uses local Prisma Postgres by default.

... (truncated)

Commits
  • e76c711 feat(cli): skip downloading Query Engine when Query Compiler is turned on, an...
  • 640829a feat(CLI): add dev to help. (#27322)
  • 64a4730 feat(CLI): add deploy subcommand. (#27282)
  • 1d9c18a feat(CLI): add login subcommand. (#27320)
  • 4014248 feat(CLI): allow downstream commands to handle shutdowns gracefully. (#27260)
  • 8d06a84 fix(cli): reload the schema when generating the client in watch mode (#27279)
  • 7bac6c0 chore: ORM-708 run migrate package tests with driver adapters (#27011)
  • b268a40 fix: use absolute path file URL for subcommand loading (#27199)
  • f36e306 fix: fix subcommand loading on windows (#27193)
  • 7827265 chore: remove old promotions (#27189)
  • 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)
Pull Request Statistics
Commits:
0
Files Changed:
0
Additions:
+0
Deletions:
-0
Package Dependencies
Package:
prisma
Ecosystem:
npm
Version Change:
4.16.2 → 6.9.0
Update Type:
Major
Technical Details
ID: 2004884
UUID: 3128960969
Node ID: PR_kwDOOQQe686ZnPMX
Host: GitHub
Repository: CodeForgeX2012/web-scraper-toolkit