Skip to content

[Snyk] Upgrade @prisma/client from 5.1.1 to 5.11.0#6

Open
darlaterry wants to merge 1 commit into
Your_MOM_Agentfrom
snyk-upgrade-ee29c14e2e38f3fc2184a9ed9e6b8770
Open

[Snyk] Upgrade @prisma/client from 5.1.1 to 5.11.0#6
darlaterry wants to merge 1 commit into
Your_MOM_Agentfrom
snyk-upgrade-ee29c14e2e38f3fc2184a9ed9e6b8770

Conversation

@darlaterry

Copy link
Copy Markdown
Owner

This PR was automatically created by Snyk using the credentials of a real user.


Snyk has created this PR to upgrade @prisma/client from 5.1.1 to 5.11.0.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 1315 versions ahead of your current version.
  • The recommended version was released a month ago, on 2024-03-12.

The recommended version fixes:

Severity Issue PriorityScore (*) Exploit Maturity
Regular Expression Denial of Service (ReDoS)
SNYK-JS-ZOD-5925617
696/1000
Why? Proof of Concept exploit, Has a fix available, CVSS 7.5
Proof of Concept
Resource Exhaustion
SNYK-JS-NEXT-6032387
696/1000
Why? Proof of Concept exploit, Has a fix available, CVSS 7.5
Proof of Concept
Improper Input Validation
SNYK-JS-POSTCSS-5926692
696/1000
Why? Proof of Concept exploit, Has a fix available, CVSS 7.5
No Known Exploit

(*) Note that the real score may have changed since the PR was raised.

Release notes
Package name: @prisma/client
  • 5.11.0 - 2024-03-12

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

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

    Highlights

    Edge function support for Cloudflare and Vercel (Preview)

    We’re thrilled to announce that support for edge function deployments with Prisma ORM is now in Preview 🥳 As of this release, you can deploy your apps that are using Prisma ORM to:

    • Vercel Edge Functions and Vercel Edge Middleware
    • Cloudflare Workers and Cloudflare Pages

    In order to deploy to an edge function, you’ll need to use a compatible database driver (along with its Prisma driver adapter):

    • Neon Serverless Driver (for PostgreSQL databases hosted via Neon)
    • PlanetScale Serverless Driver (for MySQL databases hosted via PlanetScale)
    • pg driver (for traditional PostgreSQL databases)
    • @ libsql/client driver (for SQLite databases hosted via Turso)

    Check out our documentation to learn how you can deploy an edge function using any combination of supported edge function provider and database.

    You can also read more about it in the announcement blog post!

    Performance improvements in nested create operations

    With Prisma ORM, you can create multiple new records in nested queries, for example:

    const user = await prisma.user.update({
      where: { id: 9 },
      data: {
        name: 'Elliott',
        posts: {
          create: {
            data: [{ title: 'My first post' }, { title: 'My second post' }],
          },
        },
      },
    })

    In previous versions, Prisma ORM would translate this into multiple SQL INSERT queries, each requiring its own roundtrip to the database. As of this release, these nested create queries are optimized and the INSERT queries are sent to the database in bulk in a single roundtrip. These optimizations apply to one-to-many as well as many-to-many relations.

    With this change, using the nested create option to create multiple records effectively becomes equivalent to using a nested createMany operation (except that createMany only works with one-to-many relations, whereas create works both with one-to-many and many-to-many).

    Note: Only the deepest nested operation is optimized. If a user specified create (1) -> create (2) -> create (3) in their query, only create (3) will be optimized.

    Fixes and improvements

    Prisma Client

    Prisma Migrate

    Prisma Engines

  • 5.11.0-integration-test-imp-map-order.1 - 2024-03-11
  • 5.11.0-integration-fix-pipeline.8 - 2024-03-06
  • 5.11.0-integration-fix-pipeline.6 - 2024-03-05
  • 5.11.0-integration-fix-pipeline.5 - 2024-03-05
  • 5.11.0-integration-fix-pipeline.4 - 2024-03-05
  • 5.11.0-integration-fix-pipeline.3 - 2024-03-05
  • 5.11.0-integration-fix-pipeline.2 - 2024-03-05
  • 5.11.0-integration-fix-pg-import-ecosystem-tests.1 - 2024-03-05
  • 5.11.0-integration-fix-non-ascii.1 - 2024-02-20
  • 5.11.0-integration-fix-debug-reexport.3 - 2024-03-04
  • 5.11.0-integration-fix-debug-reexport.2 - 2024-03-04
  • 5.11.0-integration-fix-client-wasm-loading-vercel.16 - 2024-03-07
  • 5.11.0-integration-fix-client-wasm-loading-vercel.15 - 2024-03-06
  • 5.11.0-integration-fix-client-wasm-loading-vercel.14 - 2024-03-04
  • 5.11.0-integration-fix-client-wasm-loading-vercel.13 - 2024-03-01
  • 5.11.0-integration-fix-client-wasm-loading-vercel.12 - 2024-03-01
  • 5.11.0-integration-fix-client-wasm-loading-vercel.11 - 2024-03-01
  • 5.11.0-integration-fix-client-wasm-loading-vercel.10 - 2024-03-01
  • 5.11.0-integration-fix-client-wasm-loading-vercel.9 - 2024-03-01
  • 5.11.0-integration-fix-client-wasm-loading-vercel.8 - 2024-03-01
  • 5.11.0-integration-fix-client-wasm-loading-vercel.7 - 2024-02-29
  • 5.11.0-integration-fix-client-wasm-loading-vercel.6 - 2024-02-29
  • 5.11.0-integration-fix-client-wasm-loading-vercel.5 - 2024-02-29
  • 5.11.0-integration-fix-client-wasm-loading-vercel.4 - 2024-02-29
  • 5.11.0-integration-fix-client-wasm-loading-vercel.3 - 2024-02-29
  • 5.11.0-integration-fix-client-wasm-loading-vercel.2 - 2024-02-29
  • 5.11.0-integration-fix-client-wasm-loading-vercel.1 - 2024-02-29
  • 5.11.0-integration-fix-adapter-pg-again.3 - 2024-03-07
  • 5.11.0-integration-fix-adapter-pg-again.2 - 2024-03-07
  • 5.11.0-integration-feat-prisma-pg-worker.18 - 2024-02-23
  • 5.11.0-integration-feat-prisma-pg-worker.17 - 2024-02-23
  • 5.11.0-integration-feat-prisma-pg-worker.16 - 2024-02-23
  • 5.11.0-integration-feat-prisma-pg-worker.15 - 2024-02-23
  • 5.11.0-integration-feat-prisma-pg-worker.12 - 2024-02-23
  • 5.11.0-integration-feat-prisma-pg-worker.11 - 2024-02-23
  • 5.11.0-integration-feat-prisma-pg-worker.10 - 2024-02-23
  • 5.11.0-integration-feat-prisma-pg-worker.9 - 2024-02-22
  • 5.11.0-integration-feat-prisma-pg-worker.8 - 2024-02-22
  • 5.11.0-integration-feat-prisma-pg-worker.7 - 2024-02-22
  • 5.11.0-integration-feat-prisma-pg-worker.6 - 2024-02-22
  • 5.11.0-integration-feat-prisma-pg-worker.5 - 2024-02-22
  • 5.11.0-integration-feat-prisma-pg-worker.4 - 2024-02-22
  • 5.11.0-integration-feat-prisma-pg-worker.3 - 2024-02-22
  • 5.11.0-integration-feat-prisma-pg-worker.2 - 2024-02-22
  • 5.11.0-integration-feat-prisma-pg-worker.1 - 2024-02-22
  • 5.11.0-integration-engines-5-11-0-14-feat-wasm-psl-all-1291b5d304c91341e2a49095decdd9c1b0e1dc96.1 - 2024-03-11
  • 5.11.0-integration-engines-5-11-0-12-integration-joins-distinct-inmemory-4505b4687e3684b8b8de317d618aa8d2bf60fc5b.2 - 2024-03-11
  • 5.11.0-integration-engines-5-11-0-12-integration-joins-distinct-inmemory-4505b4687e3684b8b8de317d618aa8d2bf60fc5b.1 - 2024-03-11
  • 5.11.0-integration-engines-5-11-0-10-integration-joins-distinct-inmemory-3883dc47506913af0d7d8a4c82377011eb68c968.2 - 2024-03-11
  • 5.11.0-integration-engines-5-11-0-10-integration-joins-distinct-inmemory-3883dc47506913af0d7d8a4c82377011eb68c968.1 - 2024-03-11
  • 5.11.0-integration-engines-5-10-0-13-feat-qe-specific-psl-performance2-b9f77ddd4b02a49b324c20b050de9087e29da4ed.1 - 2024-02-20
  • 5.11.0-integration-chore-adapter-neon-remove-pool-check.1 - 2024-02-23
  • 5.11.0-dev.61 - 2024-03-11
  • 5.11.0-dev.60 - 2024-03-11
  • 5.11.0-dev.59 - 2024-03-11
  • 5.11.0-dev.58 - 2024-03-11
  • 5.11.0-dev.57 - 2024-03-11
  • 5.11.0-dev.56 - 2024-03-11
  • 5.11.0-dev.55 - 2024-03-11
  • 5.11.0-dev.54 - 2024-03-11
  • 5.11.0-dev.53 - 2024-03-11
  • 5.11.0-dev.52 - 2024-03-07
  • 5.11.0-dev.51 - 2024-03-07
  • 5.11.0-dev.50 - 2024-03-07
  • 5.11.0-dev.49 - 2024-03-06
  • 5.11.0-dev.48 - 2024-03-06
  • 5.11.0-dev.47 - 2024-03-06
  • 5.11.0-dev.46 - 2024-03-06
  • 5.11.0-dev.45 - 2024-03-06
  • 5.11.0-dev.44 - 2024-03-06
  • 5.11.0-dev.43 - 2024-03-05
  • 5.11.0-dev.42 - 2024-03-05
  • 5.11.0-dev.41 - 2024-03-05
  • 5.11.0-dev.40 - 2024-03-05
  • 5.11.0-dev.39 - 2024-03-05
  • 5.11.0-dev.38 - 2024-03-05
  • 5.11.0-dev.37 - 2024-03-04
  • 5.11.0-dev.36 - 2024-03-04
  • 5.11.0-dev.35 - 2024-03-04
  • 5.11.0-dev.33 - 2024-03-04
  • 5.11.0-dev.32 - 2024-03-04
  • 5.11.0-dev.31 - 2024-03-04
  • 5.11.0-dev.30 - 2024-03-04
  • 5.11.0-dev.29 - 2024-03-04
  • 5.11.0-dev.28 - 2024-03-04
  • 5.11.0-dev.27 - 2024-03-04
  • 5.11.0-dev.26 - 2024-03-04
  • 5.11.0-dev.25 - 2024-03-04
  • 5.11.0-dev.24 - 2024-03-04
  • 5.11.0-dev.23 - 2024-03-04
  • 5.11.0-dev.22 - 2024-03-04
  • 5.11.0-dev.21 - 2024-03-04
  • 5.11.0-dev.20 - 2024-03-01
  • 5.11.0-dev.19 - 2024-02-29
  • 5.11.0-dev.18 - 2024-02-28
  • 5.11.0-dev.17 - 2024-02-28
  • 5.11.0-dev.16 - 2024-02-28
  • 5.11.0-dev.15 - 2024-02-27
  • 5.11.0-dev.14 - 2024-02-27
  • 5.11.0-dev.13 - 2024-02-27
  • 5.11.0-dev.12 - 2024-02-26
  • 5.11.0-dev.11 - 2024-02-26
  • 5.11.0-dev.10 - 2024-02-26
  • 5.11.0-dev.8 - 2024-02-23
  • 5.11.0-dev.7 - 2024-02-23
  • 5.11.0-dev.6 - 2024-02-22
  • 5.11.0-dev.5 - 2024-02-21
  • 5.11.0-dev.4 - 2024-02-21
  • 5.11.0-dev.3 - 2024-02-20
  • 5.11.0-dev.2 - 2024-02-20
  • 5.11.0-dev.1 - 2024-02-20
  • 5.10.2 - 2024-02-21

    Today, we are issuing the 5.10.2 patch release.

    Fix in Prisma CLI

  • 5.10.2-dev.2 - 2024-02-21
  • 5.10.2-dev.1 - 2024-02-21
  • 5.10.1 - 2024-02-20

    Today, we are issuing the 5.10.1 patch release.

    Fix in Prisma Client / Prisma CLI

  • 5.10.1-dev.3 - 2024-02-20
  • 5.10.1-dev.2 - 2024-02-20
  • 5.10.1-dev.1 - 2024-02-20
  • 5.10.0 - 2024-02-20

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

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

    Highlights

    Optimized relation queries in MySQL (Preview)

    This release brings the optimizations for relation queries from the previous releases to MySQL as well! This means that by enabling the relationJoins Preview feature with the mysql database provider, you now also get access to the relationLoadStrategy option in relation queries that let you choose whether you want to merged relations on the application- or database-level.

    If you enable the relationJoins Preview feature, you can choose between the join and query options:

    • join (default): Sends a single query to the database and joins the data on the database-level.
    • query: Sends multiple queries to the database and joins the data on the application-level.

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

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

    Be sure to re-generate Prisma Client afterwards:

    npx prisma generate
    

    And finally, specify the relation loading strategy for your relation query via the relationLoadStrategy option as follows:

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

    Note that in the example above, the relationLoadStrategy could be omitted altogether because join is used as the default value.

    A few notes about relationLoadStrategy support on MySQL:

    • relationLoadStrategy is supported for MySQL v8.0.14 and higher. MariaDB is not supported.
    • Prisma ORM uses correlated sub-queries for MySQL (as opposed to LATERAL JOINs which are used on PostgreSQL).

    Configure transaction options in the PrismaClient constructor

    This feature enables you to configure the following transaction options on a global level via the PrismaClient constructor:

    • isolationLevel: Sets the transaction isolation level. By default, this is set to the value currently configured in your database.
    • timeout: The maximum amount of time the interactive transaction can run before being canceled and rolled back. The default value is 5 seconds.
    • maxWait: The maximum amount of time Prisma Client will wait to acquire a transaction from the database. The default value is 2 seconds.

    Here is an example of how you can set this value globally for all transactions:

    const prisma = new PrismaClient({
      transactionOptions: {
        isolationLevel: 'ReadCommitted',
        timeout: 1_000, // 1 sec
        maxWait: 2_000  // 2 sec
      }
    })

    Thanks a lot to our fantastic community member @ tockn, who took the initiative to implement this feature in Prisma ORM 🎉

    Note that you can still override the global values by setting them on a particular transaction.

    New P2037 code for “Too many database connections opened” errors

    We introduced a new error code for “Too many database connections opened” errors: P2037. You can find all error codes in our documentation.

    Access the Prisma Data Platform via Prisma CLI

    Now available in Early Access, you can manage your workspace and configure Prisma Accelerate and Prisma Pulse directly from the terminal.

    Visit our docs to learn more about the integration and try it out for yourself!

    Fixes and improvements

    Prisma Client

  • 5.10.0-integration-refactor-client-remove-dataproxy-wasm.2 - 2024-02-12
  • 5.10.0-integration-refactor-client-remove-dataproxy-wasm.1 - 2024-02-12
  • 5.10.0-integration-fix-nodenext.2 - 2024-01-30
  • 5.10.0-integration-fix-nodenext.1 - 2024-01-30
  • 5.10.0-integration-fix-client-wasm-runtime-es2022.1 - 2024-02-06
  • 5.10.0-integration-fix-client-exports-map.15 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.14 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.13 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.12 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.11 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.10 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.9 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.8 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.7 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.6 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.5 - 2024-01-31
  • 5.10.0-integration-fix-client-exports-map.4 - 2024-01-30
  • 5.10.0-integration-fix-client-exports-map.3 - 2024-01-30
  • 5.10.0-integration-fix-client-exports-map.2 - 2024-01-30
  • 5.10.0-integration-fix-client-exports-map.1 - 2024-01-30
  • 5.10.0-integration-feat-wasm-engine-split.16 - 2024-02-08
  • 5.10.0-integration-feat-wasm-engine-split.15 - 2024-02-07
  • 5.10.0-integration-feat-wasm-engine-split.14 - 2024-02-07
  • 5.10.0-integration-feat-wasm-engine-split.13 - 2024-02-07
  • 5.10.0-integration-feat-wasm-engine-split.12 - 2024-02-07
  • 5.10.0-integration-feat-wasm-engine-split.11 - 2024-02-07
  • 5.10.0-integration-feat-wasm-engine-split.10 - 2024-02-07
  • 5.10.0-integration-feat-wasm-engine-split.9 - 2024-02-07
  • 5.10.0-integration-feat-wasm-engine-split.8 - 2024-02-07
  • 5.10.0-integration-feat-wasm-engine-split.7 - 2024-02-07
  • 5.10.0-integration-feat-wasm-engine-split.6 - 2024-02-06
  • 5.10.0-integration-feat-wasm-engine-split.5 - 2024-02-06
  • 5.10.0-integration-feat-wasm-engine-split.4 - 2024-02-06
  • 5.10.0-integration-feat-wasm-engine-split.3 - 2024-02-06
  • 5.10.0-integration-feat-wasm-engine-split.2 - 2024-02-06
  • 5.10.0-integration-feat-wasm-engine-split.1 - 2024-02-05
  • 5.10.0-integration-engines-5-7-0-23-integration-geometry-e0f834dc25d3a4b4c821df9810dfd890335c0b86.1 - 2024-02-01
  • 5.10.0-integration-engines-5-10-0-33-joins-distinct-22d9d534a1dfc6606e6ca560bd10c2ad045eea7d.1 - 2024-02-16
  • 5.10.0-integration-engines-5-10-0-31-joins-distinct-1a693f2b982374446ba145038ac6bb6028481687.2 - 2024-02-16
  • 5.10.0-integration-engines-5-10-0-31-joins-distinct-1a693f2b982374446ba145038ac6bb6028481687.1 - 2024-02-16
  • 5.10.0-integration-engines-5-10-0-2-integration-minimal-qe-wasm-1b4ed50da42d97c4ac234536343ff31faa0b6b70.2 - 2024-01-31
  • 5.10.0-integration-engines-5-10-0-2-integration-minimal-qe-wasm-1b4ed50da42d97c4ac234536343ff31faa0b6b70.1 - 2024-01-31
  • 5.10.0-integration-engines-5-10-0-13-feat-qe-specific-psl-performance-b9f77ddd4b02a49b324c20b050de9087e29da4ed.3 - 2024-02-20
  • 5.10.0-integration-engines-5-10-0-13-feat-qe-specific-psl-performance-b9f77ddd4b02a49b324c20b050de9087e29da4ed.2 - 2024-02-13
  • 5.10.0-integration-engines-5-10-0-13-feat-qe-specific-psl-performance-b9f77ddd4b02a49b324c20b050de9087e29da4ed.1 - 2024-02-09
  • 5.10.0-integration-engines-5-10-0-1-integration-minimal-qe-wasm-no-schema-df8fed62839069ce077de68f26b347159d4bb4ad.2 - 2024-01-31
  • 5.10.0-integration-engines-5-10-0-1-integration-minimal-qe-wasm-no-schema-df8fed62839069ce077de68f26b347159d4bb4ad.1 - 2024-01-31
  • 5.10.0-integration-d1-map-row.15 - 2024-02-16
  • 5.10.0-integration-d1-map-row.14 - 2024-02-16
  • 5.10.0-integration-d1-map-row.13 - 2024-02-16
  • 5.10.0-integration-d1-map-row.12 - 2024-02-16
  • 5.10.0-integration-d1-map-row.11 - 2024-02-16
  • 5.10.0-integration-d1-map-row.10 - 2024-02-15
  • 5.10.0-integration-d1-map-row.9 - 2024-02-15
  • 5.10.0-integration-d1-map-row.8 - 2024-02-15
  • 5.10.0-integration-d1-map-row.7 - 2024-02-15
  • 5.10.0-integration-d1-map-row.6 - 2024-02-15
  • 5.10.0-integration-d1-map-row.5 - 2024-02-15
  • 5.10.0-integration-d1-map-row.4 - 2024-02-14
  • 5.10.0-integration-d1-map-row.3 - 2024-02-12
  • 5.10.0-integration-d1-map-row.2 - 2024-02-09
  • 5.10.0-integration-d1-map-row.1 - 2024-02-08
  • 5.10.0-dev.113 - 2024-02-20
  • 5.10.0-dev.112 - 2024-02-19
  • 5.10.0-dev.111 - 2024-02-19
  • 5.10.0-dev.110 - 2024-02-17
  • 5.10.0-dev.109 - 2024-02-16
  • 5.10.0-dev.108 - 2024-02-16
  • 5.10.0-dev.107 - 2024-02-16
  • 5.10.0-dev.106 - 2024-02-16
  • 5.10.0-dev.105 - 2024-02-16
  • 5.10.0-dev.104 - 2024-02-16
  • 5.10.0-dev.103 - 2024-02-16
  • 5.10.0-dev.102 - 2024-02-16
  • 5.10.0-dev.101 - 2024-02-15
  • 5.10.0-dev.100 - 2024-02-15
  • 5.10.0-dev.99 - 2024-02-15
  • 5.10.0-dev.98 - 2024-02-15
  • 5.10.0-dev.97 - 2024-02-14
  • 5.10.0-dev.96 - 2024-02-14
  • 5.10.0-dev.95 - 2024-02-14
  • 5.10.0-dev.94 - 2024-02-14
  • 5.10.0-dev.93 - 2024-02-14
  • 5.10.0-dev.92 - 2024-02-14
  • 5.10.0-dev.91 - 2024-02-14
  • 5.10.0-dev.90 - 2024-02-14
  • 5.10.0-dev.89 - 2024-02-14
  • 5.10.0-dev.88 - 2024-02-13
  • 5.10.0-dev.87 - 2024-02-13
  • 5.10.0-dev.86 - 2024-02-13
  • 5.10.0-dev.85 - 2024-02-13
  • 5.10.0-dev.84 - 2024-02-13
  • 5.10.0-dev.83 - 2024-02-13
  • 5.10.0-dev.82 - 2024-02-13
  • 5.10.0-dev.81 - 2024-02-13
  • 5.10.0-dev.80 - 2024-02-13
  • 5.10.0-dev.79 - 2024-02-13
  • 5.10.0-dev.78 - 2024-02-13
  • 5.10.0-dev.77 - 2024-02-13
  • 5.10.0-dev.76 - 2024-02-13
  • 5.10.0-dev.75 - 2024-02-13
  • 5.10.0-dev.74 - 2024-02-12
  • 5.10.0-dev.73 - 2024-02-12
  • 5.10.0-dev.72 - 2024-02-12
  • 5.10.0-dev.71 - 2024-02-12
  • 5.10.0-dev.70 - 2024-02-12
  • 5.10.0-dev.69 - 2024-02-12
  • 5.10.0-dev.68 - 2024-02-12
  • 5.10.0-dev.67 - 2024-02-12
  • 5.10.0-dev.66 - 2024-02-12
  • 5.10.0-dev.65 - 2024-02-12
  • 5.10.0-dev.64 - 2024-02-12
  • 5.10.0-dev.63 - 2024-02-12
  • 5.10.0-dev.62 - 2024-02-12
  • 5.10.0-dev.61 - 2024-02-12
  • 5.10.0-dev.60 - 2024-02-10
  • 5.10.0-dev.59 - 2024-02-09
  • 5.10.0-dev.58 - 2024-02-09
  • 5.10.0-dev.57 - 2024-02-09
  • 5.10.0-dev.56 - 2024-02-09
  • 5.10.0-dev.55 - 2024-02-09
  • 5.10.0-dev.54 - 2024-02-09
  • 5.10.0-dev.53 - 2024-02-09
  • 5.10.0-dev.52 - 2024-02-09
  • 5.10.0-dev.51 - 2024-02-08
  • 5.10.0-dev.50 - 2024-02-08
  • 5.10.0-dev.49 - 2024-02-08
  • 5.10.0-dev.48 - 2024-02-08
  • 5.10.0-dev.47 - 2024-02-08
  • 5.10.0-dev.46 - 2024-02-08
  • 5.10.0-dev.45 - 2024-02-08
  • 5.10.0-dev.44 - 2024-02-08
  • 5.10.0-dev.43 - 2024-02-08
  • 5.10.0-dev.42 - 2024-02-08
  • 5.10.0-dev.41 - 2024-02-08
  • 5.10.0-dev.40 - 2024-02-08
  • 5.10.0-dev.39 - 2024-02-08
  • 5.10.0-dev.38 - 2024-02-08
  • 5.10.0-dev.37 - 2024-02-08
  • 5.10.0-dev.36 - 2024-02-08
  • 5.10.0-dev.35 - 2024-02-08
  • 5.10.0-dev.34 - 2024-02-08
  • 5.10.0-dev.33 - 2024-02-08
  • 5.10.0-dev.32 - 2024-02-08
  • 5.10.0-dev.31 - 2024-02-08
  • 5.10.0-dev.30 - 2024-02-08
  • 5.10.0-dev.29 - 2024-02-08
  • 5.10.0-dev.28 - 2024-02-08
  • 5.10.0-dev.27 - 2024-02-08
  • 5.10.0-dev.26 - 2024-02-07
  • 5.10.0-dev.25 - 2024-02-07
  • 5.10.0-dev.24 - 2024-02-07
  • 5.10.0-dev.23 - 2024-02-07
  • 5.10.0-dev.22 - 2024-02-07
  • 5.10.0-dev.21 - 2024-02-07
  • 5.10.0-dev.20 - 2024-02-07
  • 5.10.0-dev.19 - 2024-02-07
  • 5.10.0-dev.18 - 2024-02-07
  • 5.10.0-dev.17 - 2024-02-06
  • 5.10.0-dev.16 - 2024-02-06
  • 5.10.0-dev.15 - 2024-02-06
  • 5.10.0-dev.14 - 2024-02-06
  • 5.10.0-dev.13 - 2024-02-06
  • 5.10.0-dev.12 - 2024-02-05
  • 5.10.0-dev.11 - 2024-02-05
  • 5.10.0-dev.10 - 2024-02-01
  • 5.10.0-dev.9 - 2024-02-01
  • 5.10.0-dev.8 - 2024-02-01
  • 5.10.0-dev.7 - 2024-02-01
  • 5.10.0-dev.6 - 2024-02-01
  • 5.10.0-dev.5 - 2024-02-01
  • 5.10.0-dev.4 - 2024-02-01
  • 5.10.0-dev.3 - 2024-01-31
  • 5.10.0-dev.2 - 2024-01-31
  • 5.10.0-dev.1 - 2024-01-30
  • 5.9.1 - 2024-02-01
    Read more
  • 5.9.1-dev.4 - 2024-02-01
  • 5.9.1-dev.2 - 2024-01-31
  • 5.9.1-dev.1 - 2024-01-31
  • 5.9.0 - 2024-01-30
    Read more
  • 5.9.0-integration-react-native.5 - 2024-01-22
  • 5.9.0-integration-react-native.4 - 2024-01-16
  • 5.9.0-integration-react-native.3 - 2024-01-10
  • 5.9.0-integration-react-native.2 - 2024-01-10
  • 5.9.0-integration-react-native.1 - 2024-01-10
  • 5.9.0-integration-impl-d1.7 - 2024-01-22
  • 5.9.0-integration-impl-d1.6 - 2024-01-22
  • 5.9.0-integration-impl-d1.5 - 2024-01-22
  • 5.9.0-integration-impl-d1.4 - 2024-01-18
  • 5.9.0-integration-impl-d1.3 - 2024-01-17
  • 5.9.0-integration-impl-d1.2 - 2024-01-17
  • 5.9.0-integration-impl-d1.1 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.30 - 2024-01-22
  • 5.9.0-integration-feat-client-exports-map.29 - 2024-01-22
  • 5.9.0-integration-feat-client-exports-map.28 - 2024-01-22
  • 5.9.0-integration-feat-client-exports-map.27 - 2024-01-22
  • 5.9.0-integration-feat-client-exports-map.26 - 2024-01-22
  • 5.9.0-integration-feat-client-exports-map.25 - 2024-01-22
  • 5.9.0-integration-feat-client-exports-map.24 - 2024-01-22
  • 5.9.0-integration-feat-client-exports-map.23 - 2024-01-19
  • 5.9.0-integration-feat-client-exports-map.22 - 2024-01-19
  • 5.9.0-integration-feat-client-exports-map.21 - 2024-01-19
  • 5.9.0-integration-feat-client-exports-map.20 - 2024-01-18
  • 5.9.0-integration-feat-client-exports-map.19 - 2024-01-18
  • 5.9.0-integration-feat-client-exports-map.18 - 2024-01-18
  • 5.9.0-integration-feat-client-exports-map.17 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.16 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.15 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.14 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.13 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.12 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.11 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.10 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.9 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.8 - 2024-01-17
  • 5.9.0-integration-feat-client-exports-map.7 - 2024-01-16
  • 5.9.0-integration-feat-client-exports-map.6 - 2024-01-16
  • 5.9.0-integration-feat-client-exports-map.5 - 2024-01-16
  • 5.9.0-integration-feat-client-exports-map.4 - 2024-01-16
  • 5.9.0-integration-feat-client-exports-map.3 - 2024-01-16
  • 5.9.0-integration-feat-client-exports-map.2 - 2024-01-15
  • 5.9.0-integration-feat-client-exports-map.1 - 2024-01-15
  • 5.9.0-integration-engines-5-9-0-30-fix-nested-json-dollar-type-2-384423d3343745433a53da003b53596d916e52f6.1 - 2024-01-29
  • 5.9.0-integration-engines-5-9-0-3-fix-5-8-0-timeout-9035a1b3236277185290a05f5f4ca9afd179d699.1 - 2024-01-11
  • 5.9.0-integration-engines-5-9-0-2-integration-sql-nested-transactions-3-cc1af556abdaa3936033999a1bbd4f32e5444f70.2 - 2024-01-10
  • 5.9.0-integration-engines-5-9-0-2-integration-sql-nested-transactions-3-cc1af556abdaa3936033999a1bbd4f32e5444f70.1 - 2024-01-10
  • 5.9.0-integration-engines-5-9-0-19-chore-update-napi-rs-to-latest-1ec47ad2e3265d5add9ceb21bb8a10b796d01c57.1 - 2024-01-22
  • 5.9.0-integration-engines-5-9-0-16-refactor-relation-count-2-c1efc44cae036ce17ffe3b1c8c739ae2adf758c8.1 - 2024-01-20
  • 5.9.0-integration-engines-5-9-0-1-integration-sql-nested-transactions-3-29c424a601638eb3f7c6e163ab70881c72af54b9.1 - 2024-01-10
  • 5.9.0-integration-d1-transactions.1 - 2024-01-23
  • 5.9.0-integration-d1-transaction-warn.2 - 2024-01-30
  • 5.9.0-integration-d1-transaction-warn.1 - 2024-01-29
  • 5.9.0-integration-d1-map-row.6 - 2024-01-25
  • 5.9.0-integration-d1-map-row.5 - 2024-01-24
  • 5.9.0-integration-d1-map-row.4 - 2024-01-24
  • 5.9.0-integration-d1-map-row.3 - 2024-01-22
  • 5.9.0-integration-d1-map-row.2 - 2024-01-22
  • 5.9.0-integration-d1-map-row.1 - 2024-01-22
  • 5.9.0-integration-cloudflare-d1.2 - 2024-01-16
  • 5.9.0-integration-cloudflare-d1.1 - 2024-01-16
  • 5.9.0-dev.76 - 2024-01-30
  • 5.9.0-dev.74 - 2024-01-30
  • 5.9.0-dev.73 - 2024-01-30
  • 5.9.0-dev.72 - 2024-01-30
  • 5.9.0-dev.71 - 2024-01-30
  • 5.9.0-dev.70 - 2024-01-30
  • 5.9.0-dev.69 - 2024-01-30
  • 5.9.0-dev.68 - 2024-01-29
  • 5.9.0-dev.67 - 2024-01-29
  • 5.9.0-dev.66 - 2024-01-29
  • 5.9.0-dev.65 - 2024-01-29
  • 5.9.0-dev.64 - 2024-01-29
  • 5.9.0-dev.63 - 2024-01-29
  • 5.9.0-dev.62 - 2024-01-29
  • 5.9.0-dev.61 - 2024-01-29
  • 5.9.0-dev.60 - 2024-01-26
  • 5.9.0-dev.59 - 2024-01-26
  • 5.9.0-dev.58 - 2024-01-26
  • 5.9.0-dev.57 - 2024-01-26
  • 5.9.0-dev.56 - 2024-01-26
  • 5.9.0-dev.55 - 2024-01-26
  • 5.9.0-dev.54 - 2024-01-26
  • 5.9.0-dev.53 - 2024-01-26
  • 5.9.0-dev.52 - 2024-01-26
  • 5.9.0-dev.51 - 2024-01-26
  • 5.9.0-dev.50 - 2024-01-25
  • 5.9.0-dev.49 - 2024-01-25
  • 5.9.0-dev.48 - 2024-01-25
  • 5.9.0-dev.47 - 2024-01-25
  • 5.9.0-dev.46 - 2024-01-25
  • 5.9.0-dev.45 - 2024-01-25
  • 5.9.0-dev.44 - 2024-01-24
  • 5.9.0-dev.43 - 2024-01-24
  • 5.9.0-dev.42 - 2024-01-24
  • 5.9.0-dev.41 - 2024-01-24
  • 5.9.0-dev.40 - 2024-01-24
  • 5.9.0-dev.39 - 2024-01-24
  • 5.9.0-dev.38 - 2024-01-23
  • 5.9.0-dev.37 - 2024-01-23
  • 5.9.0-dev.36 - 2024-01-23
  • 5.9.0-dev.35 - 2024-01-23
  • 5.9.0-dev.34 - 2024-01-23
  • 5.9.0-dev.33 - 2024-01-23
  • 5.9.0-dev.32 - 2024-01-22
  • 5.9.0-dev.31 - 2024-01-22
  • 5.9.0-dev.30 - 2024-01-22
  • 5.9.0-dev.29 - 2024-01-22
  • 5.9.0-dev.28 - 2024-01-22
  • 5.9.0-dev.27 - 2024-01-22
  • 5.9.0-dev.26 - 2024-01-22
  • 5.9.0-dev.25 - 2024-01-19
  • 5.9.0-dev.24 - 2024-01-18
  • 5.9.0-dev.23 - 2024-01-18
  • 5.9.0-dev.22 - 2024-01-18
  • 5.9.0-dev.21 - 2024-01-18
  • 5.9.0-dev.19 - 2024-01-18
  • 5.9.0-dev.18 - 2024-01-17
  • 5.9.0-dev.17 - 2024-01-17
  • 5.9.0-dev.16 - 2024-01-17
  • 5.9.0-dev.15 - 2024-01-17
  • 5.9.0-dev.14 - 2024-01-17
  • 5.9.0-dev.13 - 2024-01-17
  • 5.9.0-dev.12 - 2024-01-16
  • 5.9.0-dev.11 - 2024-01-16
  • 5.9.0-dev.10 - 2024-01-15
  • 5.9.0-dev.9 - 2024-01-15
  • 5.9.0-dev.8 - 2024-01-15
  • 5.9.0-dev.7 - 2024-01-12
  • 5.9.0-dev.6 - 2024-01-12
  • 5.9.0-dev.5 - 2024-01-12
  • 5.9.0-dev.4 - 2024-01-12
  • 5.9.0-dev.3 - 2024-01-11
  • 5.9.0-dev.2 - 2024-01-10
  • 5.9.0-dev.1 - 2024-01-10
  • 5.8.1 - 2024-01-15

    Today, we are issuing the 5.8.1 patch release.

    Fix in Prisma Client

  • 5.8.1-dev.1 - 2024-01-15
  • 5.8.0 - 2024-01-09
    Read more
  • 5.8.0-integration-refactor-consistently-use-binarytarget-term.2 - 2023-12-13
  • 5.8.0-integration-refactor-consistently-use-binarytarget-term.1 - 2023-12-13
  • 5.8.0-integration-freebsd14.1 - 2023-12-13
  • 5.8.0-integration-fix-client-performance-global-polyfill.1 - 2023-12-07
  • 5.8.0-integration-feat-prisma-pg-worker.1 - 2023-12-19
  • 5.8.0-integration-engines-5-8-0-8-integration-mongodb-2-8-0-f60e13569866f407fae88c54f36658b3fe1ab26a.2 - 2023-12-12
  • 5.8.0-integration-engines-5-8-0-8-integration-mongodb-2-8-0-f60e13569866f407fae88c54f36658b3fe1ab26a.1 - 2023-12-12
  • 5.8.0-integration-engines-5-8-0-5-integration-wasm-decrease-size-1-3mb-939e3788636bc4a04bb8b74ac6e605825d6836b7.2 - 2023-12-11
  • 5.8.0-integration-engines-5-8-0-5-integration-wasm-decrease-size-1-3mb-939e3788636bc4a04bb8b74ac6e605825d6836b7.1 - 2023-12-11
  • 5.8.0-integration-engines-5-8-0-36-feat-qe-implement-relationloadstrategy-api-d2f09986b7514e6bda7b9fa6b000aec0c4cd8180.1 - 2024-01-08
  • 5.8.0-integration-engines-5-7-0-25-dependabot-cargo-openssl-0-10-60-9a053826a18b859f8ab4403a00edeca5623f442b.1 - 2023-12-07
  • 5.8.0-integration-chore-client-wasm-auto-include-poc.3 - 2023-12-08
  • 5.8.0-integration-chore-client-wasm-auto-include-poc.2 - 2023-12-08
  • 5.8.0-integration-chore-client-wasm-auto-include-poc.1 - 2023-12-08
  • 5.8.0-dev.53 - 2024-01-09
  • 5.8.0-dev.52 - 2024-01-08
  • 5.8.0-dev.51 - 2024-01-05
  • 5.8.0-dev.50 - 2024-01-04
  • 5.8.0-dev.49 - 2024-01-03
  • 5.8.0-dev.48 - 2024-01-03
  • 5.8.0-dev.47 - 2024-01-03
  • 5.8.0-dev.46 - 2024-01-03
  • ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants