build(deps-dev): bump prisma from 5.3.1 to 5.7.0
Created by: dependabot[bot]
Bumps prisma from 5.3.1 to 5.7.0.
Release notes
Sourced from prisma's releases.
5.7.0
🌟 Help us spread the word about Prisma by starring the repo or posting on X (formerly Twitter) about the release.Highlights
✨ In this release, we improved the SQL queries Prisma Client generates for you with two new Preview features, the driver adapters, and support for the database drivers we currently support. 5.7.0 will be the last release of the year. Stay tuned for the next one in January!✨ Preview support for
JOIN
s for relation queries for PostgreSQL and CockroachDBWe’re excited to announce Preview support for
JOIN
s in Prisma Client when querying relations. Support forJOIN
s has been a long-standing feature request, and this release adds support for PostgreSQL and CockroachDB. The upcoming releases will expand support for other databases Prisma supports.To get started using
JOIN
s, enable the Preview feature in your Prisma schema:// schema.prisma generator client { provider = "prisma-client-js" previewFeatures = ["relationJoins"] }
Run
prisma generate
to regenerate Prisma Client and enable the Preview feature.Prisma Client will use a
JOIN
in your query to fetch relation data for a majority of the cases.Example queries
Prisma Client query
await prisma.user.findUnique({ where: { id: 1 }, include: { profile: true } })
SQL
SELECT "t1"."id", "t1"."name", </tr></table>
... (truncated)
Commits
-
dd2e8ff
chore(cli): refine platform help command copy (#22282) -
ae47208
feat: show auth commands as part of root help (#22267) -
e8f2cf7
fix(cli): replace platform cli links using underlines with links (#22264) -
1e198d3
feat(cli): add temporary docs link to platform cli help (#22254) -
dc24a2d
feat(cli): move platform login and logout under auth command (#22258) -
0681a1e
feat(cli): Include link to getting started guide foraccelerate enable
(#22... -
0f25e2f
fix(cli): Add optional placeholder parameter region foraccelerate enable
(... -
ece299f
fix(cli): rename platform command option --display-name to --name (#22257) -
ce984aa
feat(cli): Display full connection string for accelerate enable command (#22256) -
a7aea0a
fix(cli): Platform commands fixes (#22255) - 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)