PackageTrack

npm · #3659

@prisma/client

7.10.0prisma/prisma

Prisma Client is an auto-generated, type-safe and modern JavaScript/TypeScript ORM for Node.js that's tailored to your data. Supports PostgreSQL, CockroachDB, MySQL, MariaDB, SQL Server, SQLite & MongoDB databases.

Release timeline

10652 releases since 2020
2020202120222023202420252026

Releases

  1. 6.9.0-dev.3628 May 2025pre-release

    Nothing published for this version

  2. 6.9.0-dev.3528 May 2025pre-release

    Nothing published for this version

  3. 6.9.0-dev.3428 May 2025pre-release

    Nothing published for this version

  4. 6.9.0-dev.3328 May 2025pre-release

    Nothing published for this version

  5. 6.9.0-dev.3228 May 2025pre-release

    Nothing published for this version

  6. 6.9.0-dev.3128 May 2025pre-release

    Nothing published for this version

  7. 6.9.0-dev.3027 May 2025pre-release

    Nothing published for this version

  8. 6.9.0-dev.2927 May 2025pre-release

    Nothing published for this version

  9. 6.9.0-dev.2827 May 2025pre-release

    Nothing published for this version

  10. 6.9.0-dev.2727 May 2025pre-release

    Nothing published for this version

  11. 6.9.0-dev.2626 May 2025pre-release

    Nothing published for this version

  12. 6.9.0-dev.2523 May 2025pre-release

    Nothing published for this version

  13. 6.9.0-dev.2423 May 2025pre-release

    Nothing published for this version

  14. 6.9.0-dev.2323 May 2025pre-release

    Nothing published for this version

  15. 6.9.0-dev.2222 May 2025pre-release

    Nothing published for this version

  16. 6.9.0-dev.2122 May 2025pre-release

    Nothing published for this version

  17. 6.9.0-dev.2022 May 2025pre-release

    Nothing published for this version

  18. 6.9.0-dev.1922 May 2025pre-release

    Nothing published for this version

  19. 6.9.0-dev.1821 May 2025pre-release

    Nothing published for this version

  20. 6.9.0-dev.1721 May 2025pre-release

    Nothing published for this version

  21. 6.9.0-dev.1621 May 2025pre-release

    Nothing published for this version

  22. 6.9.0-dev.1521 May 2025pre-release

    Nothing published for this version

  23. 6.9.0-dev.1421 May 2025pre-release

    Nothing published for this version

  24. 6.9.0-dev.1321 May 2025pre-release

    Nothing published for this version

  25. 6.9.0-dev.1220 May 2025pre-release

    Nothing published for this version

  26. 6.9.0-dev.1120 May 2025pre-release

    Nothing published for this version

  27. 6.9.0-dev.1020 May 2025pre-release

    Nothing published for this version

  28. 6.9.0-dev.919 May 2025pre-release

    Nothing published for this version

  29. 6.9.0-dev.819 May 2025pre-release

    Nothing published for this version

  30. 6.9.0-dev.719 May 2025pre-release

    Nothing published for this version

  31. 6.9.0-dev.619 May 2025pre-release

    Nothing published for this version

  32. 6.9.0-dev.519 May 2025pre-release

    Nothing published for this version

  33. 6.9.0-dev.416 May 2025pre-release

    Nothing published for this version

  34. 6.9.0-dev.316 May 2025pre-release

    Nothing published for this version

  35. 6.9.0-dev.215 May 2025pre-release

    Nothing published for this version

  36. 6.9.0-dev.115 May 2025pre-release

    Nothing published for this version

  37. 6.8.216 May 2025
    Release notes

    Today, we are issuing the 6.8.2 patch release. It fully resolves an issue with the prisma init and prisma dev commands for some Windows users who were still facing problems after the previous incomplete fix in version 6.8.1.

    Fixes:

    • https://github.com/prisma/prisma/issues/27195
    Open source →
  38. 6.8.2-dev.116 May 2025pre-release

    Nothing published for this version

  39. 6.8.115 May 2025
    Release notes

    Today, we are issuing the 6.8.1 patch release. It fixes an issue with the prisma init and prisma dev commands on Windows.

    Fixes

    • https://github.com/prisma/prisma/issues/27192
    Open source →
  40. 6.8.015 May 2025
    Release notes

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

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

    Highlights

    Local development with Prisma Postgres via prisma dev (Early Access)

    In this release, we're releasing a way to develop against Prisma Postgres locally — no Docker required!

    To get started, run the new prisma dev command:

    npx prisma dev # starts a local Prisma Postgres server
    

    This command spins up a local Prisma Postgres instance and prints the connection URL that you'll need to set as the url of your datasource block to point to a local Prisma Postgres instance. It looks similar to this:

    datasource db {
      provider = "postgresql"
      url      = "prisma+postgres://localhost:51213/?api_key=ey..." 
    }
    

    You can then run migrations and execute queries against this local Prisma Postgres instance as with any remote one. Note that you need to keep the prisma dev process running in order to interact with the local Prisma Postgres instance.

    📚 Learn more in the docs.

    Native Deno support in prisma-client generator (Preview)

    In this release, we're removing the deno Preview feature from the prisma-client-js generator. If you want to use Prisma ORM with Deno, you can now do so with the new prisma-client generator:

    generator client {
      provider = "prisma-client"
      output   = "../src/generated/prisma"
      runtime = "deno"
    }
    

    📚 Learn more in the docs.

    VS Code Agent Mode: AI support with your database workflows

    Have you tried agent mode in VS Code already?

    "The agent acts as an autonomous pair programmer that performs multi-step coding tasks at your command, such as analyzing your codebase, proposing file edits, and running terminal commands."

    As of this release, your agent is capable of supporting you with your database workflows more than ever! If you're using VS Code and have the Prisma VS Code extension installed, your agent now is able to help you with your database workflows, such as:

    • checking the status of your migrations (e.g. telling you if migrations haven't been applied)
    • creating and running schema migrations for you
    • authenticating you with the Prisma Console
    • provisioning new Prisma Postgres instances so you can start coding right away

    All you need to do is make sure you're using the latest version of Prisma's VS Code extension and your agent is ready to go 🚀

    📚 Learn more in the docs.

    Other news

    You voted, we acted: New Singapore region for Prisma Postgres

    We recently ran a poll where we asked you which region you'd like to see next for Prisma Postgres. The majority vote went to Asia Pacific (Singapore), so as of today, you're able to spin up new Prisma Postgres instances in the ap-southeast-1 region.

    We're not stopping here — keep an eye out on X for another poll asking for your favorite regions that we should add!

    Open source →
  41. 6.8.0-integration-engines-6-8-0-38-integration-pglite-compat-c424c85ee697d2d2ad1beff6959dfcc3206cb8f1.212 May 2025pre-release

    Nothing published for this version

  42. 6.8.0-integration-engines-6-8-0-38-integration-pglite-compat-c424c85ee697d2d2ad1beff6959dfcc3206cb8f1.112 May 2025pre-release

    Nothing published for this version

  43. 6.8.0-integration-engines-6-8-0-25-push-mkywrssuzzlv-862a731f64150f675a47c6dddbc494a2edea95b7.17 May 2025pre-release

    Nothing published for this version

  44. 6.8.0-integration-engines-6-8-0-24-push-mkywrssuzzlv-f27b8115c67c55739c1dbd42d9e287ddc3d504a1.17 May 2025pre-release

    Nothing published for this version

  45. 6.8.0-integration-engines-6-8-0-23-push-mkywrssuzzlv-62a6a6a85d532f55737fe7a490abf04695b951ab.17 May 2025pre-release

    Nothing published for this version

  46. 6.8.0-dev.5115 May 2025pre-release

    Nothing published for this version

  47. 6.8.0-dev.4914 May 2025pre-release

    Nothing published for this version

  48. 6.8.0-dev.4814 May 2025pre-release

    Nothing published for this version

  49. 6.8.0-dev.4714 May 2025pre-release

    Nothing published for this version

  50. 6.8.0-dev.4613 May 2025pre-release

    Nothing published for this version

  51. 6.8.0-dev.4513 May 2025pre-release

    Nothing published for this version

  52. 6.8.0-dev.4413 May 2025pre-release

    Nothing published for this version

  53. 6.8.0-dev.4313 May 2025pre-release

    Nothing published for this version

  54. 6.8.0-dev.4213 May 2025pre-release

    Nothing published for this version

  55. 6.8.0-dev.4113 May 2025pre-release

    Nothing published for this version

  56. 6.8.0-dev.4013 May 2025pre-release

    Nothing published for this version

  57. 6.8.0-dev.3913 May 2025pre-release

    Nothing published for this version

  58. 6.8.0-dev.3812 May 2025pre-release

    Nothing published for this version

  59. 6.8.0-dev.3712 May 2025pre-release

    Nothing published for this version

  60. 6.8.0-dev.3612 May 2025pre-release

    Nothing published for this version