Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Bump @prisma/client from 5.12.1 to 5.13.0 #6614

Merged
merged 1 commit into from Apr 25, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 24, 2024

Bumps @prisma/client from 5.12.1 to 5.13.0.

Release notes

Sourced from @​prisma/client's releases.

5.13.0

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

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

Highlights

omit fields from Prisma Client queries (Preview)

We’re excited to announce Preview support for the omit option within the Prisma Client query options. The highly-requested omit feature now allows you to exclude fields that you don’t want to retrieve from the database on a per-query basis.

By default, when a query returns records, the result includes all scalar fields of the models defined in the Prisma schema. select can be used to return specific fields, while omit can now be used to exclude specific fields. omit lives at the same API level and works on all of the same Prisma Client model queries as select. Note, however, that omit and select are mutually exclusive. In other words, you can’t use both in the same query.

To get started using omit, enable the omitApi Preview feature in your Prisma schema:

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

Be sure to re-generate Prisma Client afterwards:

npx prisma generate

Here is an example of using omit:

// Includes all fields except password
await prisma.user.findMany({
  omit: {
   password: true
  },
})

Here is an example of using omit with include:

// Includes all user fields except user's password and title of user's posts
await prisma.user.findMany({
  omit: {
   password: true
  },
  include: {
    posts: {
</tr></table> 

... (truncated)

Commits
  • 781ddb2 chore(deps): update engines to 5.13.0-23.b9a39a7ee606c28e3455d0fd60e78c3ba82b...
  • cb7784e chore: unexclude sqlite createMany tests (#23689)
  • 0e3f95f feat: React Native support (#23637)
  • 183c14d chore(deps): update engines to 5.13.0-22.3364458a783b65fd18b9ccc7fe4acfa87fba...
  • 47e2430 feat(client): Add omit option to the queries (#23770)
  • 67d5034 chore(deps): update engines to 5.13.0-21.b339b9da56f3d53fccd4fb229effb0118721...
  • cb7aa39 chore(deps): update engines to 5.13.0-16.6d35870e9578a3e7406168f61f89f84e78c1...
  • e2d1906 chore(deps): update engines to 5.13.0-15.8b36be322cc78c7e156e98b8966fb34e5ea0...
  • 0e209dc chore(deps): update dependency wrangler to v3.49.0 (#23821)
  • 4954f35 chore(deps): update dependency @​types/node to v16.18.96 (#23801)
  • 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 <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)

Bumps [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) from 5.12.1 to 5.13.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.13.0/packages/client)

---
updated-dependencies:
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 24, 2024
Copy link

vercel bot commented Apr 24, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

2 Ignored Deployments
Name Status Preview Comments Updated (UTC)
freesewing-dev ⬜️ Ignored (Inspect) Visit Preview Apr 24, 2024 4:17am
freesewing-org ⬜️ Ignored (Inspect) Visit Preview Apr 24, 2024 4:17am

@joostdecock joostdecock merged commit 3509711 into develop Apr 25, 2024
10 of 11 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/prisma/client-5.13.0 branch April 25, 2024 17:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💻 backend dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant