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. 4.2.0-dev.528 Aug 2022pre-release

    Nothing published for this version

  2. 4.2.0-dev.518 Aug 2022pre-release

    Nothing published for this version

  3. 4.2.0-dev.508 Aug 2022pre-release

    Nothing published for this version

  4. 4.2.0-dev.495 Aug 2022pre-release

    Nothing published for this version

  5. 4.2.0-dev.485 Aug 2022pre-release

    Nothing published for this version

  6. 4.2.0-dev.475 Aug 2022pre-release

    Nothing published for this version

  7. 4.2.0-dev.465 Aug 2022pre-release

    Nothing published for this version

  8. 4.2.0-dev.455 Aug 2022pre-release

    Nothing published for this version

  9. 4.2.0-dev.445 Aug 2022pre-release

    Nothing published for this version

  10. 4.2.0-dev.435 Aug 2022pre-release

    Nothing published for this version

  11. 4.2.0-dev.424 Aug 2022pre-release

    Nothing published for this version

  12. 4.2.0-dev.414 Aug 2022pre-release

    Nothing published for this version

  13. 4.2.0-dev.404 Aug 2022pre-release

    Nothing published for this version

  14. 4.2.0-dev.394 Aug 2022pre-release

    Nothing published for this version

  15. 4.2.0-dev.383 Aug 2022pre-release

    Nothing published for this version

  16. 4.2.0-dev.373 Aug 2022pre-release

    Nothing published for this version

  17. 4.2.0-dev.363 Aug 2022pre-release

    Nothing published for this version

  18. 4.2.0-dev.353 Aug 2022pre-release

    Nothing published for this version

  19. 4.2.0-dev.343 Aug 2022pre-release

    Nothing published for this version

  20. 4.2.0-dev.333 Aug 2022pre-release

    Nothing published for this version

  21. 4.2.0-dev.323 Aug 2022pre-release

    Nothing published for this version

  22. 4.2.0-dev.313 Aug 2022pre-release

    Nothing published for this version

  23. 4.2.0-dev.303 Aug 2022pre-release

    Nothing published for this version

  24. 4.2.0-dev.293 Aug 2022pre-release

    Nothing published for this version

  25. 4.2.0-dev.282 Aug 2022pre-release

    Nothing published for this version

  26. 4.2.0-dev.272 Aug 2022pre-release

    Nothing published for this version

  27. 4.2.0-dev.261 Aug 2022pre-release

    Nothing published for this version

  28. 4.2.0-dev.251 Aug 2022pre-release

    Nothing published for this version

  29. 4.2.0-dev.2429 Jul 2022pre-release

    Nothing published for this version

  30. 4.2.0-dev.2328 Jul 2022pre-release

    Nothing published for this version

  31. 4.2.0-dev.2227 Jul 2022pre-release

    Nothing published for this version

  32. 4.2.0-dev.2127 Jul 2022pre-release

    Nothing published for this version

  33. 4.2.0-dev.2027 Jul 2022pre-release

    Nothing published for this version

  34. 4.2.0-dev.1927 Jul 2022pre-release

    Nothing published for this version

  35. 4.2.0-dev.1827 Jul 2022pre-release

    Nothing published for this version

  36. 4.2.0-dev.1727 Jul 2022pre-release

    Nothing published for this version

  37. 4.2.0-dev.1627 Jul 2022pre-release

    Nothing published for this version

  38. 4.2.0-dev.1526 Jul 2022pre-release

    Nothing published for this version

  39. 4.2.0-dev.1425 Jul 2022pre-release

    Nothing published for this version

  40. 4.2.0-dev.1322 Jul 2022pre-release

    Nothing published for this version

  41. 4.2.0-dev.1222 Jul 2022pre-release

    Nothing published for this version

  42. 4.2.0-dev.1121 Jul 2022pre-release

    Nothing published for this version

  43. 4.2.0-dev.1021 Jul 2022pre-release

    Nothing published for this version

  44. 4.2.0-dev.921 Jul 2022pre-release

    Nothing published for this version

  45. 4.2.0-dev.820 Jul 2022pre-release

    Nothing published for this version

  46. 4.2.0-dev.720 Jul 2022pre-release

    Nothing published for this version

  47. 4.2.0-dev.620 Jul 2022pre-release

    Nothing published for this version

  48. 4.2.0-dev.520 Jul 2022pre-release

    Nothing published for this version

  49. 4.2.0-dev.420 Jul 2022pre-release

    Nothing published for this version

  50. 4.2.0-dev.319 Jul 2022pre-release

    Nothing published for this version

  51. 4.2.0-dev.219 Jul 2022pre-release

    Nothing published for this version

  52. 4.2.0-dev.119 Jul 2022pre-release

    Nothing published for this version

  53. 4.1.128 Jul 2022
    Release notesOpen source โ†’
  54. 4.1.1-dev.127 Jul 2022pre-release

    Nothing published for this version

  55. 4.1.019 Jul 2022
    Release notes

    ๐ŸŒŸ Help us spread the word about Prisma by starring the repo or tweeting about the release. ๐ŸŒŸ

    Upgrading to Prisma 4

    In case you missed it, we held a livestream last week and walked through issues you may run into while upgrading to Prisma 4 and how to fix them!

    Major improvements

    Ordering by nulls first and last support (Preview)

    In this release, we're adding support for choosing how to sort null values in a query.

    To get started, enable the orderByNulls Preview feature flag in your Prisma schema:

     generator client {
       provider        = "prisma-client-js"
       previewFeatures = ["orderByNulls"]
     }
    

    Next, run prisma generate to re-generate Prisma Client. You will now have new fields you can now use to order null values:

    await prisma.post.findMany({
      orderBy: {
        updatedAt: { 
          sort: 'asc',
          nulls: 'last'
        },
      },
    })
    

    Learn more in our documentation and don't hesitate to share your feedback in this issue.

    Fixed memory leaks and CPU usage in Prisma Client

    In this release, we've fixed the following issues experienced when setting up and tearing down Prisma Client while running tests:

    1. Prisma Client now correctly releases memory on Prisma Client instances that are no longer being used. Learn more in this GitHub issue
    2. Reduced CPU usage spikes when disconnecting Prisma Client instances while using Prisma Client. You can learn more in this GitHub issue

    These fixes will allow you to run your tests a little faster!

    Prisma Studio improvements

    We're refining the experience when working with Prisma studio with the following changes:

    1. An always visible filter panel and functionality to clear all filters at once

    1. Improved relationship model view with more visible buttons

    Let us know what you think, and in the event, you run into any issues, please create a GitHub issue

    Fixes and improvements

    Prisma

    Prisma Client

    Prisma Migrate

    Language tools (e.g. VS Code)

    @prisma/engines npm package

    Credits

    Huge thanks to @shian15810, @zifeo, @lodi-g, @Gnucki, @apriil15 for helping!

    ๐Ÿ’ผ We're hiring!

    If you're interested in joining our growing team to help empower developers to build data-intensive applications, Prisma is the place for you.

    We're looking for a Technical Support Engineer and Back-end Engineer: Prisma Data Platform.

    Feel free to read the job descriptions and apply using the links provided.

    ๐Ÿ“บ Join us for another "What's new in Prisma" livestream

    Learn about the latest release and other news from the Prisma community by joining us for another "What's new in Prisma" livestream.

    The stream takes place on YouTube on Thursday, July 19 at 5 pm Berlin | 8 am San Francisco.

    Open source โ†’
  56. 4.1.0-integration-valid-pkg-name.130 Jun 2022pre-release

    Nothing published for this version

  57. 4.1.0-integration-fix-version-pkg.141 Jul 2022pre-release

    Nothing published for this version

  58. 4.1.0-integration-fix-version-pkg.131 Jul 2022pre-release

    Nothing published for this version

  59. 4.1.0-integration-fix-version-pkg.121 Jul 2022pre-release

    Nothing published for this version

  60. 4.1.0-integration-fix-version-pkg.111 Jul 2022pre-release

    Nothing published for this version