prisma-json-schema-generator
prisma-json-schema-generator copied to clipboard
build(deps): bump @prisma/internals from 5.8.1 to 5.11.0
Bumps @prisma/internals from 5.8.1 to 5.11.0.
Release notes
Sourced from @prisma/internals
's releases.
5.11.0
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
operationsWith 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 nestedcreate
queries are optimized and theINSERT
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 nestedcreateMany
operation (except thatcreateMany
only works with one-to-many relations, whereascreate
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, onlycreate (3)
will be optimized.Fixes and improvements
... (truncated)
Commits
a211ad7
chore(deps): update engines to 5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b...009563e
chore(deps): update engines to 5.11.0-9.3d9a0d64e7107d8985df64fce153a82e7821a...63c4535
chore(deps): update engines to 5.11.0-7.ea1d441684437cb0347ae41a974507fb424a3...4aee142
chore(deps): update engines to 5.11.0-6.6795ad985c527cdaf71c052574c604901054b...0fc0bf1
chore(deps): update opentelemetry packages (#23378)4cd66c6
chore(deps): update definitelytyped (#23304)5246dd9
chore(deps): update devdependencies patch (non-major) (#23216)5e2838a
chore(deps): update dependency esbuild to v0.20.1 (#23214)b1f86d8
fix(client): generation with invalid versions inpackage.json
(#23337)f8e2666
chore(deps): update engines to 5.11.0-5.4308b705cc0694626ff407996f3145ddef0ad...- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)