clansty / Q2TG

QQ 与 Telegram 群相互转发的 bot
https://t.me/Q2TGbot
GNU Affero General Public License v3.0
728 stars 74 forks source link

chore(deps): bump @prisma/client from 5.7.1 to 5.8.0 #165

Closed dependabot[bot] closed 8 months ago

dependabot[bot] commented 8 months ago

Bumps @prisma/client from 5.7.1 to 5.8.0.

Release notes

Sourced from @​prisma/client's releases.

5.8.0

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

Highlights

Happy New Year from your friends at Prisma! 🎊

In the last 4 weeks, we resolved some bugs on the ORM and made some progress on some exciting features that we’re not yet ready to announce. Stay tuned for the upcoming releases, in which we’ll be announcing new features. 😉

relationJoins improvements: Relation loading strategy per query (Preview)

In version 5.7.0, we released relationJoins into Preview. The relationJoins feature enables support for JOINs for relation queries.

This release adds support for the ability to specify the strategy used to fetch relational data per query when the Preview feature is enabled. This will enable you to choose the most efficient strategy for fetching relation data depending on your use case.

You can now load relation data using either of the following strategies:

  • join — uses JOINs to fetch relation data
  • query — uses sub-queries to fetch relation data

When the relationJoins Preview feature is enabled, by default, the relation fetching strategy used is join. You can override the default behavior by using the relationLoadStrategy query option.

To get started, enable the Preview feature:

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

… and specify the relation loading strategy for your query as follows:

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

Try it out and share your feedback and create a bug report if you encounter any issues.

Survey: Edge functions support

We’re working on bringing Edge function support to Prisma ORM and we would appreciate your input by submitting a response to our survey. By filling out the survey, you will be considered for our Early Access cohort as soon as we have something for you to try out.

Fixes and improvements

... (truncated)

Commits
  • 688a50a feat(client): integrate relationLoadStrategy support (#22483)
  • 468fd2a chore(deps): update engines to 5.8.0-35.98ee70609b272493d461f616accbf44531c21...
  • feec06f chore(deps): update engines to 5.8.0-33.babfd598f1377beef44addb85eb86ac93bdf4...
  • 811f1aa chore(deps): update opentelemetry packages (#22473)
  • e62475d chore(deps): update dependency esbuild to v0.19.10 (#22471)
  • 6604348 chore(deps): update engines to 5.8.0-31.01382e5cb656d1344b51fced95d399caaac3d...
  • 1eacb61 chore(deps): update engines to 5.8.0-30.6363e0950d0b1c496c0219c4289695f6ddc5c...
  • e0935eb chore(deps): update engines to 5.8.0-26.388f03a4b4ce34a3e2039545f4b40bb33c43e...
  • c52c211 chore(deps): update engines to 5.8.0-25.f8ac68b940bcb96a1531920e361ab5fc74000...
  • fec1e5a chore(deps): update engines to 5.8.0-23.b54fc426e1e8e2a5215a0a6b9257c224d137a...
  • Additional commits viewable in compare view


Dependabot compatibility score

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 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)