Skip to content
This repository was archived by the owner on Mar 21, 2022. It is now read-only.

Bump prisma from 1.34.10 to 3.11.0#341

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/prisma-3.11.0
Open

Bump prisma from 1.34.10 to 3.11.0#341
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/prisma-3.11.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 19, 2022

Copy link
Copy Markdown
Contributor

Bumps prisma from 1.34.10 to 3.11.0.

Release notes

Sourced from prisma's releases.

3.11.0

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

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

Major improvements and new features

Experimental support for Embedded Document Filters

In the previous release, we added embedded document support for creates, updates, and deletes. In version 3.11.0, we’re adding the ability to filter embedded documents.

Given the following schema:

datasource db {
  provider = "mongodb"
  url      = env("DATABASE_URL")
}
generator client {
provider        = "prisma-client-js"
previewFeatures = ["mongoDb"]
}
model Product {
id     String  @​id @​default(auto()) @​map("_id") @​db.ObjectId
photos Photo[]
}
model Order {
id              String   @​id @​default(auto()) @​map("_id") @​db.ObjectId
shippingAddress Address
billingAddress  Address?
}
type Photo {
height Int
width  Int
url    String
}
type Address {
street String
city   String
zip    String
}

You can now filter within an embedded document:

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by prismabot, a new releaser for prisma since your current version.


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](https://github.com/prisma/prisma/tree/HEAD/packages/cli) from 1.34.10 to 3.11.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/3.11.0/packages/cli)

---
updated-dependencies:
- dependency-name: prisma
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Mar 19, 2022
@dependabot dependabot Bot requested a review from yogeshkotadiya March 19, 2022 23:07
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants