arugaz / whatsapp-bot

Whatsapp Bot Multi Device - Node Js - Internationalization
GNU General Public License v3.0
597 stars 785 forks source link

chore(deps): bump @prisma/client from 4.16.2 to 5.1.1 #467

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps @prisma/client from 4.16.2 to 5.1.1.

Release notes

Sourced from @​prisma/client's releases.

5.1.1

Today, we are issuing the 5.1.1 patch release.

Fixes in Prisma Client

5.1.0

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

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

Highlights

After two big releases where we released Client extensions for production usage (4.16.0) and made Prisma faster by default (5.0.0), we have focused on some smaller issues to make the experience with these new features even better.

Community contributions

Our community has been on the roll! We appreciate everyone who helps us by opening a GitHub issue or proposing a fix via Pull Requests. In this release, we're excited to highlight multiple community contributions:

Better performance: Fewer SQL queries on PostgreSQL & CockroachDB

In our continued and ongoing work to make Prisma faster, we identified some Prisma Client queries that led to multiple SQL statements being executed — although in specific databases, that was not necessary.

Hence we optimized our internal SQL generation for PostgreSQL and CockroachDB to generate more efficient SQL queries:

Simple create query

In a simple create query, RETURNING makes the second query and the transaction statements obsolete:

Prisma Client query

prisma.user.create({ 
  data: { name: "Original name" } 
})

Before v5.1.0

BEGIN
INSERT INTO "User" ("name") VALUES ($1) RETURNING "User"."id"
</tr></table> 

... (truncated)

Commits
  • 78de340 chore(deps): patch 5.1.x 5.1.1-1.6a3747c37ff169c90047725a05a6ef02e32ac97e (#2...
  • 8048715 fix(client): Make sure result extensions don't break .count (#20504)
  • a045943 fix(client): Fix $Enums namespace in browser build (#20481)
  • 0eb32dc feat(client): allow extension to reference their $parent (#20425)
  • 22011ad chore(deps): update engines to 5.1.0-28.a9b7003df90aa623086e4d6f4e43c72468e63...
  • 47b3ce6 fix(client): add extra schema search location (#20447)
  • 8e02861 chore(deps): update dependency @​swc/jest to v0.2.27 (#20389)
  • 551db6c fix(client): confusing get result types (#20435)
  • b7ed20d fix(client): enum types (#20446)
  • b15ac85 fix(client): Ensure result extensions are applied after all query extensions ...
  • 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 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)
github-actions[bot] commented 11 months ago

This PR is stale because it has been open 6 days with no activity. Remove the stale label or comment or this will be closed in 2 days

dependabot[bot] commented 11 months ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.