mavvystudio / prisma-generator-graphql-typedef

Generates graphql schema from prisma schema
11 stars 1 forks source link

build(deps): bump @prisma/internals from 5.3.1 to 5.7.1 in /packages/generator #138

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 8 months ago

Bumps @prisma/internals from 5.3.1 to 5.7.1.

Release notes

Sourced from @​prisma/internals's releases.

5.7.1

Today, we are issuing the 5.7.1 patch release.

This patch fixes multiple small problems in our relationJoins preview feature. If you ran into problems when testing relationJoins before, please give it another go with 5.7.1 and share your feedback or create a bug report if you encounter any issues.

Fixes in Prisma Client

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 JOINs for relation queries for PostgreSQL and CockroachDB

We’re excited to announce Preview support for JOINs in Prisma Client when querying relations. Support for JOINs 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 JOINs, 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
</tr></table> 

... (truncated)

Commits
  • 7be2d03 bump engine
  • 7eb9800 feat(client): integrate relation joins (#22243)
  • 4d1347d chore(deps): update engines to 5.7.0-40.1964a5cbd8c8ab62f2ef25627fbcd8489aa2e...
  • bb06b83 fix(client): Netlify using Node.js 20 should use rhel-openssl-3.0.x (#22241)
  • 60d4094 chore(deps): update engines to 5.7.0-39.0d724e37b36bf276aa095d4571213cd035eaf...
  • 4cbf9db chore(deps): update engines to 5.7.0-34.a0c366aa4413a5e23838419c41c64a64faf6d...
  • e664c1a fix(cli:debug): load .env file if it exists (#22194)
  • 862ae2d chore(deps): update engines to 5.7.0-27.f0e6ac4eb5258a937f0d50a926d8330162b30...
  • 973afd3 chore(deps): update engines to 5.7.0-26.ff1752c3aea19d4b702fcbe2b8d347961b363...
  • 3d1b0c0 chore(deps): update dependency checkpoint-client to v1.1.33 (#22185)
  • Additional commits viewable in compare view


Dependabot compatibility score

You can trigger a rebase of this PR 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 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)

Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.