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

build(deps): bump @prisma/generator-helper from 5.8.1 to 5.16.1 #1490

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 Jun 27, 2024

Bumps @prisma/generator-helper from 5.8.1 to 5.16.1.

Release notes

Sourced from @鈥媝risma/generator-helper'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
  • 13172c2 feat(prismaSchemaFolder): Resolve paths in datasource blocks relative to the ...
  • 617042d chore(deps): update engines to 5.16.0-20.bd07760d57443d11e2a958fd18bf524bbac1...
  • a1121f1 chore(deps): update dependency @鈥媠wc/core to v1.6.3 (#24546)
  • 4ff82cc feat(client): added provider compatibility check for Driver Adapters (#24481)
  • 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)
  • a3d572e chore(deps): update devdependencies patch (non-major) (#24421)
  • 6705e78 feat(cli): Improve error messages on not found schema cases (#24417)
  • 79de5cf chore(deps): update dependency @鈥媠wc/core to v1.5.24 (#24364)
  • 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/generator-helper](https://github.com/prisma/prisma/tree/HEAD/packages/generator-helper) from 5.8.1 to 5.16.1.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.16.1/packages/generator-helper)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 27, 2024
@github-actions github-actions bot enabled auto-merge June 27, 2024 21:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants