Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.

build(deps): bump @prisma/sdk from 3.7.0 to 3.11.0 in /packages/generator#35

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/packages/generator/prisma/sdk-3.11.0
Closed

build(deps): bump @prisma/sdk from 3.7.0 to 3.11.0 in /packages/generator#35
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/packages/generator/prisma/sdk-3.11.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 15, 2022

Bumps @prisma/sdk from 3.7.0 to 3.11.0.

Release notes

Sourced from @​prisma/sdk'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
  • 9f6f07f feat(client): composite filtering (#12271)
  • 6561b8a chore(deps): update engines to 3.11.0-46.c9f86866d2fb27b2066e5447ee7f6f65c46c...
  • 695537a test(client): increase timeout for 1 Windows/macOS test (#12317)
  • 88b6265 chore(deps): update engines to 3.11.0-44.de508c1bd4bac0d723b519cc484e96e8c42f...
  • a71a46c chore(deps): update engines to 3.11.0-43.46710cce5c925c7223e8684ea24f44fbeae3...
  • 2bf91d8 chore(deps): update engines to 3.11.0-42.e996df5d66a2314d1da15d31047f9777fc2f...
  • 13d68d7 chore(deps): update engines to 3.11.0-40.e996df5d66a2314d1da15d31047f9777fc2f...
  • 2c0d7c1 chore(deps): update engines to 3.11.0-39.f147594269e95b2db1f278fe5e55af88c3be...
  • eec0c94 chore(deps): update engines to 3.11.0-38.e0c74b3dfdc50dc1ce2d4ffb52a71f01ed8d...
  • b355c55 chore(deps): update engines to 3.11.0-37.907f5acbe6036378a1c96de75bfaf98ed687...
  • 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/sdk](https://github.com/prisma/prisma/tree/HEAD/packages/sdk) from 3.7.0 to 3.11.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/3.11.0/packages/sdk)

---
updated-dependencies:
- dependency-name: "@prisma/sdk"
  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 Mar 15, 2022
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 24, 2022

Superseded by #40.

@dependabot dependabot bot closed this Mar 24, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/packages/generator/prisma/sdk-3.11.0 branch March 24, 2022 20:39
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