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

10652 releases since 2020
20202026

Releases

  1. 6.2.0-integration-engines-6-2-0-9-feat-sqlite-enum-de83b89d1d4a474e646feab1929290e26fdf82d7.42 Jan 2025pre-release

    Nothing published for this version

  2. 6.2.0-integration-engines-6-2-0-9-feat-sqlite-enum-de83b89d1d4a474e646feab1929290e26fdf82d7.32 Jan 2025pre-release

    Nothing published for this version

  3. 6.2.0-integration-engines-6-2-0-9-feat-sqlite-enum-de83b89d1d4a474e646feab1929290e26fdf82d7.231 Dec 2024pre-release

    Nothing published for this version

  4. 6.2.0-integration-engines-6-2-0-9-feat-sqlite-enum-de83b89d1d4a474e646feab1929290e26fdf82d7.131 Dec 2024pre-release

    Nothing published for this version

  5. 6.2.0-integration-engines-6-2-0-7-feat-update-many-and-return-f165828e67aa4eee12e3988ecaef03a622c2c96c.730 Dec 2024pre-release

    Nothing published for this version

  6. 6.2.0-integration-engines-6-2-0-7-feat-update-many-and-return-f165828e67aa4eee12e3988ecaef03a622c2c96c.630 Dec 2024pre-release

    Nothing published for this version

  7. 6.2.0-integration-engines-6-2-0-7-feat-update-many-and-return-f165828e67aa4eee12e3988ecaef03a622c2c96c.530 Dec 2024pre-release

    Nothing published for this version

  8. 6.2.0-integration-engines-6-2-0-7-feat-update-many-and-return-f165828e67aa4eee12e3988ecaef03a622c2c96c.430 Dec 2024pre-release

    Nothing published for this version

  9. 6.2.0-integration-engines-6-2-0-7-feat-update-many-and-return-f165828e67aa4eee12e3988ecaef03a622c2c96c.330 Dec 2024pre-release

    Nothing published for this version

  10. 6.2.0-integration-engines-6-2-0-7-feat-update-many-and-return-f165828e67aa4eee12e3988ecaef03a622c2c96c.230 Dec 2024pre-release

    Nothing published for this version

  11. 6.2.0-integration-engines-6-2-0-7-feat-update-many-and-return-f165828e67aa4eee12e3988ecaef03a622c2c96c.130 Dec 2024pre-release

    Nothing published for this version

  12. 6.2.0-integration-engines-6-2-0-13-integration-sql-nested-transactions4-fa6eebbccfd5b45ef639efcb0fe328c189735aa4.27 Jan 2025pre-release

    Nothing published for this version

  13. 6.2.0-integration-engines-6-2-0-13-integration-sql-nested-transactions4-fa6eebbccfd5b45ef639efcb0fe328c189735aa4.17 Jan 2025pre-release

    Nothing published for this version

  14. 6.2.0-dev.147 Jan 2025pre-release

    Nothing published for this version

  15. 6.2.0-dev.136 Jan 2025pre-release

    Nothing published for this version

  16. 6.2.0-dev.126 Jan 2025pre-release

    Nothing published for this version

  17. 6.2.0-dev.116 Jan 2025pre-release

    Nothing published for this version

  18. 6.2.0-dev.102 Jan 2025pre-release

    Nothing published for this version

  19. 6.2.0-dev.925 Dec 2024pre-release

    Nothing published for this version

  20. 6.2.0-dev.824 Dec 2024pre-release

    Nothing published for this version

  21. 6.2.0-dev.723 Dec 2024pre-release

    Nothing published for this version

  22. 6.2.0-dev.620 Dec 2024pre-release

    Nothing published for this version

  23. 6.2.0-dev.519 Dec 2024pre-release

    Nothing published for this version

  24. 6.2.0-dev.419 Dec 2024pre-release

    Nothing published for this version

  25. 6.2.0-dev.319 Dec 2024pre-release

    Nothing published for this version

  26. 6.2.0-dev.218 Dec 2024pre-release

    Nothing published for this version

  27. 6.2.0-dev.118 Dec 2024pre-release

    Nothing published for this version

  28. 6.1.017 Dec 2024
    Release notes

    Today we're releasing Prisma ORM version 6.1.0

    In this version our tracing Preview feature is being graduated to GA!

    Highlights

    Tracing goes GA

    The tracing Preview feature is now stable. You now no longer have to include tracing in your set of enabled preview features.

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

    We have also changed some of the spans generated by Prisma Client. Previously, a trace would report the following spans:

    prisma:client:operation
    prisma:client:serialize
    prisma:engine
    prisma:engine:connection
    prisma:engine:db_query
    prisma:engine:serialize
    

    Now, the following are reported:

    prisma:client:operation
    prisma:client:serialize
    prisma:engine:query
    prisma:engine:connection
    prisma:engine:db_query
    prisma:engine:serialize
    prisma:engine:response_json_serialization
    

    Additionally, we have made a few changes to our dependencies:

    • @opentelemetry/api is now a peer dependency instead of a regular dependency
    • registerInstrumentations in @opentelemetry/instrumentation is now re-exported by @prisma/instrumentation

    After upgrading to Prisma ORM 6.1.0 you will need to add @opentelemetry/api to your dependencies if you haven't already:

    npm install @opentelemetry/api
    

    You will also no longer need to have @opentelemetry/instrumentation if you only use registerInstrumentations. In this case you can import registerInstrumentations from @prisma/instrumentation

    - import { PrismaInstrumentation } from '@prisma/instrumentation'
    + import { PrismaInstrumentation, registerInstrumentations } from '@prisma/instrumentation'
    

    Mutli-line comments in Prisma Schema Language (PSL)

    Comments can now be defined as multi-line in your Prisma schema! Comments can use the existing format:

    // this is a schema comment
    

    or can now also use our multi-line format:

    /*
     * this is a multi-line comment
     * You can add in all you want here
     * Keep typing and this comment will keep on going
     */
    

    Bug fixes

    Tracing related

    As we're moving our tracing preview to GA, a number of issues have been resolved. Here are a few highlights:

    Other issues

    We also have a number of other issues that were resolved outside of our tracing feature.

    Fixes and improvements

    Prisma

    Prisma Client

    Open source →
  29. 6.1.0-integration-expose-deserialize-raw-result.12 Dec 2024pre-release

    Nothing published for this version

  30. 6.1.0-integration-engines-6-1-0-18-fixup-wasm-response-json-serialization-span-8988abfac9afb8e5e01a2f1862852f4e8ce393e0.116 Dec 2024pre-release

    Nothing published for this version

  31. 6.1.0-integration-engines-6-1-0-17-fixup-wasm-response-json-serialization-span-18513eab509bdb5aef5cdd9c553594c3924d18cb.116 Dec 2024pre-release

    Nothing published for this version

  32. 6.1.0-dev.3417 Dec 2024pre-release

    Nothing published for this version

  33. 6.1.0-dev.3317 Dec 2024pre-release

    Nothing published for this version

  34. 6.1.0-dev.3217 Dec 2024pre-release

    Nothing published for this version

  35. 6.1.0-dev.3116 Dec 2024pre-release

    Nothing published for this version

  36. 6.1.0-dev.3016 Dec 2024pre-release

    Nothing published for this version

  37. 6.1.0-dev.2916 Dec 2024pre-release

    Nothing published for this version

  38. 6.1.0-dev.2816 Dec 2024pre-release

    Nothing published for this version

  39. 6.1.0-dev.2716 Dec 2024pre-release

    Nothing published for this version

  40. 6.1.0-dev.2616 Dec 2024pre-release

    Nothing published for this version

  41. 6.1.0-dev.2516 Dec 2024pre-release

    Nothing published for this version

  42. 6.1.0-dev.2416 Dec 2024pre-release

    Nothing published for this version

  43. 6.1.0-dev.2316 Dec 2024pre-release

    Nothing published for this version

  44. 6.1.0-dev.2216 Dec 2024pre-release

    Nothing published for this version

  45. 6.1.0-dev.2116 Dec 2024pre-release

    Nothing published for this version

  46. 6.1.0-dev.2016 Dec 2024pre-release

    Nothing published for this version

  47. 6.1.0-dev.1916 Dec 2024pre-release

    Nothing published for this version

  48. 6.1.0-dev.1816 Dec 2024pre-release

    Nothing published for this version

  49. 6.1.0-dev.1716 Dec 2024pre-release

    Nothing published for this version

  50. 6.1.0-dev.1616 Dec 2024pre-release

    Nothing published for this version

  51. 6.1.0-dev.1513 Dec 2024pre-release

    Nothing published for this version

  52. 6.1.0-dev.1412 Dec 2024pre-release

    Nothing published for this version

  53. 6.1.0-dev.136 Dec 2024pre-release

    Nothing published for this version

  54. 6.1.0-dev.125 Dec 2024pre-release

    Nothing published for this version

  55. 6.1.0-dev.114 Dec 2024pre-release

    Nothing published for this version

  56. 6.1.0-dev.103 Dec 2024pre-release

    Nothing published for this version

  57. 6.1.0-dev.93 Dec 2024pre-release

    Nothing published for this version

  58. 6.1.0-dev.83 Dec 2024pre-release

    Nothing published for this version

  59. 6.1.0-dev.72 Dec 2024pre-release

    Nothing published for this version

  60. 6.1.0-dev.62 Dec 2024pre-release

    Nothing published for this version