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.9.0-dev.3022 Jan 2024pre-release

    Nothing published for this version

  2. 5.9.0-dev.2922 Jan 2024pre-release

    Nothing published for this version

  3. 5.9.0-dev.2822 Jan 2024pre-release

    Nothing published for this version

  4. 5.9.0-dev.2722 Jan 2024pre-release

    Nothing published for this version

  5. 5.9.0-dev.2622 Jan 2024pre-release

    Nothing published for this version

  6. 5.9.0-dev.2519 Jan 2024pre-release

    Nothing published for this version

  7. 5.9.0-dev.2418 Jan 2024pre-release

    Nothing published for this version

  8. 5.9.0-dev.2318 Jan 2024pre-release

    Nothing published for this version

  9. 5.9.0-dev.2218 Jan 2024pre-release

    Nothing published for this version

  10. 5.9.0-dev.2118 Jan 2024pre-release

    Nothing published for this version

  11. 5.9.0-dev.1918 Jan 2024pre-release

    Nothing published for this version

  12. 5.9.0-dev.1817 Jan 2024pre-release

    Nothing published for this version

  13. 5.9.0-dev.1717 Jan 2024pre-release

    Nothing published for this version

  14. 5.9.0-dev.1617 Jan 2024pre-release

    Nothing published for this version

  15. 5.9.0-dev.1517 Jan 2024pre-release

    Nothing published for this version

  16. 5.9.0-dev.1417 Jan 2024pre-release

    Nothing published for this version

  17. 5.9.0-dev.1317 Jan 2024pre-release

    Nothing published for this version

  18. 5.9.0-dev.1216 Jan 2024pre-release

    Nothing published for this version

  19. 5.9.0-dev.1116 Jan 2024pre-release

    Nothing published for this version

  20. 5.9.0-dev.1015 Jan 2024pre-release

    Nothing published for this version

  21. 5.9.0-dev.915 Jan 2024pre-release

    Nothing published for this version

  22. 5.9.0-dev.815 Jan 2024pre-release

    Nothing published for this version

  23. 5.9.0-dev.712 Jan 2024pre-release

    Nothing published for this version

  24. 5.9.0-dev.612 Jan 2024pre-release

    Nothing published for this version

  25. 5.9.0-dev.512 Jan 2024pre-release

    Nothing published for this version

  26. 5.9.0-dev.412 Jan 2024pre-release

    Nothing published for this version

  27. 5.9.0-dev.311 Jan 2024pre-release

    Nothing published for this version

  28. 5.9.0-dev.210 Jan 2024pre-release

    Nothing published for this version

  29. 5.9.0-dev.110 Jan 2024pre-release

    Nothing published for this version

  30. 5.8.115 Jan 2024
    Release notes

    Today, we are issuing the 5.8.1 patch release.

    Fix in Prisma Client

    Open source →
  31. 5.8.1-dev.115 Jan 2024pre-release

    Nothing published for this version

  32. 5.8.09 Jan 2024
    Release notes

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

    Highlights

    Happy New Year from your friends at Prisma! 🎊

    In the last 4 weeks, we resolved some bugs on the ORM and made some progress on some exciting features that we’re not yet ready to announce. Stay tuned for the upcoming releases, in which we’ll be announcing new features. 😉

    relationJoins improvements: Relation loading strategy per query (Preview)

    In version 5.7.0, we released relationJoins into Preview. The relationJoins feature enables support for JOINs for relation queries.

    This release adds support for the ability to specify the strategy used to fetch relational data per query when the Preview feature is enabled. This will enable you to choose the most efficient strategy for fetching relation data depending on your use case.

    You can now load relation data using either of the following strategies:

    • join — uses JOINs to fetch relation data
    • query — uses separate queries to fetch relation data

    When the relationJoins Preview feature is enabled, by default, the relation fetching strategy used is join. You can override the default behavior by using the relationLoadStrategy query option.

    To get started, enable the Preview feature:

    // schema.prisma
    generator client {
      provider        = "prisma-client-js"
      previewFeatures = ["relationJoins"]
    }
    

    … and specify the relation loading strategy for your query as follows:

    await prisma.user.findMany({
      relationLoadStrategy: 'query',
      include: {
        posts: true,
      },
    })
    

    Try it out and share your feedback and create a bug report if you encounter any issues.

    Survey: Edge functions support

    We’re working on bringing Edge function support to Prisma ORM and we would appreciate your input by submitting a response to our survey. By filling out the survey, you will be considered for our Early Access cohort as soon as we have something for you to try out.

    Fixes and improvements

    Prisma Client

    Prisma Migrate

    Language tools (e.g. VS Code)

    Credits

    Huge thanks to @anuraaga, @onichandame, @LucianBuzzo, @RobertCraigie, @fqazi, @KhooHaoYit, @alencardc, @Oreilles, @tinola, @AikoRamalho, @luxaritas for helping!

    Company news

    🎉 A billion queries and counting: Prisma Accelerate

    Prisma Accelerate, our global database cache has served over 1 billion queries since its General Availability launch.

    We’d like to give a shoutout to our team and everyone who’s been with us on this journey. Stay tuned for some exciting products and features in the pipeline for 2024!

    🔮 Prisma ORM Ecosystem

    Are you building a cool tool, extension, generator, CLI tool or anything else, for Prisma ORM? Let us know.

    We would like to learn about it and feature it on our Ecosystem page.

    💼 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. Check out our Careers page for open positions.

    Open source →
  33. 5.8.0-integration-refactor-consistently-use-binarytarget-term.213 Dec 2023pre-release

    Nothing published for this version

  34. 5.8.0-integration-refactor-consistently-use-binarytarget-term.113 Dec 2023pre-release

    Nothing published for this version

  35. 5.8.0-integration-freebsd14.113 Dec 2023pre-release

    Nothing published for this version

  36. 5.8.0-integration-fix-client-performance-global-polyfill.17 Dec 2023pre-release

    Nothing published for this version

  37. 5.8.0-integration-feat-prisma-pg-worker.119 Dec 2023pre-release

    Nothing published for this version

  38. 5.8.0-integration-engines-5-8-0-8-integration-mongodb-2-8-0-f60e13569866f407fae88c54f36658b3fe1ab26a.212 Dec 2023pre-release

    Nothing published for this version

  39. 5.8.0-integration-engines-5-8-0-8-integration-mongodb-2-8-0-f60e13569866f407fae88c54f36658b3fe1ab26a.112 Dec 2023pre-release

    Nothing published for this version

  40. 5.8.0-integration-engines-5-8-0-5-integration-wasm-decrease-size-1-3mb-939e3788636bc4a04bb8b74ac6e605825d6836b7.211 Dec 2023pre-release

    Nothing published for this version

  41. 5.8.0-integration-engines-5-8-0-5-integration-wasm-decrease-size-1-3mb-939e3788636bc4a04bb8b74ac6e605825d6836b7.111 Dec 2023pre-release

    Nothing published for this version

  42. 5.8.0-integration-engines-5-8-0-36-feat-qe-implement-relationloadstrategy-api-d2f09986b7514e6bda7b9fa6b000aec0c4cd8180.18 Jan 2024pre-release

    Nothing published for this version

  43. 5.8.0-integration-engines-5-7-0-25-dependabot-cargo-openssl-0-10-60-9a053826a18b859f8ab4403a00edeca5623f442b.17 Dec 2023pre-release

    Nothing published for this version

  44. 5.8.0-integration-chore-client-wasm-auto-include-poc.38 Dec 2023pre-release

    Nothing published for this version

  45. 5.8.0-integration-chore-client-wasm-auto-include-poc.28 Dec 2023pre-release

    Nothing published for this version

  46. 5.8.0-integration-chore-client-wasm-auto-include-poc.18 Dec 2023pre-release

    Nothing published for this version

  47. 5.8.0-dev.539 Jan 2024pre-release

    Nothing published for this version

  48. 5.8.0-dev.528 Jan 2024pre-release

    Nothing published for this version

  49. 5.8.0-dev.515 Jan 2024pre-release

    Nothing published for this version

  50. 5.8.0-dev.504 Jan 2024pre-release

    Nothing published for this version

  51. 5.8.0-dev.493 Jan 2024pre-release

    Nothing published for this version

  52. 5.8.0-dev.483 Jan 2024pre-release

    Nothing published for this version

  53. 5.8.0-dev.473 Jan 2024pre-release

    Nothing published for this version

  54. 5.8.0-dev.463 Jan 2024pre-release

    Nothing published for this version

  55. 5.8.0-dev.453 Jan 2024pre-release

    Nothing published for this version

  56. 5.8.0-dev.443 Jan 2024pre-release

    Nothing published for this version

  57. 5.8.0-dev.432 Jan 2024pre-release

    Nothing published for this version

  58. 5.8.0-dev.4226 Dec 2023pre-release

    Nothing published for this version

  59. 5.8.0-dev.4120 Dec 2023pre-release

    Nothing published for this version

  60. 5.8.0-dev.4020 Dec 2023pre-release

    Nothing published for this version