PackageTrack

npm · #3659 most downloaded on npm

@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

10653 releases since 2020
20202026

One column per quarter.

Releases

  1. 5.3.0-dev.496 Sept 2023pre-release

    Nothing published for this version

  2. 5.3.0-dev.486 Sept 2023pre-release

    Nothing published for this version

  3. 5.3.0-dev.476 Sept 2023pre-release

    Nothing published for this version

  4. 5.3.0-dev.466 Sept 2023pre-release

    Nothing published for this version

  5. 5.3.0-dev.456 Sept 2023pre-release

    Nothing published for this version

  6. 5.3.0-dev.445 Sept 2023pre-release

    Nothing published for this version

  7. 5.3.0-dev.435 Sept 2023pre-release

    Nothing published for this version

  8. 5.3.0-dev.425 Sept 2023pre-release

    Nothing published for this version

  9. 5.3.0-dev.415 Sept 2023pre-release

    Nothing published for this version

  10. 5.3.0-dev.405 Sept 2023pre-release

    Nothing published for this version

  11. 5.3.0-dev.394 Sept 2023pre-release

    Nothing published for this version

  12. 5.3.0-dev.384 Sept 2023pre-release

    Nothing published for this version

  13. 5.3.0-dev.374 Sept 2023pre-release

    Nothing published for this version

  14. 5.3.0-dev.361 Sept 2023pre-release

    Nothing published for this version

  15. 5.3.0-dev.351 Sept 2023pre-release

    Nothing published for this version

  16. 5.3.0-dev.341 Sept 2023pre-release

    Nothing published for this version

  17. 5.3.0-dev.331 Sept 2023pre-release

    Nothing published for this version

  18. 5.3.0-dev.3231 Aug 2023pre-release

    Nothing published for this version

  19. 5.3.0-dev.3131 Aug 2023pre-release

    Nothing published for this version

  20. 5.3.0-dev.3031 Aug 2023pre-release

    Nothing published for this version

  21. 5.3.0-dev.2931 Aug 2023pre-release

    Nothing published for this version

  22. 5.3.0-dev.2830 Aug 2023pre-release

    Nothing published for this version

  23. 5.3.0-dev.2730 Aug 2023pre-release

    Nothing published for this version

  24. 5.3.0-dev.2630 Aug 2023pre-release

    Nothing published for this version

  25. 5.3.0-dev.2530 Aug 2023pre-release

    Nothing published for this version

  26. 5.3.0-dev.2430 Aug 2023pre-release

    Nothing published for this version

  27. 5.3.0-dev.2330 Aug 2023pre-release

    Nothing published for this version

  28. 5.3.0-dev.2230 Aug 2023pre-release

    Nothing published for this version

  29. 5.3.0-dev.2130 Aug 2023pre-release

    Nothing published for this version

  30. 5.3.0-dev.2030 Aug 2023pre-release

    Nothing published for this version

  31. 5.3.0-dev.1929 Aug 2023pre-release

    Nothing published for this version

  32. 5.3.0-dev.1829 Aug 2023pre-release

    Nothing published for this version

  33. 5.3.0-dev.1729 Aug 2023pre-release

    Nothing published for this version

  34. 5.3.0-dev.1628 Aug 2023pre-release

    Nothing published for this version

  35. 5.3.0-dev.1528 Aug 2023pre-release

    Nothing published for this version

  36. 5.3.0-dev.1428 Aug 2023pre-release

    Nothing published for this version

  37. 5.3.0-dev.1328 Aug 2023pre-release

    Nothing published for this version

  38. 5.3.0-dev.1228 Aug 2023pre-release

    Nothing published for this version

  39. 5.3.0-dev.1128 Aug 2023pre-release

    Nothing published for this version

  40. 5.3.0-dev.1028 Aug 2023pre-release

    Nothing published for this version

  41. 5.3.0-dev.926 Aug 2023pre-release

    Nothing published for this version

  42. 5.3.0-dev.825 Aug 2023pre-release

    Nothing published for this version

  43. 5.3.0-dev.725 Aug 2023pre-release

    Nothing published for this version

  44. 5.3.0-dev.624 Aug 2023pre-release

    Nothing published for this version

  45. 5.3.0-dev.523 Aug 2023pre-release

    Nothing published for this version

  46. 5.3.0-dev.423 Aug 2023pre-release

    Nothing published for this version

  47. 5.3.0-dev.323 Aug 2023pre-release

    Nothing published for this version

  48. 5.3.0-dev.223 Aug 2023pre-release

    Nothing published for this version

  49. 5.3.0-dev.122 Aug 2023pre-release

    Nothing published for this version

  50. 5.2.022 Aug 2023
    Release notes

    🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

    Highlights

    Improved Prisma Client experience for Prisma Accelerate and Data Proxy

    In this release, we’ve made the following improvements to Prisma Client when using Prisma Accelerate or Prisma Data Proxy:

    • Prisma Client will now automatically determine how it should connect to the database depending on the protocol in the connection string. If the connection string starts with prisma://, Prisma Client will try to connect to your database using Prisma Accelerate or Prisma Data Proxy.

    • Prisma Studio now works with Prisma Data Proxy and Prisma Accelerate.

    • We’ve introduced a new --no-engine flag which will prevent a Query Engine file from being included in the generated Prisma Client. This flag will also help ensure the bundle size of your application remains small by excluding the Query Engine files from the generated Prisma Client.

      prisma generate --no-engine
      

      The --data-proxy and --accelerate flags have not been removed but are now aliases for the new --no-engine flag.

      We recommend using the --no-engine flag when generating Prisma Client that uses either Accelerate or Data Proxy.

    Simplified connection string override in Prisma Client

    This release simplifies the API used when programmatically overriding the connection string by introducing the datasourceUrl property in Prisma Client’s constructor. This means you do not have to use the datasource name defined in your Prisma schema.

    const prisma = new PrismaClient({
      datasourceUrl: "postgresql://johndoe:randompassword@localhost:5432/mydb",
    })
    

    Query performance improvements

    Continuing our work from 5.1.0 we made further performance improvements around the queries Prisma executes, targeting one-to-many relation fields and nested updates.

    Use LIMIT in one-to-many relations on a single parent

    In cases where there is a single parent with a one-to-many relation included (findFirst, findUnique, findMany({ take: 1 })), we now utilize LIMIT at the database level to restrict the number of related items returned instead of retrieving all related items into memory and performing a take in memory.

    For situations where you have many related objects but only need a few, you should see a dramatic improvement in speed and memory usage.

    Note: we are still working on bringing this improvement to other parts of Prisma Client in upcoming releases. If multiple parent records are returned, the previous behavior is used.

    Further improvements for nested writes

    Thanks to our introduction of using RETURNING in some cases in 5.1.0, we could now improve performance in nested writes by removing reload nodes. This will now result in one less query per relation traversed in a nested write. For more info, check out the pull request.

    Prisma Client query

    await prisma.post.update({
      where: { id: 1 },
      data: {
        comment: {
          update: { 
            data: {
              body: "Updated comment body"
            }
          }
        }
      },
      select: {
        id: true,
        title: true,
      }
    })
    

    Before v5.2.0

    SELECT "Post"."id", "Post"."title" FROM "Post" WHERE ("Post"."id" = $1 AND 1=1) LIMIT $2 OFFSET $3
    SELECT "Post"."id", "Post"."userId" FROM "Post" WHERE "Post"."id" = $1 OFFSET $2
    SELECT "User"."id" FROM "User" WHERE (1=1 AND "User"."id" IN ($1)) OFFSET $2
    SELECT "User"."id" FROM "User" WHERE ("User"."id" = $1 AND 1=1) LIMIT $2 OFFSET $3
    SELECT "User"."id", "User"."commentId" FROM "User" WHERE "User"."id" = $1 OFFSET $2
    SELECT "Comment"."id" FROM "Comment" WHERE (1=1 AND "Comment"."id" IN ($1)) OFFSET $2
    UPDATE "Comment" SET "body" = $1 WHERE ("Comment"."id" = $2 AND 1=1) RETURNING "Comment"."id"
    SELECT "Post"."id", "Post"."title" FROM "Post" WHERE "Post"."id" = $1 LIMIT $2 OFFSET $3
    

    5.2.0 and later

    SELECT "Post"."id", "Post"."title", "Post"."userId" FROM "Post" WHERE ("Post"."id" = $1 AND 1=1) LIMIT $2 OFFSET $3
    SELECT "User"."id" FROM "User" WHERE (1=1 AND "User"."id" IN ($1)) OFFSET $2
    SELECT "User"."id", "User"."commentId" FROM "User" WHERE ("User"."id" = $1 AND 1=1) LIMIT $2 OFFSET $3
    SELECT "Comment"."id" FROM "Comment" WHERE (1=1 AND "Comment"."id" IN ($1)) OFFSET $2
    UPDATE "Comment" SET "body" = $1 WHERE ("Comment"."id" = $2 AND 1=1) RETURNING "Comment"."id"
    SELECT "Post"."id", "Post"."title" FROM "Post" WHERE "Post"."id" = $1 LIMIT $2 OFFSET $3
    

    Fixes and improvements

    Prisma Client

    Prisma Migrate

    Credits

    Huge thanks to @skyzh, @alula, @michaelpoellath, @RobertCraigie, @darthmaim, @Gerschtli, @andyjy, @mejiaej, @iurylippo, @mrazauskas, @coder246, @RDIL for helping!

    Open source →
  51. 5.2.0-integration-remove-binary-sql.110 Aug 2023pre-release

    Nothing published for this version

  52. 5.2.0-integration-refactor-remove-dataproxy.816 Aug 2023pre-release

    Nothing published for this version

  53. 5.2.0-integration-refactor-remove-dataproxy.715 Aug 2023pre-release

    Nothing published for this version

  54. 5.2.0-integration-refactor-remove-dataproxy.615 Aug 2023pre-release

    Nothing published for this version

  55. 5.2.0-integration-refactor-remove-dataproxy.515 Aug 2023pre-release

    Nothing published for this version

  56. 5.2.0-integration-refactor-remove-dataproxy.415 Aug 2023pre-release

    Nothing published for this version

  57. 5.2.0-integration-refactor-remove-dataproxy.315 Aug 2023pre-release

    Nothing published for this version

  58. 5.2.0-integration-refactor-remove-dataproxy.215 Aug 2023pre-release

    Nothing published for this version

  59. 5.2.0-integration-refactor-remove-dataproxy.114 Aug 2023pre-release

    Nothing published for this version

  60. 5.2.0-integration-refactor-cli-remove-dataproxy-envvar.17 Aug 2023pre-release

    Nothing published for this version