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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump prisma from 5.12.0 to 5.16.1 #63

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Bumps prisma from 5.12.0 to 5.16.1.

Release notes

Sourced from prisma's releases.

5.16.1

Today, we are issuing the 5.16.1 patch release to fix an issue in Prisma client.

Fix in Prisma Client

5.16.0

馃専 Help us spread the word about Prisma by starring the repo or tweeting about the release. 馃専

Highlights

Omit model fields globally

With Prisma ORM 5.16.0 we鈥檙e more than happy to announce that we鈥檙e expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you鈥檙e able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You鈥檙e also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

</tr></table> 

... (truncated)

Commits
  • 61c901b feat(cli): use new login endpoint for optimize (#24570)
  • 13172c2 feat(prismaSchemaFolder): Resolve paths in datasource blocks relative to the ...
  • 6a6646c fix(cli): Always resolve output relatively to a file it defined in (#24598)
  • a1121f1 chore(deps): update dependency @鈥媠wc/core to v1.6.3 (#24546)
  • 336555d chore(deps): update dependency ts-pattern to v5.2.0 (#24518)
  • 59a7419 chore(deps): update studio to v0.502.0 (#24534)
  • 9b7c5cc chore(deps): update dependency esbuild to v0.21.5 (#24502)
  • f0a3fa1 chore(deps): update devdependencies patch (non-major) (#24504)
  • a59dc6f feat(cli): generate, add --no-hint argument (#24274)
  • 317dd04 fix(cli): Generate should not fail on postinstall, even with no schema (#24...
  • 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](https://github.com/prisma/prisma/tree/HEAD/packages/cli) from 5.12.0 to 5.16.1.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.16.1/packages/cli)

---
updated-dependencies:
- dependency-name: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from vignesh-gupta July 1, 2024 06:01
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 1, 2024

The following labels could not be found: dependencies.

Copy link

vercel bot commented Jul 1, 2024

The latest updates on your projects. Learn more about Vercel for Git 鈫楋笌

1 Ignored Deployment
Name Status Preview Comments Updated (UTC)
explorix 猬滐笍 Ignored (Inspect) Visit Preview Jul 1, 2024 6:01am

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants