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

chore(deps): bump @prisma/client from 3.4.2 to 4.9.0 #216

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 Jan 23, 2023

Bumps @prisma/client from 3.4.2 to 4.9.0.

Release notes

Sourced from @鈥媝risma/client's releases.

4.9.0

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

Highlights

Initial support for database views (Preview)

This release introduces a new keyword, view, behind the views Preview feature flag. You can manually add a view to your Prisma schema, which is ignored when running migrations. This is a small step forward but should already be helpful to many of you depending on workarounds and shell scripts to work with views and Migrate.

Here is an example usage of views:

generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["views"]
}
view UserInfo {
id    Int    @鈥媔d
// from the User model
email String
name  String
// from the Profile model
bio   String
}
model User {
id      Int      @鈥媔d @鈥媎efault(autoincrement())
email   String   @鈥媢nique
name    String?
profile Profile?
}
model Profile {
id     Int    @鈥媔d @鈥媎efault(autoincrement())
bio    String
user   User   @鈥媟elation(fields: [userId], references: [id])
userId Int    @鈥媢nique
}

To learn more, head to our documentation. Try it out and let us know your thoughts on this GitHub issue.

Multi-schema support for SQL Server (Preview)

We're thrilled to share that this release adds Preview support for multi-schema for SQL Server.

This release adds support for:

  • Introspecting databases that organize objects in multiple database schemas
  • Managing multi-schema database setups directly from Prisma schema

... (truncated)

Commits
  • f6e1ca6 feat: remove prisma-fmt binary (#16923)
  • 7bdb2b8 fix(client): missing relations for includes in client extensions (#17347)
  • 5f22f3d chore(deps): update engines to 4.9.0-42.ceb5c99003b99c9ee2c1d2e618e359c14aef2...
  • 7716c77 feat(client): extensions generic type api (#16936)
  • d47209d chore(deps): update engines to 4.9.0-41.df68a3303adc647325a8743cbca118079e22d...
  • 2354f13 chore(deps): update engines to 4.9.0-40.8216abc56c0f2a7e0bf05489a7555da4b7ed1...
  • 664942d refactor: Select and Include type generation (#17239)
  • d7c5ae8 chore(tests): e2e improvements (#17310)
  • 12ee527 chore(deps): update engines to 4.9.0-39.df61b5f5ab3f27359e273f1cba4e5a9c7cb84...
  • 9e8c294 chore(deps): update engines to 4.9.0-38.c82b3da04f255da846156ad4fc7da2cd07300...
  • 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)

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

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 23, 2023
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