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. 7.4.0-dev.179 Feb 2026pre-release

    Nothing published for this version

  2. 7.4.0-dev.166 Feb 2026pre-release

    Nothing published for this version

  3. 7.4.0-dev.156 Feb 2026pre-release

    Nothing published for this version

  4. 7.4.0-dev.146 Feb 2026pre-release

    Nothing published for this version

  5. 7.4.0-dev.136 Feb 2026pre-release

    Nothing published for this version

  6. 7.4.0-dev.126 Feb 2026pre-release

    Nothing published for this version

  7. 7.4.0-dev.116 Feb 2026pre-release

    Nothing published for this version

  8. 7.4.0-dev.105 Feb 2026pre-release

    Nothing published for this version

  9. 7.4.0-dev.95 Feb 2026pre-release

    Nothing published for this version

  10. 7.4.0-dev.85 Feb 2026pre-release

    Nothing published for this version

  11. 7.4.0-dev.73 Feb 2026pre-release

    Nothing published for this version

  12. 7.4.0-dev.62 Feb 2026pre-release

    Nothing published for this version

  13. 7.4.0-dev.529 Jan 2026pre-release

    Nothing published for this version

  14. 7.4.0-dev.428 Jan 2026pre-release

    Nothing published for this version

  15. 7.4.0-dev.328 Jan 2026pre-release

    Nothing published for this version

  16. 7.4.0-dev.228 Jan 2026pre-release

    Nothing published for this version

  17. 7.4.0-dev.128 Jan 2026pre-release

    Nothing published for this version

  18. 7.3.021 Jan 2026
    Release notes

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

    🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

    ORM

    • #28976: Fast and Small Query Compilers We've been working on various performance-related bugs since the initial ORM 7.0 release. With 7.3.0, we're introducing a new compilerBuild option for the client generator block in schema.prisma with two options: fast and small. This allows you to swap the underlying Query Compiler engine based on your selection, one built for speed (with an increase in size), and one built for size (with the trade off for speed). By default, the fast mode is used, but this can be set by the user:
    generator client {
      provider = "prisma-client"
      output   = "../src/generated/prisma"
      compilerBuild = "fast" // "fast" | "small"
    }
    

    We still have more in progress for performance, but this new compilerBuild option is our first step toward addressing your concerns!

    • #29005: Bypass the Query Compiler for Raw Queries Raw queries ($executeRaw, $queryRaw) can now skip going through the query compiler and query interpreter infrastructure. They can be sent directly to the driver adapter, removing additional overhead.

    • #28965: Update MSSQL to v12.2.0 This community PR updates the @prisma/adapter-mssql to use MSSQL v12.2.0. Thanks Jay-Lokhande!

    • #29001: Pin better-sqlite3 version to avoid SQLite bug An underlying bug in SQLite 3.51.0 has affected the better-sqlite3 adapter. We’ve bumped the version that powers @prisma/better-sqlite3 and have pinned the version to prevent any unexpected issues. If you are using @prisma/better-sqlite3 , please upgrade to v7.3.0.

    • #29002: Revert @map enums to v6.19.0 behavior In the initial release of v7.0, we made a change with Mapped Enums where the generated enum would get its value from the value passed to the @map function. This was a breaking change from v6 that caused issues for many users. We have reverted this change for the time being, as many different diverging approaches have emerged from the community discussion.

    • prisma-engines#5745: Cast BigInt to text in JSON aggregation When using relationJoins with BigInt fields in Prisma 7, JavaScript's JSON.parse loses precision for integers larger than Number.MAX_SAFE_INTEGER (2^53 - 1). This happens because PostgreSQL's JSONB_BUILD_OBJECT returns BigInt values as JSON numbers, which JavaScript cannot represent precisely.

      // Original BigInt ID: 312590077454712834
      // After JSON.parse: 312590077454712830 (corrupted!)
      

      This PR cast BigInt columns to ::text inside JSONB_BUILD_OBJECT calls, similar to how MONEY is already cast to ::numeric.

      -- Before
      JSONB_BUILD_OBJECT('id', "id")
      
      -- After
      JSONB_BUILD_OBJECT('id', "id"::text)
      

    This ensures BigInt values are returned as JSON strings, preserving full precision when parsed in JavaScript.

    Open roles at Prisma

    Interested in joining Prisma? We’re growing and have several exciting opportunities across the company for developers who are passionate about building with Prisma. Explore our open positions on our [Careers page](https://www.prisma.io/careers#current) and find the role that’s right for you.

    Enterprise support

    Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.

    With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.

    Open source →
  19. 7.3.0-integration-prisma6-fix-cloudflare-engine.319 Dec 2025pre-release

    Nothing published for this version

  20. 7.3.0-integration-prisma6-fix-cloudflare-engine.218 Dec 2025pre-release

    Nothing published for this version

  21. 7.3.0-integration-prisma6-fix-cloudflare-engine.118 Dec 2025pre-release

    Nothing published for this version

  22. 7.3.0-integration-parameterization.1520 Jan 2026pre-release

    Nothing published for this version

  23. 7.3.0-integration-parameterization.1420 Jan 2026pre-release

    Nothing published for this version

  24. 7.3.0-integration-parameterization.1320 Jan 2026pre-release

    Nothing published for this version

  25. 7.3.0-integration-parameterization.1220 Jan 2026pre-release

    Nothing published for this version

  26. 7.3.0-integration-parameterization.1120 Jan 2026pre-release

    Nothing published for this version

  27. 7.3.0-integration-parameterization.1020 Jan 2026pre-release

    Nothing published for this version

  28. 7.3.0-integration-parameterization.920 Jan 2026pre-release

    Nothing published for this version

  29. 7.3.0-integration-parameterization.820 Jan 2026pre-release

    Nothing published for this version

  30. 7.3.0-integration-parameterization.720 Jan 2026pre-release

    Nothing published for this version

  31. 7.3.0-integration-parameterization.617 Jan 2026pre-release

    Nothing published for this version

  32. 7.3.0-integration-parameterization.517 Jan 2026pre-release

    Nothing published for this version

  33. 7.3.0-integration-parameterization.417 Jan 2026pre-release

    Nothing published for this version

  34. 7.3.0-integration-fix-6-19-0-cloudflare-accelerate-engine.118 Dec 2025pre-release

    Nothing published for this version

  35. 7.3.0-integration-engines-7-3-0-19-feat-minor-fixes-on-qc-parameterization-c32a571f4d5d8fe47265c7a4515fcd51d88c7309.221 Jan 2026pre-release

    Nothing published for this version

  36. 7.3.0-integration-engines-7-3-0-19-feat-minor-fixes-on-qc-parameterization-c32a571f4d5d8fe47265c7a4515fcd51d88c7309.121 Jan 2026pre-release

    Nothing published for this version

  37. 7.3.0-integration-engines-7-3-0-15-parameterization-751774bd0247fad96ff209ca5a958e4a0f0f036a.120 Jan 2026pre-release

    Nothing published for this version

  38. 7.3.0-integration-engines-7-3-0-13-parameterization-ffcc2ffa23a1cf2fa93cc75600377a7bcf8b3b08.116 Jan 2026pre-release

    Nothing published for this version

  39. 7.3.0-integration-engines-7-3-0-12-parameterization-844f54891f0a80ec1820fc26cf513002357e4245.114 Jan 2026pre-release

    Nothing published for this version

  40. 7.3.0-integration-engines-7-3-0-10-fix-fix-mapped-enum-issue-0b7e6564db7dc3dac7f9312aa84e9ed81d805521.15 Jan 2026pre-release

    Nothing published for this version

  41. 7.3.0-integration-aqrln-upskmmvouusz.117 Jan 2026pre-release

    Nothing published for this version

  42. 7.3.0-dev.1921 Jan 2026pre-release

    Nothing published for this version

  43. 7.3.0-dev.1820 Jan 2026pre-release

    Nothing published for this version

  44. 7.3.0-dev.1720 Jan 2026pre-release

    Nothing published for this version

  45. 7.3.0-dev.1619 Jan 2026pre-release

    Nothing published for this version

  46. 7.3.0-dev.1513 Jan 2026pre-release

    Nothing published for this version

  47. 7.3.0-dev.1412 Jan 2026pre-release

    Nothing published for this version

  48. 7.3.0-dev.1312 Jan 2026pre-release

    Nothing published for this version

  49. 7.3.0-dev.1212 Jan 2026pre-release

    Nothing published for this version

  50. 7.3.0-dev.1112 Jan 2026pre-release

    Nothing published for this version

  51. 7.3.0-dev.108 Jan 2026pre-release

    Nothing published for this version

  52. 7.3.0-dev.96 Jan 2026pre-release

    Nothing published for this version

  53. 7.3.0-dev.86 Jan 2026pre-release

    Nothing published for this version

  54. 7.3.0-dev.76 Jan 2026pre-release

    Nothing published for this version

  55. 7.3.0-dev.62 Jan 2026pre-release

    Nothing published for this version

  56. 7.3.0-dev.51 Jan 2026pre-release

    Nothing published for this version

  57. 7.3.0-dev.41 Jan 2026pre-release

    Nothing published for this version

  58. 7.3.0-dev.331 Dec 2025pre-release

    Nothing published for this version

  59. 7.3.0-dev.231 Dec 2025pre-release

    Nothing published for this version

  60. 7.3.0-dev.119 Dec 2025pre-release

    Nothing published for this version