9renpoto / backend

🧙‍♂️🔥💰 backend
MIT License
0 stars 0 forks source link

chore(deps): bump @prisma/client from 2.11.0 to 2.21.2 #770

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps @prisma/client from 2.11.0 to 2.21.2.

Release notes

Sourced from @​prisma/client's releases.

2.21.2

Today, we are issuing the 2.21.2 patch release.

Fix

Prisma Client

  • [MaxListenersExceededWarning: Possible EventEmitter memory leak detected. #6584](prisma/prisma#6584)
  • [Netlify Functions deploy fails with Prisma because of size problems, Prisma deploys with 2 QE binaries #6503](prisma/prisma#6503) If the issue persists when deploying to Netlify, we recommend manually clearing Netlify's build cache from the ‘Deploys’ menu. Under ‘Trigger deploy’, you’ll see ‘Clear cache and deploy site’.

2.21.1

Today, we are issuing the 2.21.1 patch release.

Fix

Prisma Studio

2.21.0

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

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

Major improvements & new features

Order by an aggregate in groupBy is now in Preview

Whew, that's a tongue-twister for a neat feature.

Let's say you want to group your users by the city they live in and then order the results by the cities with the most users. In 2.21.0, now you can!

const userRatingsCount = await prisma.user.groupBy({
  by: ['city'],
  count: {
    city: true,
  },
  orderBy: {
    _count: {
      city: 'desc',
    },
  },
})
</tr></table> 

... (truncated)

Commits
  • 56006eb fix(engines): set hooks in parent only (#6592)
  • 94b12e7 fix(netlify): avoid shipping two binaries (#6527)
  • 57fda54 fix(cli): Fix studio `Query engine binary for current platform ... could not ...
  • 8ebff26 fix(deps): update engines to v2.21.0-36.e421996c87d5f3c8f7eeadd502d4ad402c894...
  • aea5506 fix(deps): update engines to v2.21.0-35.f5725d7c413c4a3047385baa85d5c4af719b7...
  • ee68c36 chore: fix commented flag to lowercase [skip ci]
  • 84f5a75 chore(deps): update studio to v0.369.0 (#6217)
  • 3eedede fix: mongo flag (#6541)
  • 4da9785 fix: correct mongodb experimental flag
  • 24df0e7 fix(deps): update engines to v2.21.0-33.99fe93ebec0b021acadc3a0c45fa3b51860d1...
  • 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)
dependabot[bot] commented 3 years ago

Superseded by #790.